diff --git a/cpp/clik/src/CMakeLists.txt b/cpp/clik/src/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..fa7314297ba77960e1136bd02c96016bdf284c3c
--- /dev/null
+++ b/cpp/clik/src/CMakeLists.txt
@@ -0,0 +1,361 @@
+# TODO idk what the actual minimum version is
+cmake_minimum_required(VERSION 3.20.0)
+project(clik)
+set(PROJECT_DESCRIPTION
+		"basic click(s) with ur_rtde and pinocchio"
+)
+set ( CMAKE_EXPORT_COMPILE_COMMANDS ON )
+
+# TODO put this in
+#set(PROJECT_URL https://github.com/${PROJECT_NAMESPACE}/${PROJECT_NAME})
+# std=c++17 so that i can use std::filesystem, but otherwise min is 11
+set(CMAKE_CXX_STANDARD 17)
+
+
+# Build a static binary.
+#set(CMAKE_EXE_LINKER_FLAGS "-static-libgcc -static-libstdc++")
+# Add further warning levels, they only help
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
+    -D_XOPEN_SOURCE=700 \
+    -D_FORTIFY_SOURCE=2 \
+    -O2 \
+    -fstack-protector \
+    -fomit-frame-pointer \
+    -pipe \
+	-std=c++17 \
+    -pedantic -pedantic-errors \
+    -Werror \
+    -Weffc++ \
+    -Wall -Wextra -Wshadow -Wdeprecated \
+    -Wdiv-by-zero -Wfloat-equal -Wfloat-conversion -Wsign-compare -Wpointer-arith \
+    -Wuninitialized -Wunreachable-code \
+    -Wunused -Wunused-function -Wunused-label -Wunused-parameter -Wunused-but-set-parameter -Wunused-but-set-variable \
+    -Wunused-value -Wunused-variable -Wunused-result \
+    -Wmissing-field-initializers -Wmissing-format-attribute -Wmissing-include-dirs -Wmissing-noreturn")
+
+# Add current build directory as include directory as it contains generated files.
+#include_directories(SYSTEM ${CMAKE_BINARY_DIR})
+include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
+add_executable(${PROJECT_NAME} src/clik.cpp)
+
+################
+# ur_rtde library
+find_package(ur_rtde REQUIRED)
+target_link_libraries(${PROJECT_NAME} PUBLIC ur_rtde::rtde)
+#target_link_libraries(clik PUBLIC ur_rtde::rtde)
+
+### pinocchio
+find_package(pinocchio REQUIRED)
+target_link_libraries(${PROJECT_NAME} PUBLIC pinocchio::pinocchio)
+#target_link_libraries(clik PUBLIC pinocchio::pinocchio)
+
+## pinocchio-gepetto-viewer
+find_package(pinocchio-gepetto-viewer REQUIRED)
+target_link_libraries(${PROJECT_NAME} PUBLIC pinocchio-gepetto-viewer)
+
+
+#add_library(${PROJECT_NAME}-core OBJECT  ${CMAKE_CURRENT_SOURCE_DIR}/src/clik.cpp)
+#set(LIBRARIES pinocchio::pinocchio ur_rtde::ur_rtde)
+#set(LIBRARIES pinocchio ur_rtde)
+
+# Create executable.
+#add_executable(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/src/${PROJECT_NAME}.cpp $<TARGET_OBJECTS:${PROJECT_NAME}-core>)
+#add_executable(
+#target_link_libraries(${PROJECT_NAME} ${LIBRARIES})
+#target_link_libraries(${PROJECT_NAME} pinocchio::pinocchio)
+
+
+# TODO this doesn't hurt right?
+# Install executable.
+#install(TARGETS ${PROJECT_NAME} DESTINATION bin COMPONENT ${PROJECT_NAME})
+
+################################################################################
+# TODO implement and then Enable unit testing.
+#enable_testing()
+#add_executable(${PROJECT_NAME}-runner ${CMAKE_CURRENT_SOURCE_DIR}/test/test-behavior.cpp $<TARGET_OBJECTS:${PROJECT_NAME}-core>)
+#target_link_libraries(${PROJECT_NAME}-runner ${LIBRARIES})
+#add_test(NAME ${PROJECT_NAME}-runner COMMAND ${PROJECT_NAME}-runner)
+
+
+# TODO probably a good idea to start using doxygen or something similar
+#option(INSTALL_DOCUMENTATION "Generate and install the documentation" OFF)
+#set(DOXYGEN_USE_MATHJAX YES)
+#set(DOXYGEN_USE_TEMPLATE_CSS YES)
+
+# Create different building options
+# TODO idk what this does actually
+#option(ENABLE_VECTORIZATION
+#       "Enable vectorization and further processor-related optimizations" OFF)
+# TODO see how to do this with pybind11 (just extend ur_rtde approach)
+#option(BUILD_PYTHON_INTERFACE "Build the python binding" ON)
+#option(BUILD_BENCHMARK "Build the benchmark" ON)
+#option(BUILD_EXAMPLES "Build the examples" ON)
+#option(BUILD_WITH_IPOPT "Build the IPOPT wrapper." ON)
+#option(GENERATE_PYTHON_STUBS
+#       "Generate the Python stubs associated to the Python library" OFF)
+
+#if(ENABLE_VECTORIZATION)
+#  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
+#endif()
+
+# Check if the conan file exist to find the dependencies
+#if (EXISTS ${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
+#include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
+#conan_basic_setup(NO_OUTPUT_DIRS KEEP_RPATHS SKIP_STD TARGETS)
+#set(Boost_USE_STATIC_LIBS ON)
+#set(Boost_ADDITIONAL_VERSIONS 1.75.0)
+#endif()
+#find_package(Boost REQUIRED COMPONENTS system thread program_options)
+#find_package(Threads)
+
+############### pybind copied from ur_rtde and i don't get it ######
+
+#if(${PYTHON_BINDINGS})
+## This is required to find python site-packages for installation of ur_rtde python bindings.
+#if(NOT PYBIND11_PYTHON_VERSION)
+#	set(PYBIND11_PYTHON_VERSION "" CACHE STRING "Python version to use for compiling modules")
+#endif()
+#set(Python_ADDITIONAL_VERSIONS 3.11 3.10 3.9 3.8 3.7 3.6 3.5 3.4)
+#find_package(PythonLibsNew ${PYBIND11_PYTHON_VERSION} REQUIRED)
+#
+#include(FetchContent)
+#
+#FetchContent_Declare(
+#	pybind11-src
+#	GIT_REPOSITORY https://github.com/pybind/pybind11.git
+#	GIT_TAG        v2.10.1
+#)
+#FetchContent_MakeAvailable(pybind11-src)
+#
+#endif()
+#
+#
+#if(${PYTHON_BINDINGS})
+#pybind11_add_module(rtde_control SHARED ${LIB_SOURCE_FILES} ${LIB_HEADER_FILES} ${LIB_URCL_HEADER_FILES} src/rtde_python_bindings.cpp)
+#target_include_directories(rtde_control
+#		PUBLIC ${Boost_INCLUDE_DIRS}
+#		$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
+#		$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
+#		$<INSTALL_INTERFACE:include>
+#		PRIVATE ${PYBIND11_INCLUDE_DIR}  # from project CMakeLists.txt
+#		PRIVATE ${pybind11_INCLUDE_DIR}  # from pybind11Config
+#		PRIVATE ${PYTHON_INCLUDE_DIRS})
+#target_link_libraries(rtde_control PRIVATE
+#		#${PYTHON_LIBRARIES}
+#		${Boost_SYSTEM_LIBRARY}
+#		${Boost_THREAD_LIBRARY}
+#		${CMAKE_THREAD_LIBS_INIT})
+#		target_compile_definitions(rtde_control PRIVATE rtde_EXPORTS)
+#
+#pybind11_add_module(rtde_receive SHARED ${LIB_SOURCE_FILES} ${LIB_HEADER_FILES} src/rtde_python_bindings.cpp)
+#target_include_directories(rtde_receive
+#	PUBLIC ${Boost_INCLUDE_DIRS}
+#	$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
+#	$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
+#	$<INSTALL_INTERFACE:include>
+#	PRIVATE ${PYBIND11_INCLUDE_DIR}  # from project CMakeLists.txt
+#	PRIVATE ${pybind11_INCLUDE_DIR}  # from pybind11Config
+#	PRIVATE ${PYTHON_INCLUDE_DIRS})
+#target_link_libraries(rtde_receive PRIVATE
+#		#${PYTHON_LIBRARIES}
+#		${Boost_SYSTEM_LIBRARY}
+#		${Boost_THREAD_LIBRARY})
+#		target_compile_definitions(rtde_receive PRIVATE rtde_EXPORTS)
+#
+#pybind11_add_module(rtde_io SHARED ${LIB_SOURCE_FILES} ${LIB_HEADER_FILES} src/rtde_python_bindings.cpp)
+#target_include_directories(rtde_io
+#		PUBLIC ${Boost_INCLUDE_DIRS}
+#		$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
+#		$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
+#		$<INSTALL_INTERFACE:include>
+#		PRIVATE ${PYBIND11_INCLUDE_DIR}  # from project CMakeLists.txt
+#		PRIVATE ${pybind11_INCLUDE_DIR}  # from pybind11Config
+#		PRIVATE ${PYTHON_INCLUDE_DIRS})
+#target_link_libraries(rtde_io PRIVATE
+#		#${PYTHON_LIBRARIES}
+#		${Boost_SYSTEM_LIBRARY}
+#		${Boost_THREAD_LIBRARY})
+#target_compile_definitions(rtde_io PRIVATE rtde_EXPORTS)
+#
+#pybind11_add_module(script_client SHARED ${LIB_SOURCE_FILES} ${LIB_HEADER_FILES} src/rtde_python_bindings.cpp)
+#target_include_directories(script_client
+#		PUBLIC ${Boost_INCLUDE_DIRS}
+#		$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
+#		$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
+#		$<INSTALL_INTERFACE:include>
+#		PRIVATE ${PYBIND11_INCLUDE_DIR}  # from project CMakeLists.txt
+#		PRIVATE ${pybind11_INCLUDE_DIR}  # from pybind11Config
+#		PRIVATE ${PYTHON_INCLUDE_DIRS})
+#	target_link_libraries(script_client PRIVATE
+#		#${PYTHON_LIBRARIES}
+#		${Boost_SYSTEM_LIBRARY}
+#		${Boost_THREAD_LIBRARY})
+#	target_compile_definitions(script_client PRIVATE rtde_EXPORTS)
+#
+#
+#pybind11_add_module(dashboard_client SHARED ${LIB_SOURCE_FILES} ${LIB_HEADER_FILES} src/rtde_python_bindings.cpp)
+#target_include_directories(dashboard_client
+#	PUBLIC ${Boost_INCLUDE_DIRS}
+#	$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
+#	$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
+#	$<INSTALL_INTERFACE:include>
+#	PRIVATE ${PYBIND11_INCLUDE_DIR}  # from project CMakeLists.txt
+#	PRIVATE ${pybind11_INCLUDE_DIR}  # from pybind11Config
+#	PRIVATE ${PYTHON_INCLUDE_DIRS})
+#target_link_libraries(dashboard_client PRIVATE
+#	#${PYTHON_LIBRARIES}
+#	${Boost_SYSTEM_LIBRARY}
+#	${Boost_THREAD_LIBRARY})
+#target_compile_definitions(dashboard_client PRIVATE rtde_EXPORTS)
+#
+#endif()
+
+###################################################### 
+
+
+#add_project_dependency(pinocchio 2.6.3 REQUIRED PKG_CONFIG_REQUIRES
+#                       "pinocchio >= 2.6.3")
+#if(BUILD_EXAMPLES
+#   OR BUILD_TESTING
+#   OR BUILD_BENCHMARK)
+#  add_project_dependency(example-robot-data 4.0.7 REQUIRED PKG_CONFIG_REQUIRES
+#                         "example-robot-data >= 4.0.7")
+#else()
+#  add_optional_dependency(example-robot-data)
+#endif()
+
+# i don't have experience with any of this,
+# but it's probably good
+#option(
+#  BUILD_WITH_CODEGEN_SUPPORT
+#  "Build the library with the Code Generation support (required CppADCodeGen)"
+#  OFF)
+#
+#option(BUILD_WITH_MULTITHREADS
+#       "Build the library with the Multithreading support (required OpenMP)"
+#       OFF)
+#if(BUILD_WITH_MULTITHREADS)
+#  # If BUILD_WITH_NTHREADS defined, use the value - otherwise detect
+#  if(NOT DEFINED BUILD_WITH_NTHREADS)
+#    include(ProcessorCount)
+#    ProcessorCount(NPROCESSOR)
+#    if(NOT NPROCESSOR EQUAL 0)
+#      math(EXPR NPROCESSOR ${NPROCESSOR}/2)
+#      set(BUILD_WITH_NTHREADS
+#          ${NPROCESSOR}
+#          CACHE STRING "Number of threads")
+#    else()
+#      set(BUILD_WITH_NTHREADS
+#          "4"
+#          CACHE STRING "Number of threads") # Default setting
+#    endif()
+#  endif()
+#  string(REGEX MATCH "^[0-9]+$" BUILD_WITH_NTHREADS ${BUILD_WITH_NTHREADS})
+#  if(NOT BUILD_WITH_NTHREADS MATCHES "^[0-9]+$")
+#    set(BUILD_WITH_NTHREADS 4) # Default setting 4.
+#    message(
+#      WARNING
+#        "The number of threads has to be an integer value, set to ${BUILD_WITH_NTHREADS}"
+#    )
+#  endif()
+#endif()
+#
+#if(BUILD_WITH_CODEGEN_SUPPORT)
+#  add_project_dependency(cppad 20200000.0 REQUIRED)
+#  add_project_dependency(cppadcg 2.4.1 REQUIRED)
+#  add_definitions(-DCROCODDYL_WITH_CODEGEN)
+#  # Pinocchio codegen related preproccessor defs.
+#  add_definitions(-DPINOCCHIO_WITH_CPPADCG_SUPPORT)
+#  add_definitions(-DPINOCCHIO_WITH_CPPAD_SUPPORT)
+#  # Packaging for downstream.
+#  set(PACKAGE_EXTRA_MACROS
+#      "${PACKAGE_EXTRA_MACROS}\nADD_DEFINITIONS(-DCROCODDYL_WITH_CODEGEN -DPINOCCHIO_WITH_CPPAD_SUPPORT -DPINOCCHIO_WITH_CPPADCG_SUPPORT)"
+#  )
+#  if(NOT ${EIGEN3_VERSION} VERSION_GREATER "3.3.0")
+#    add_definitions(-DPINOCCHIO_CPPAD_REQUIRES_MATRIX_BASE_PLUGIN)
+#    set(PACKAGE_EXTRA_MACROS
+#        "${PACKAGE_EXTRA_MACROS}\nADD_DEFINITIONS(-DPINOCCHIO_CPPAD_REQUIRES_MATRIX_BASE_PLUGIN)"
+#    )
+#  endif(NOT ${EIGEN3_VERSION} VERSION_GREATER "3.3.0")
+#endif()
+#
+## Add OpenMP
+#if(BUILD_WITH_MULTITHREADS)
+#  find_package(OpenMP REQUIRED COMPONENTS CXX)
+#
+#  add_definitions(-DCROCODDYL_WITH_MULTITHREADING)
+#  add_definitions(-DCROCODDYL_WITH_NTHREADS=${BUILD_WITH_NTHREADS})
+#  set(PACKAGE_EXTRA_MACROS
+#      "${PACKAGE_EXTRA_MACROS}\nADD_DEFINITIONS(-DCROCODDYL_WITH_MULTITHREADING -DCROCODDYL_WITH_NTHREADS=${BUILD_WITH_NTHREADS})"
+#  )
+#  set(OMP_NUM_THREADS ${BUILD_WITH_NTHREADS})
+#endif()
+#
+## Add Ipopt
+#if(BUILD_WITH_IPOPT AND IPOPT_FOUND)
+#  add_definitions(-DCROCODDYL_WITH_IPOPT)
+#  link_directories(${IPOPT_LIBRARY_DIRS})
+#endif()
+
+#set(BOOST_REQUIRED_COMPONENTS filesystem serialization system)
+#set(BOOST_BUILD_COMPONENTS unit_test_framework)
+#set_boost_default_options()
+#export_boost_default_options()
+#add_project_dependency(Boost 1.65 REQUIRED COMPONENTS
+#                       ${BOOST_REQUIRED_COMPONENTS})
+#find_package(Boost 1.65 REQUIRED COMPONENTS ${BOOST_BUILD_COMPONENTS})
+#
+#if(Boost_VERSION GREATER 107299)
+#  # Silence a warning about a deprecated use of boost bind by boost python at
+#  # least fo boost 1.73 to 1.75
+#  add_definitions(-DBOOST_BIND_GLOBAL_PLACEHOLDERS)
+#endif()
+
+#target_include_directories(${PROJECT_NAME}
+#					 PUBLIC $<INSTALL_INTERFACE:include>)
+#target_link_libraries(${PROJECT_NAME} pinocchio::pinocchio)
+#target_link_libraries(${PROJECT_NAME} Boost::filesystem Boost::system
+#				Boost::serialization)
+
+# add this if you add this 
+#if(BUILD_WITH_MULTITHREADS)
+#target_link_libraries(${PROJECT_NAME} OpenMP::OpenMP_CXX)
+#endif()
+#
+#if(BUILD_WITH_IPOPT AND IPOPT_FOUND)
+#target_link_libraries(${PROJECT_NAME} ipopt)
+#target_include_directories(${PROJECT_NAME} PUBLIC ${IPOPT_INCLUDE_DIRS})
+#endif()
+
+# TODO try to figure it out
+# Build the Python interface
+#if(BUILD_PYTHON_INTERFACE)
+#  # Include and add the bindings directory
+#  include_directories(bindings)
+#  add_subdirectory(bindings)
+#endif(BUILD_PYTHON_INTERFACE)
+#
+## Build the unit tests
+#if(BUILD_TESTING)
+#  add_subdirectory(unittest)
+#endif(BUILD_TESTING)
+#
+## Build the benchmark
+#if(BUILD_BENCHMARK)
+#  add_subdirectory(benchmark)
+#endif(BUILD_BENCHMARK)
+#
+## Build the examples
+#if(BUILD_EXAMPLES)
+#  if(BUILD_PYTHON_INTERFACE)
+#    add_subdirectory(examples)
+#  else(BUILD_PYTHON_INTERFACE)
+#    message(
+#      WARNING "Python interface is not built, hence cannot build examples.")
+#  endif(BUILD_PYTHON_INTERFACE)
+#endif(BUILD_EXAMPLES)
+
+# TODO: generate this as well for full points i guess
+# PkgConfig packaging of the project
+#pkg_config_append_libs(${PROJECT_NAME})
+#pkg_config_append_boost_libs(${BOOST_REQUIRED_COMPONENTS})
diff --git a/python/README.md b/python/README.md
index cc31c69b2903a784f0cbd7ff4069437ea29a1735..9d3d5f035a17e4e123b95787eafcea88b7af14ac 100644
--- a/python/README.md
+++ b/python/README.md
@@ -8,6 +8,7 @@
 - write out types in various functions
 - write appropriate asserts over applicable arguments - you don't want to blow something up
   due to a misclick while typing out arguments
+- try to get reading and setting the payload from code. also figure out why doesn't it zero the f/t sensor
 
 # installation
 ------------
diff --git a/python/ur_simple_control/basics/.basics.py.swp b/python/convenience_tool_box/.ft_readings.py.swp
similarity index 74%
rename from python/ur_simple_control/basics/.basics.py.swp
rename to python/convenience_tool_box/.ft_readings.py.swp
index 91f857fb659921e79ffd64b34cee3258dc346c43..af38ae571664e934dff03f6a299a13e6513fcdcd 100644
Binary files a/python/ur_simple_control/basics/.basics.py.swp and b/python/convenience_tool_box/.ft_readings.py.swp differ
diff --git a/python/convenience_tool_box/check_tcp_payload b/python/convenience_tool_box/check_tcp_payload
new file mode 100755
index 0000000000000000000000000000000000000000..dca57cd600cf8d8d863419444744061d40a26d92
Binary files /dev/null and b/python/convenience_tool_box/check_tcp_payload differ
diff --git a/python/convenience_tool_box/ft_readings.py b/python/convenience_tool_box/ft_readings.py
index b721486d6b3028065fc66d424e5fe4f402875ebf..a43f9ef772e38d1a0622e25dd972e568ff6151a3 100644
--- a/python/convenience_tool_box/ft_readings.py
+++ b/python/convenience_tool_box/ft_readings.py
@@ -2,50 +2,32 @@ import pinocchio as pin
 import numpy as np
 import matplotlib.pyplot as plt
 import sys
-import os
-from os.path import dirname, join, abspath
 import time
-from pinocchio.visualize import GepettoVisualizer
-import gepetto.corbaserver
-from rtde_control import RTDEControlInterface
-from rtde_receive import RTDEReceiveInterface
-import os
 import copy
 import signal
-from give_me_the_calibrated_model import get_model
+from ur_simple_control.managers import RobotManager
+from ur_simple_control.clik.clik_point_to_point import get_args
 
-def handler(signum, frame):
-    print('i will end freedrive and exit')
-    rtde_control.endFreedriveMode()
-    exit()
 
 
-rtde_control = RTDEControlInterface("192.168.1.102")
-rtde_receive = RTDEReceiveInterface("192.168.1.102")
-while not rtde_control.isConnected():
-    continue
-print("connected")
-print("payload", rtde_receive.getPayload())
-print("payload cog", rtde_receive.getPayloadCog())
-print("payload ixx, iyy, izz, angular", rtde_receive.getPayloadInertia())
-#exit()
 
-signal.signal(signal.SIGINT, handler)
 
-urdf_path_relative = "../robot_descriptions/urdf/ur5e_with_robotiq_hande.urdf"
-urdf_path_absolute = os.path.abspath(urdf_path_relative)
-mesh_dir = "../robot_descriptions/"
-mesh_dir_absolute = os.path.abspath(mesh_dir)
-model, data = get_model(urdf_path_absolute, mesh_dir_absolute)
+args = get_args()
+robot = RobotManager(args)
+
+#print("payload", robot.rtde_receive.getPayload())
+#print("payload cog", robot.rtde_receive.getPayloadCog())
+#print("payload ixx, iyy, izz, angular", robot.rtde_receive.getPayloadInertia())
+
 ft_readings = []
 dt = 1/500
 #while True:
 for i in range(5000):
     start = time.time()
-    q = rtde_receive.getActualQ()
-    ft = rtde_receive.getActualTCPForce()
-    tau = rtde_control.getJointTorques()
-    current = rtde_receive.getActualCurrent()
+    q = robot.rtde_receive.getActualQ()
+    ft = robot.rtde_receive.getActualTCPForce()
+    tau = robot.rtde_control.getJointTorques()
+    current = robot.rtde_receive.getActualCurrent()
     #print("current", current)
     #print("getActualTCPForce", ft)
     #print("tau", tau)
@@ -55,6 +37,8 @@ for i in range(5000):
     if diff < dt:
         time.sleep(dt - diff)
 
+
+robot.rtde_control.endFreedriveMode()
 ft_readings = np.array(ft_readings)
 time = np.arange(len(ft_readings))
 plt.title('fts')
@@ -70,6 +54,7 @@ ax = plt.subplot(235)
 ax.plot(time, ft_readings[:,4])
 ax = plt.subplot(236)
 ax.plot(time, ft_readings[:,5])
+print("average over time", np.average(ft_readings, axis=0))
 plt.savefig('fts.png', dpi=600)
 plt.show()
 #    ft = rtde_receive.getFtRawWrench()
diff --git a/python/convenience_tool_box/fts.png b/python/convenience_tool_box/fts.png
index c425e6ad19ac9d6f16c5d123919944483f2561e2..cfd5ee6281dc020f3687f2da77a24b9465e543f8 100644
Binary files a/python/convenience_tool_box/fts.png and b/python/convenience_tool_box/fts.png differ
diff --git a/python/examples/.drawing_from_input_drawing.py.swp b/python/examples/.drawing_from_input_drawing.py.swp
index ae7c0e382af11260516d6ef45d8da293311fa6fb..608515cc2f32846a7797b33739a03eee7b7a2eb0 100644
Binary files a/python/examples/.drawing_from_input_drawing.py.swp and b/python/examples/.drawing_from_input_drawing.py.swp differ
diff --git a/python/examples/drawing_from_input_drawing.py b/python/examples/drawing_from_input_drawing.py
index 8ec4bf7185bf64a458b9ec9b4407a0dbefe847d2..7e41d94035b42223b7c4be15b0de0d7228b8e2f8 100644
--- a/python/examples/drawing_from_input_drawing.py
+++ b/python/examples/drawing_from_input_drawing.py
@@ -33,6 +33,29 @@ from ur_simple_control.basics.basics import moveJ
 #######################################################################
 #                            arguments                                #
 #######################################################################
+
+def calibrateFT(robot):
+    ft_readings = []
+    for i in range(2000):
+        start = time.time()
+        q = robot.rtde_receive.getActualQ()
+        ft = robot.rtde_receive.getActualTCPForce()
+        tau = robot.rtde_control.getJointTorques()
+        current = robot.rtde_receive.getActualCurrent()
+        #print("current", current)
+        #print("getActualTCPForce", ft)
+        #print("tau", tau)
+        ft_readings.append(ft)
+        end = time.time()
+        diff = end - start
+        if diff < robot.dt:
+            time.sleep(robot.dt - diff)
+
+    ft_readings = np.array(ft_readings)
+    avg = np.average(ft_readings, axis=0)
+    print("average ft time", avg)
+    return avg
+
 def getArgs():
     #######################################################################
     #                          generic arguments                          #
@@ -95,7 +118,7 @@ def getArgs():
             help="whether you want to use temporal coupling", default=True)
     parser.add_argument('--kp', type=float, \
             help="proportial control constant for position errors", \
-            default=2.0)
+            default=1.0)
     parser.add_argument('--tau0', type=float, \
             help="total time needed for trajectory. if you use temporal coupling,\
                   you can still follow the path even if it's too fast", \
@@ -112,7 +135,7 @@ def getArgs():
             default=0.001)
     parser.add_argument('--alpha', type=float, \
             help="force feedback proportional coefficient", \
-            default=0.003)
+            default=0.007)
     # TODO add low pass filtering and make it's parameters arguments too
     #######################################################################
     #                       task specific arguments                       #
@@ -222,7 +245,7 @@ def controller():
 # to find option 3)
 
 # control loop to be passed to ControlLoopManager
-def controlLoopWriting(dmp, tc, controller, robot, i, past_data):
+def controlLoopWriting(wrench_offset, dmp, tc, controller, robot, i, past_data):
     breakFlag = False
     # TODO rename this into something less confusing
     save_past_dict = {}
@@ -237,10 +260,14 @@ def controlLoopWriting(dmp, tc, controller, robot, i, past_data):
     # it's probably worse, but maybe some sensor fusion-type thing
     # is actually better, who knows.
     # also you probably want to do the fusion of that onto tau (got from J.T @ wrench)
-    wrench = robot.getWrench()
+    Z = np.diag(np.array([0.6, 1.0, 0.6, 0.5, 0.5, 0.5]))
+    wrench = Z @ robot.getWrench()
     # evil hack because wrench is  not zeros (why? - no idea whatsoever)
     # TODO: run it empty and zero it
-    wrench = wrench - np.array([-1.14156273, 11.05155707,  1.88523016, -0.06643418,  0.16550734,  0.09019818])
+    #wrench = wrench - np.array([-1.14156273, 11.05155707,  1.88523016, -0.06643418,  0.16550734,  0.09019818])
+    #wrench = wrench - np.array([ -2.89005509, 18.11969302, -1.92425821, -0.08124564,  0.08441558,  0.06800772])
+    #wrench = wrench - np.array( [ 0.38101014, -0.32524308,  0.50800527, -0.00830584,  0.06112097,  0.01231109])
+    wrench = wrench - wrench_offset
     # deepcopy for good coding practise (and correctness here)
     save_past_dict['wrench'] = copy.deepcopy(wrench)
     # rolling average
@@ -291,6 +318,9 @@ if __name__ == "__main__":
     args = getArgs()
     clikController = getClikController(args)
     robot = RobotManager(args)
+
+    # calibrate FT first
+    wrench_offset = calibrateFT(robot)
     #######################################################################
     #          drawing a path, making a joint trajectory for it           #
     #######################################################################
@@ -345,8 +375,16 @@ if __name__ == "__main__":
         #path = path + np.array([0.0, 0.0, -0.0813])
         # NOTE GOOD FOR SHORT
         #path = path + np.array([0.0, 0.0, -0.0750])
-        path = path + np.array([0.0, 0.0, -0.0791])
-        #path = path + np.array([0.0, 0.0, -0.1073])
+        #path = path + np.array([0.0, 0.0, -0.0791])
+        #path = path + np.array([0.0, 0.0, -0.0843])
+        # NOTE: THIS IS THE ONE
+        # NOTE: not a single one is the one, the f/t sensor sucks
+        # and this is the best number to change to get it to work [upside_down_emoji]
+        # but this is very close
+        #path = path + np.array([0.0, 0.0, -0.0803])
+        #path = path + np.array([0.0, 0.0, -0.1043])
+        path = path + np.array([0.0, 0.0, -0.0801])
+        #path = path + np.array([0.0, 0.0, -0.1573])
         #path = path + np.array([0.0, 0.2938, 0.0])
 
     # and if you don't want to draw new nor calibrate, but you want the same path
@@ -398,7 +436,7 @@ if __name__ == "__main__":
             'dqs' : np.zeros((args.max_iterations, 6)),
             'dmp_vels' : np.zeros((args.max_iterations, 6)),
         }
-    controlLoop = partial(controlLoopWriting, dmp, tc, controller, robot)
+    controlLoop = partial(controlLoopWriting, wrench_offset, dmp, tc, controller, robot)
     loop_manager = ControlLoopManager(robot, controlLoop, args, save_past_dict, log_dict)
     #######################################################################
     #                           physical setup                            #
@@ -431,6 +469,7 @@ if __name__ == "__main__":
     mtool.translation[1] = mtool.translation[1] - 0.1
     moveL(args, robot, mtool)
 
+    plotFromDict(log_dict, args)
     robot.stopHandler(None, None)
     robot.stopHandler(None, None)
     robot.stopHandler(None, None)
diff --git a/python/examples/joint_trajectory.csv b/python/examples/joint_trajectory.csv
index 2d1911f1af218bd08d8bccf3aa8adef3abae7945..e07ac52648f0113a8f15c8e06188cd91899b1097 100644
--- a/python/examples/joint_trajectory.csv
+++ b/python/examples/joint_trajectory.csv
@@ -1,3243 +1,4012 @@
-0.00000,1.35338,-1.35336,-1.52435,-0.26726,1.78827,0.00409
-0.00154,1.35257,-1.35382,-1.52351,-0.26763,1.78907,0.00409
-0.00308,1.35177,-1.35428,-1.52269,-0.26799,1.78986,0.00409
-0.00463,1.35099,-1.35473,-1.52188,-0.26835,1.79063,0.00409
-0.00617,1.35022,-1.35517,-1.52108,-0.26869,1.79140,0.00408
-0.00771,1.34945,-1.35561,-1.52029,-0.26904,1.79215,0.00408
-0.00925,1.34871,-1.35604,-1.51951,-0.26938,1.79289,0.00408
-0.01080,1.34797,-1.35647,-1.51875,-0.26971,1.79362,0.00407
-0.01234,1.34724,-1.35689,-1.51799,-0.27003,1.79433,0.00407
-0.01388,1.34653,-1.35730,-1.51725,-0.27035,1.79504,0.00407
-0.01542,1.34583,-1.35771,-1.51652,-0.27067,1.79573,0.00407
-0.01696,1.34514,-1.35811,-1.51580,-0.27098,1.79641,0.00406
-0.01851,1.34446,-1.35851,-1.51510,-0.27129,1.79709,0.00406
-0.02005,1.34379,-1.35890,-1.51440,-0.27159,1.79775,0.00406
-0.02159,1.34313,-1.35928,-1.51371,-0.27188,1.79840,0.00406
-0.02313,1.34248,-1.35966,-1.51304,-0.27217,1.79904,0.00405
-0.02468,1.34185,-1.36004,-1.51237,-0.27246,1.79968,0.00405
-0.02622,1.34122,-1.36040,-1.51172,-0.27274,1.80030,0.00405
-0.02776,1.34060,-1.36077,-1.51107,-0.27302,1.80091,0.00405
-0.02930,1.33999,-1.36113,-1.51044,-0.27329,1.80151,0.00404
-0.03085,1.33939,-1.36148,-1.50981,-0.27355,1.80211,0.00404
-0.03239,1.33881,-1.36183,-1.50920,-0.27382,1.80269,0.00404
-0.03393,1.33823,-1.36217,-1.50859,-0.27408,1.80327,0.00404
-0.03547,1.33766,-1.36251,-1.50799,-0.27433,1.80383,0.00403
-0.03701,1.33710,-1.36284,-1.50740,-0.27458,1.80439,0.00403
-0.03856,1.33654,-1.36317,-1.50683,-0.27483,1.80494,0.00403
-0.04010,1.33600,-1.36349,-1.50626,-0.27507,1.80548,0.00403
-0.04164,1.33546,-1.36381,-1.50570,-0.27531,1.80601,0.00402
-0.04318,1.33494,-1.36413,-1.50514,-0.27554,1.80654,0.00402
-0.04473,1.33442,-1.36444,-1.50460,-0.27577,1.80705,0.00402
-0.04627,1.33391,-1.36474,-1.50406,-0.27600,1.80756,0.00402
-0.04781,1.33341,-1.36504,-1.50354,-0.27622,1.80806,0.00401
-0.04935,1.33291,-1.36534,-1.50302,-0.27644,1.80855,0.00401
-0.05089,1.33243,-1.36563,-1.50251,-0.27666,1.80904,0.00401
-0.05244,1.33195,-1.36592,-1.50200,-0.27687,1.80951,0.00401
-0.05398,1.33148,-1.36621,-1.50151,-0.27708,1.80998,0.00401
-0.05552,1.33102,-1.36649,-1.50102,-0.27729,1.81044,0.00400
-0.05706,1.33056,-1.36676,-1.50054,-0.27749,1.81090,0.00400
-0.05861,1.33011,-1.36703,-1.50007,-0.27769,1.81135,0.00400
-0.06015,1.32967,-1.36730,-1.49960,-0.27788,1.81179,0.00400
-0.06169,1.32924,-1.36756,-1.49914,-0.27807,1.81222,0.00400
-0.06323,1.32881,-1.36782,-1.49869,-0.27826,1.81265,0.00399
-0.06477,1.32864,-1.36792,-1.49851,-0.27834,1.81282,0.00399
-0.06632,1.32784,-1.36841,-1.49763,-0.27872,1.81362,0.00399
-0.06786,1.32704,-1.36890,-1.49677,-0.27909,1.81440,0.00399
-0.06940,1.32626,-1.36937,-1.49592,-0.27946,1.81518,0.00398
-0.07094,1.32549,-1.36984,-1.49508,-0.27983,1.81594,0.00398
-0.07249,1.32474,-1.37031,-1.49426,-0.28018,1.81669,0.00398
-0.07403,1.32400,-1.37076,-1.49344,-0.28053,1.81743,0.00397
-0.07557,1.32326,-1.37121,-1.49264,-0.28088,1.81816,0.00397
-0.07711,1.32255,-1.37166,-1.49186,-0.28122,1.81888,0.00397
-0.07866,1.32184,-1.37209,-1.49108,-0.28155,1.81958,0.00397
-0.08020,1.32114,-1.37252,-1.49031,-0.28188,1.82028,0.00396
-0.08174,1.32045,-1.37295,-1.48956,-0.28220,1.82096,0.00396
-0.08328,1.31978,-1.37337,-1.48882,-0.28252,1.82163,0.00396
-0.08482,1.31912,-1.37378,-1.48809,-0.28284,1.82229,0.00395
-0.08637,1.31846,-1.37419,-1.48737,-0.28314,1.82294,0.00395
-0.08791,1.31782,-1.37459,-1.48666,-0.28345,1.82359,0.00395
-0.08945,1.31719,-1.37498,-1.48597,-0.28374,1.82422,0.00394
-0.09099,1.31657,-1.37537,-1.48528,-0.28404,1.82484,0.00394
-0.09254,1.31595,-1.37576,-1.48461,-0.28433,1.82545,0.00394
-0.09408,1.31535,-1.37613,-1.48394,-0.28461,1.82605,0.00394
-0.09562,1.31476,-1.37651,-1.48329,-0.28489,1.82664,0.00393
-0.09716,1.31417,-1.37687,-1.48264,-0.28516,1.82723,0.00393
-0.09870,1.31360,-1.37724,-1.48201,-0.28543,1.82780,0.00393
-0.10025,1.31303,-1.37759,-1.48138,-0.28570,1.82837,0.00393
-0.10179,1.31248,-1.37794,-1.48076,-0.28596,1.82892,0.00392
-0.10333,1.31193,-1.37829,-1.48016,-0.28622,1.82947,0.00392
-0.10487,1.31139,-1.37863,-1.47956,-0.28647,1.83001,0.00392
-0.10642,1.31086,-1.37897,-1.47897,-0.28672,1.83054,0.00392
-0.10796,1.31034,-1.37930,-1.47839,-0.28697,1.83106,0.00391
-0.10950,1.30983,-1.37962,-1.47782,-0.28721,1.83158,0.00391
-0.11104,1.30932,-1.37995,-1.47726,-0.28745,1.83208,0.00391
-0.11258,1.30883,-1.38026,-1.47671,-0.28768,1.83258,0.00391
-0.11413,1.30834,-1.38058,-1.47617,-0.28791,1.83307,0.00390
-0.11567,1.30786,-1.38088,-1.47563,-0.28814,1.83356,0.00390
-0.11721,1.30738,-1.38119,-1.47510,-0.28836,1.83403,0.00390
-0.11875,1.30692,-1.38149,-1.47458,-0.28858,1.83450,0.00390
-0.12030,1.30646,-1.38178,-1.47407,-0.28879,1.83496,0.00389
-0.12184,1.30601,-1.38207,-1.47357,-0.28900,1.83541,0.00389
-0.12338,1.30556,-1.38236,-1.47307,-0.28921,1.83586,0.00389
-0.12492,1.30512,-1.38264,-1.47258,-0.28942,1.83630,0.00389
-0.12647,1.30469,-1.38292,-1.47210,-0.28962,1.83673,0.00388
-0.12801,1.30427,-1.38319,-1.47163,-0.28982,1.83716,0.00388
-0.12955,1.30385,-1.38346,-1.47116,-0.29001,1.83758,0.00388
-0.13109,1.30362,-1.38361,-1.47089,-0.29013,1.83781,0.00388
-0.13263,1.30250,-1.38435,-1.46951,-0.29076,1.83893,0.00388
-0.13418,1.30140,-1.38507,-1.46816,-0.29138,1.84002,0.00387
-0.13572,1.30031,-1.38579,-1.46682,-0.29199,1.84110,0.00387
-0.13726,1.29925,-1.38649,-1.46551,-0.29259,1.84216,0.00386
-0.13880,1.29820,-1.38718,-1.46422,-0.29319,1.84320,0.00386
-0.14035,1.29717,-1.38787,-1.46294,-0.29377,1.84423,0.00385
-0.14189,1.29616,-1.38854,-1.46169,-0.29434,1.84524,0.00385
-0.14343,1.29516,-1.38921,-1.46045,-0.29490,1.84623,0.00385
-0.14497,1.29418,-1.38987,-1.45923,-0.29546,1.84721,0.00384
-0.14651,1.29321,-1.39051,-1.45803,-0.29600,1.84817,0.00384
-0.14806,1.29226,-1.39115,-1.45685,-0.29654,1.84912,0.00383
-0.14960,1.29133,-1.39178,-1.45569,-0.29706,1.85005,0.00383
-0.15114,1.29041,-1.39240,-1.45454,-0.29758,1.85097,0.00383
-0.15268,1.28951,-1.39301,-1.45341,-0.29810,1.85187,0.00382
-0.15423,1.28862,-1.39362,-1.45230,-0.29860,1.85276,0.00382
-0.15577,1.28774,-1.39421,-1.45120,-0.29909,1.85363,0.00381
-0.15731,1.28688,-1.39480,-1.45012,-0.29958,1.85449,0.00381
-0.15885,1.28604,-1.39538,-1.44906,-0.30006,1.85533,0.00381
-0.16039,1.28521,-1.39595,-1.44802,-0.30053,1.85617,0.00380
-0.16194,1.28439,-1.39651,-1.44698,-0.30100,1.85699,0.00380
-0.16348,1.28358,-1.39706,-1.44597,-0.30145,1.85779,0.00380
-0.16502,1.28279,-1.39761,-1.44497,-0.30190,1.85859,0.00379
-0.16656,1.28201,-1.39814,-1.44398,-0.30235,1.85937,0.00379
-0.16811,1.28124,-1.39867,-1.44301,-0.30278,1.86013,0.00378
-0.16965,1.28049,-1.39920,-1.44206,-0.30321,1.86089,0.00378
-0.17119,1.27975,-1.39971,-1.44112,-0.30363,1.86163,0.00378
-0.17273,1.27902,-1.40022,-1.44019,-0.30405,1.86237,0.00377
-0.17428,1.27830,-1.40072,-1.43928,-0.30446,1.86309,0.00377
-0.17582,1.27759,-1.40121,-1.43838,-0.30486,1.86380,0.00377
-0.17736,1.27690,-1.40170,-1.43750,-0.30525,1.86449,0.00376
-0.17890,1.27621,-1.40218,-1.43663,-0.30564,1.86518,0.00376
-0.18044,1.27554,-1.40265,-1.43577,-0.30603,1.86586,0.00376
-0.18199,1.27488,-1.40311,-1.43492,-0.30640,1.86652,0.00375
-0.18353,1.27423,-1.40357,-1.43409,-0.30678,1.86717,0.00375
-0.18507,1.27358,-1.40402,-1.43327,-0.30714,1.86782,0.00375
-0.18661,1.27295,-1.40447,-1.43246,-0.30750,1.86845,0.00374
-0.18816,1.27233,-1.40491,-1.43167,-0.30785,1.86908,0.00374
-0.18970,1.27172,-1.40534,-1.43088,-0.30820,1.86969,0.00374
-0.19124,1.27112,-1.40577,-1.43011,-0.30855,1.87029,0.00373
-0.19278,1.27053,-1.40619,-1.42935,-0.30888,1.87089,0.00373
-0.19432,1.26995,-1.40660,-1.42861,-0.30922,1.87147,0.00373
-0.19587,1.26938,-1.40701,-1.42787,-0.30954,1.87205,0.00372
-0.19741,1.26882,-1.40741,-1.42715,-0.30986,1.87262,0.00372
-0.19895,1.26826,-1.40781,-1.42643,-0.31018,1.87318,0.00372
-0.20049,1.26772,-1.40820,-1.42573,-0.31049,1.87372,0.00372
-0.20204,1.26718,-1.40858,-1.42504,-0.31080,1.87426,0.00371
-0.20358,1.26665,-1.40896,-1.42435,-0.31110,1.87480,0.00371
-0.20512,1.26614,-1.40933,-1.42368,-0.31140,1.87532,0.00371
-0.20666,1.26563,-1.40970,-1.42302,-0.31169,1.87584,0.00370
-0.20820,1.26512,-1.41006,-1.42237,-0.31198,1.87634,0.00370
-0.20975,1.26463,-1.41042,-1.42173,-0.31226,1.87684,0.00370
-0.21129,1.26414,-1.41077,-1.42110,-0.31254,1.87733,0.00370
-0.21283,1.26366,-1.41112,-1.42048,-0.31282,1.87782,0.00369
-0.21437,1.26319,-1.41146,-1.41987,-0.31309,1.87829,0.00369
-0.21592,1.26273,-1.41180,-1.41926,-0.31335,1.87876,0.00369
-0.21746,1.26227,-1.41213,-1.41867,-0.31361,1.87922,0.00368
-0.21900,1.26183,-1.41245,-1.41809,-0.31387,1.87967,0.00368
-0.22054,1.26138,-1.41278,-1.41751,-0.31412,1.88012,0.00368
-0.22209,1.26095,-1.41309,-1.41694,-0.31437,1.88056,0.00368
-0.22363,1.26052,-1.41340,-1.41639,-0.31462,1.88099,0.00367
-0.22517,1.26010,-1.41371,-1.41584,-0.31486,1.88142,0.00367
-0.22671,1.25969,-1.41402,-1.41530,-0.31510,1.88184,0.00367
-0.22825,1.25928,-1.41431,-1.41476,-0.31533,1.88225,0.00367
-0.22980,1.25888,-1.41461,-1.41424,-0.31556,1.88266,0.00366
-0.23134,1.25849,-1.41490,-1.41372,-0.31579,1.88306,0.00366
-0.23288,1.25810,-1.41518,-1.41321,-0.31601,1.88345,0.00366
-0.23442,1.25772,-1.41546,-1.41271,-0.31623,1.88384,0.00366
-0.23597,1.25757,-1.41557,-1.41251,-0.31632,1.88398,0.00365
-0.23751,1.25651,-1.41635,-1.41105,-0.31700,1.88504,0.00365
-0.23905,1.25547,-1.41711,-1.40960,-0.31768,1.88607,0.00365
-0.24059,1.25445,-1.41787,-1.40818,-0.31834,1.88709,0.00364
-0.24213,1.25344,-1.41861,-1.40677,-0.31899,1.88810,0.00364
-0.24368,1.25245,-1.41935,-1.40539,-0.31963,1.88909,0.00363
-0.24522,1.25148,-1.42007,-1.40403,-0.32026,1.89006,0.00363
-0.24676,1.25052,-1.42079,-1.40268,-0.32088,1.89102,0.00363
-0.24830,1.24958,-1.42149,-1.40136,-0.32149,1.89196,0.00362
-0.24985,1.24865,-1.42219,-1.40006,-0.32209,1.89288,0.00362
-0.25139,1.24774,-1.42287,-1.39878,-0.32269,1.89379,0.00361
-0.25293,1.24685,-1.42354,-1.39751,-0.32327,1.89469,0.00361
-0.25447,1.24597,-1.42421,-1.39627,-0.32384,1.89557,0.00361
-0.25601,1.24510,-1.42487,-1.39504,-0.32441,1.89644,0.00360
-0.25756,1.24425,-1.42551,-1.39383,-0.32497,1.89729,0.00360
-0.25910,1.24341,-1.42615,-1.39264,-0.32551,1.89813,0.00359
-0.26064,1.24258,-1.42678,-1.39147,-0.32605,1.89896,0.00359
-0.26218,1.24177,-1.42740,-1.39032,-0.32659,1.89977,0.00359
-0.26373,1.24097,-1.42801,-1.38918,-0.32711,1.90057,0.00358
-0.26527,1.24019,-1.42861,-1.38806,-0.32762,1.90136,0.00358
-0.26681,1.23942,-1.42920,-1.38695,-0.32813,1.90213,0.00357
-0.26835,1.23866,-1.42978,-1.38587,-0.32863,1.90289,0.00357
-0.26990,1.23791,-1.43036,-1.38480,-0.32912,1.90364,0.00357
-0.27144,1.23718,-1.43093,-1.38374,-0.32960,1.90438,0.00356
-0.27298,1.23646,-1.43149,-1.38270,-0.33008,1.90511,0.00356
-0.27452,1.23575,-1.43204,-1.38168,-0.33055,1.90582,0.00356
-0.27606,1.23505,-1.43258,-1.38067,-0.33101,1.90652,0.00355
-0.27761,1.23436,-1.43312,-1.37968,-0.33146,1.90721,0.00355
-0.27915,1.23368,-1.43365,-1.37870,-0.33191,1.90789,0.00354
-0.28069,1.23302,-1.43417,-1.37774,-0.33235,1.90856,0.00354
-0.28223,1.23236,-1.43468,-1.37679,-0.33279,1.90922,0.00354
-0.28378,1.23172,-1.43518,-1.37586,-0.33321,1.90987,0.00353
-0.28532,1.23109,-1.43568,-1.37494,-0.33363,1.91051,0.00353
-0.28686,1.23047,-1.43617,-1.37403,-0.33405,1.91113,0.00353
-0.28840,1.22985,-1.43666,-1.37314,-0.33445,1.91175,0.00352
-0.28994,1.22925,-1.43713,-1.37226,-0.33486,1.91236,0.00352
-0.29149,1.22866,-1.43760,-1.37139,-0.33525,1.91296,0.00352
-0.29303,1.22807,-1.43807,-1.37054,-0.33564,1.91354,0.00351
-0.29457,1.22750,-1.43852,-1.36970,-0.33602,1.91412,0.00351
-0.29611,1.22694,-1.43897,-1.36887,-0.33640,1.91469,0.00351
-0.29766,1.22638,-1.43941,-1.36806,-0.33677,1.91525,0.00350
-0.29920,1.22584,-1.43985,-1.36725,-0.33714,1.91580,0.00350
-0.30074,1.22530,-1.44028,-1.36646,-0.33750,1.91635,0.00350
-0.30228,1.22477,-1.44070,-1.36569,-0.33785,1.91688,0.00349
-0.30382,1.22425,-1.44112,-1.36492,-0.33820,1.91741,0.00349
-0.30537,1.22374,-1.44153,-1.36416,-0.33854,1.91792,0.00349
-0.30691,1.22324,-1.44194,-1.36342,-0.33888,1.91843,0.00348
-0.30845,1.22274,-1.44234,-1.36269,-0.33921,1.91893,0.00348
-0.30999,1.22225,-1.44273,-1.36197,-0.33954,1.91942,0.00348
-0.31154,1.22178,-1.44312,-1.36126,-0.33986,1.91991,0.00347
-0.31308,1.22130,-1.44350,-1.36056,-0.34018,1.92039,0.00347
-0.31462,1.22084,-1.44388,-1.35987,-0.34049,1.92086,0.00347
-0.31616,1.22038,-1.44425,-1.35919,-0.34080,1.92132,0.00346
-0.31771,1.21994,-1.44461,-1.35852,-0.34110,1.92177,0.00346
-0.31925,1.21949,-1.44497,-1.35786,-0.34140,1.92222,0.00346
-0.32079,1.21906,-1.44533,-1.35721,-0.34170,1.92266,0.00345
-0.32233,1.21863,-1.44568,-1.35658,-0.34199,1.92309,0.00345
-0.32387,1.21821,-1.44602,-1.35595,-0.34227,1.92352,0.00345
-0.32542,1.21780,-1.44636,-1.35533,-0.34255,1.92394,0.00345
-0.32696,1.21739,-1.44669,-1.35472,-0.34283,1.92435,0.00344
-0.32850,1.21699,-1.44702,-1.35412,-0.34310,1.92476,0.00344
-0.33004,1.21660,-1.44735,-1.35353,-0.34337,1.92516,0.00344
-0.33159,1.21621,-1.44767,-1.35294,-0.34363,1.92555,0.00343
-0.33313,1.21583,-1.44798,-1.35237,-0.34389,1.92594,0.00343
-0.33467,1.21545,-1.44829,-1.35181,-0.34415,1.92632,0.00343
-0.33621,1.21508,-1.44860,-1.35125,-0.34440,1.92670,0.00343
-0.33775,1.21472,-1.44890,-1.35070,-0.34464,1.92706,0.00342
-0.33930,1.21436,-1.44919,-1.35016,-0.34489,1.92743,0.00342
-0.34084,1.21400,-1.44949,-1.34961,-0.34514,1.92780,0.00342
-0.34238,1.21356,-1.44988,-1.34887,-0.34550,1.92825,0.00341
-0.34392,1.21312,-1.45025,-1.34814,-0.34585,1.92869,0.00341
-0.34547,1.21268,-1.45062,-1.34742,-0.34620,1.92913,0.00341
-0.34701,1.21226,-1.45099,-1.34671,-0.34654,1.92956,0.00341
-0.34855,1.21184,-1.45135,-1.34601,-0.34688,1.92998,0.00340
-0.35009,1.21143,-1.45170,-1.34532,-0.34721,1.93040,0.00340
-0.35163,1.21102,-1.45205,-1.34465,-0.34754,1.93081,0.00340
-0.35318,1.21062,-1.45240,-1.34398,-0.34786,1.93122,0.00340
-0.35472,1.21023,-1.45274,-1.34332,-0.34818,1.93161,0.00339
-0.35626,1.20985,-1.45307,-1.34268,-0.34849,1.93201,0.00339
-0.35780,1.20947,-1.45340,-1.34204,-0.34880,1.93239,0.00339
-0.35935,1.20909,-1.45373,-1.34141,-0.34910,1.93277,0.00338
-0.36089,1.20873,-1.45405,-1.34080,-0.34940,1.93314,0.00338
-0.36243,1.20836,-1.45436,-1.34019,-0.34969,1.93351,0.00338
-0.36397,1.20801,-1.45467,-1.33959,-0.34998,1.93387,0.00338
-0.36552,1.20766,-1.45498,-1.33900,-0.35026,1.93423,0.00337
-0.36706,1.20731,-1.45528,-1.33842,-0.35054,1.93458,0.00337
-0.36860,1.20697,-1.45558,-1.33785,-0.35082,1.93492,0.00337
-0.37014,1.20664,-1.45587,-1.33728,-0.35109,1.93526,0.00337
-0.37168,1.20631,-1.45616,-1.33673,-0.35135,1.93559,0.00336
-0.37323,1.20621,-1.45625,-1.33654,-0.35144,1.93570,0.00336
-0.37477,1.20578,-1.45663,-1.33578,-0.35183,1.93613,0.00336
-0.37631,1.20537,-1.45700,-1.33502,-0.35221,1.93655,0.00336
-0.37785,1.20496,-1.45737,-1.33428,-0.35258,1.93696,0.00336
-0.37940,1.20456,-1.45773,-1.33355,-0.35295,1.93737,0.00335
-0.38094,1.20416,-1.45809,-1.33284,-0.35331,1.93777,0.00335
-0.38248,1.20378,-1.45844,-1.33213,-0.35366,1.93816,0.00335
-0.38402,1.20339,-1.45879,-1.33143,-0.35401,1.93855,0.00334
-0.38556,1.20302,-1.45913,-1.33074,-0.35436,1.93893,0.00334
-0.38711,1.20265,-1.45947,-1.33007,-0.35469,1.93930,0.00334
-0.38865,1.20228,-1.45980,-1.32940,-0.35503,1.93967,0.00334
-0.39019,1.20193,-1.46012,-1.32875,-0.35536,1.94004,0.00333
-0.39173,1.20157,-1.46045,-1.32810,-0.35568,1.94039,0.00333
-0.39328,1.20123,-1.46076,-1.32746,-0.35600,1.94075,0.00333
-0.39482,1.20088,-1.46108,-1.32684,-0.35631,1.94109,0.00333
-0.39636,1.20055,-1.46138,-1.32622,-0.35662,1.94143,0.00332
-0.39790,1.20022,-1.46169,-1.32561,-0.35692,1.94177,0.00332
-0.39944,1.19989,-1.46199,-1.32502,-0.35722,1.94210,0.00332
-0.40099,1.19957,-1.46228,-1.32443,-0.35752,1.94242,0.00332
-0.40253,1.19926,-1.46257,-1.32385,-0.35781,1.94274,0.00331
-0.40407,1.19895,-1.46286,-1.32328,-0.35809,1.94306,0.00331
-0.40561,1.19882,-1.46298,-1.32304,-0.35821,1.94319,0.00331
-0.40716,1.19846,-1.46330,-1.32243,-0.35850,1.94356,0.00331
-0.40870,1.19810,-1.46362,-1.32183,-0.35878,1.94392,0.00331
-0.41024,1.19774,-1.46393,-1.32123,-0.35907,1.94428,0.00330
-0.41178,1.19740,-1.46424,-1.32065,-0.35934,1.94463,0.00330
-0.41333,1.19705,-1.46454,-1.32007,-0.35962,1.94498,0.00330
-0.41487,1.19672,-1.46484,-1.31950,-0.35989,1.94532,0.00330
-0.41641,1.19639,-1.46513,-1.31894,-0.36015,1.94565,0.00329
-0.41795,1.19619,-1.46531,-1.31861,-0.36031,1.94585,0.00329
-0.41949,1.19587,-1.46560,-1.31804,-0.36059,1.94618,0.00329
-0.42104,1.19555,-1.46589,-1.31748,-0.36086,1.94650,0.00329
-0.42258,1.19522,-1.46619,-1.31691,-0.36113,1.94684,0.00328
-0.42412,1.19489,-1.46648,-1.31636,-0.36139,1.94717,0.00328
-0.42566,1.19457,-1.46677,-1.31579,-0.36167,1.94749,0.00328
-0.42721,1.19429,-1.46703,-1.31528,-0.36192,1.94778,0.00328
-0.42875,1.19395,-1.46733,-1.31471,-0.36219,1.94812,0.00327
-0.43029,1.19363,-1.46762,-1.31415,-0.36245,1.94845,0.00327
-0.43183,1.19331,-1.46792,-1.31358,-0.36273,1.94877,0.00327
-0.43337,1.19299,-1.46821,-1.31302,-0.36300,1.94909,0.00327
-0.43492,1.19266,-1.46850,-1.31245,-0.36327,1.94943,0.00327
-0.43646,1.19233,-1.46880,-1.31190,-0.36353,1.94976,0.00326
-0.43800,1.19226,-1.46884,-1.31187,-0.36352,1.94984,0.00326
-0.43954,1.19185,-1.46900,-1.31211,-0.36313,1.95024,0.00326
-0.44109,1.19146,-1.46915,-1.31235,-0.36274,1.95063,0.00325
-0.44263,1.19107,-1.46930,-1.31259,-0.36237,1.95102,0.00325
-0.44417,1.19068,-1.46945,-1.31282,-0.36199,1.95141,0.00325
-0.44571,1.19030,-1.46959,-1.31305,-0.36163,1.95178,0.00324
-0.44725,1.18993,-1.46974,-1.31327,-0.36127,1.95215,0.00324
-0.44880,1.18957,-1.46988,-1.31349,-0.36092,1.95252,0.00324
-0.45034,1.18921,-1.47001,-1.31371,-0.36057,1.95287,0.00323
-0.45188,1.18886,-1.47015,-1.31392,-0.36023,1.95323,0.00323
-0.45342,1.18883,-1.47016,-1.31396,-0.36019,1.95326,0.00323
-0.45497,1.18852,-1.47023,-1.31436,-0.35972,1.95357,0.00323
-0.45651,1.18822,-1.47030,-1.31476,-0.35927,1.95387,0.00322
-0.45805,1.18792,-1.47037,-1.31514,-0.35882,1.95417,0.00322
-0.45959,1.18762,-1.47044,-1.31552,-0.35837,1.95446,0.00322
-0.46114,1.18734,-1.47051,-1.31590,-0.35794,1.95475,0.00321
-0.46268,1.18705,-1.47057,-1.31627,-0.35751,1.95503,0.00321
-0.46422,1.18677,-1.47064,-1.31663,-0.35710,1.95531,0.00321
-0.46576,1.18650,-1.47070,-1.31698,-0.35668,1.95558,0.00321
-0.46730,1.18623,-1.47076,-1.31733,-0.35628,1.95585,0.00320
-0.46885,1.18606,-1.47078,-1.31765,-0.35595,1.95603,0.00320
-0.47039,1.18590,-1.47063,-1.31874,-0.35502,1.95618,0.00320
-0.47193,1.18575,-1.47048,-1.31982,-0.35411,1.95633,0.00320
-0.47347,1.18559,-1.47033,-1.32087,-0.35322,1.95648,0.00319
-0.47502,1.18545,-1.47018,-1.32191,-0.35234,1.95663,0.00319
-0.47656,1.18530,-1.47003,-1.32293,-0.35148,1.95677,0.00319
-0.47810,1.18516,-1.46989,-1.32393,-0.35063,1.95692,0.00319
-0.47964,1.18502,-1.46975,-1.32492,-0.34980,1.95705,0.00318
-0.48118,1.18488,-1.46961,-1.32589,-0.34898,1.95719,0.00318
-0.48273,1.18475,-1.46947,-1.32685,-0.34817,1.95732,0.00318
-0.48427,1.18462,-1.46934,-1.32779,-0.34738,1.95745,0.00318
-0.48581,1.18449,-1.46920,-1.32871,-0.34660,1.95758,0.00318
-0.48735,1.18436,-1.46907,-1.32962,-0.34583,1.95771,0.00318
-0.48890,1.18424,-1.46894,-1.33051,-0.34507,1.95783,0.00317
-0.49044,1.18412,-1.46881,-1.33139,-0.34433,1.95795,0.00317
-0.49198,1.18400,-1.46869,-1.33225,-0.34360,1.95807,0.00317
-0.49352,1.18388,-1.46856,-1.33310,-0.34289,1.95818,0.00317
-0.49506,1.18377,-1.46844,-1.33394,-0.34218,1.95830,0.00317
-0.49661,1.18365,-1.46832,-1.33476,-0.34149,1.95841,0.00317
-0.49815,1.18354,-1.46820,-1.33556,-0.34081,1.95852,0.00317
-0.49969,1.18344,-1.46808,-1.33636,-0.34014,1.95863,0.00317
-0.50123,1.18333,-1.46796,-1.33714,-0.33948,1.95873,0.00317
-0.50278,1.18323,-1.46785,-1.33791,-0.33883,1.95883,0.00316
-0.50432,1.18312,-1.46773,-1.33866,-0.33820,1.95893,0.00316
-0.50586,1.18302,-1.46762,-1.33941,-0.33757,1.95903,0.00316
-0.50740,1.18293,-1.46751,-1.34014,-0.33695,1.95913,0.00316
-0.50895,1.18283,-1.46740,-1.34086,-0.33635,1.95923,0.00316
-0.51049,1.18274,-1.46730,-1.34157,-0.33575,1.95932,0.00316
-0.51203,1.18264,-1.46719,-1.34226,-0.33517,1.95941,0.00316
-0.51357,1.18255,-1.46708,-1.34295,-0.33459,1.95950,0.00316
-0.51511,1.18246,-1.46698,-1.34362,-0.33403,1.95959,0.00316
-0.51666,1.18238,-1.46688,-1.34428,-0.33347,1.95967,0.00316
-0.51820,1.18229,-1.46678,-1.34493,-0.33292,1.95976,0.00316
-0.51974,1.18221,-1.46668,-1.34557,-0.33239,1.95984,0.00316
-0.52128,1.18212,-1.46658,-1.34620,-0.33186,1.95992,0.00316
-0.52283,1.18204,-1.46648,-1.34682,-0.33134,1.96000,0.00316
-0.52437,1.18197,-1.46639,-1.34743,-0.33083,1.96008,0.00316
-0.52591,1.18189,-1.46629,-1.34803,-0.33032,1.96016,0.00316
-0.52745,1.18181,-1.46620,-1.34862,-0.32983,1.96023,0.00316
-0.52899,1.18174,-1.46611,-1.34920,-0.32934,1.96031,0.00316
-0.53054,1.18166,-1.46602,-1.34977,-0.32887,1.96038,0.00316
-0.53208,1.18159,-1.46593,-1.35033,-0.32840,1.96045,0.00316
-0.53362,1.18152,-1.46584,-1.35088,-0.32793,1.96052,0.00317
-0.53516,1.18145,-1.46575,-1.35142,-0.32748,1.96059,0.00317
-0.53671,1.18139,-1.46567,-1.35195,-0.32703,1.96065,0.00317
-0.53825,1.18138,-1.46565,-1.35202,-0.32698,1.96066,0.00317
-0.53979,1.18135,-1.46552,-1.35271,-0.32643,1.96069,0.00317
-0.54133,1.18133,-1.46538,-1.35339,-0.32589,1.96071,0.00317
-0.54287,1.18130,-1.46525,-1.35406,-0.32536,1.96074,0.00317
-0.54442,1.18127,-1.46512,-1.35472,-0.32483,1.96077,0.00317
-0.54596,1.18125,-1.46499,-1.35536,-0.32432,1.96079,0.00317
-0.54750,1.18122,-1.46486,-1.35600,-0.32381,1.96082,0.00317
-0.54904,1.18119,-1.46473,-1.35662,-0.32332,1.96084,0.00317
-0.55059,1.18117,-1.46461,-1.35723,-0.32283,1.96086,0.00317
-0.55213,1.18115,-1.46449,-1.35784,-0.32235,1.96089,0.00317
-0.55367,1.18112,-1.46437,-1.35843,-0.32188,1.96091,0.00317
-0.55521,1.18110,-1.46425,-1.35902,-0.32141,1.96093,0.00317
-0.55676,1.18108,-1.46413,-1.35959,-0.32095,1.96095,0.00318
-0.55830,1.18106,-1.46401,-1.36016,-0.32051,1.96097,0.00318
-0.55984,1.18104,-1.46391,-1.36067,-0.32010,1.96099,0.00318
-0.56138,1.18104,-1.46377,-1.36130,-0.31961,1.96099,0.00318
-0.56292,1.18104,-1.46363,-1.36192,-0.31913,1.96099,0.00318
-0.56447,1.18104,-1.46350,-1.36253,-0.31865,1.96099,0.00318
-0.56601,1.18104,-1.46337,-1.36313,-0.31819,1.96099,0.00318
-0.56755,1.18104,-1.46324,-1.36372,-0.31773,1.96099,0.00318
-0.56909,1.18104,-1.46311,-1.36430,-0.31728,1.96099,0.00318
-0.57064,1.18104,-1.46298,-1.36487,-0.31683,1.96099,0.00318
-0.57218,1.18105,-1.46289,-1.36526,-0.31654,1.96098,0.00319
-0.57372,1.18116,-1.46261,-1.36633,-0.31575,1.96086,0.00319
-0.57526,1.18127,-1.46233,-1.36739,-0.31498,1.96075,0.00319
-0.57680,1.18138,-1.46205,-1.36843,-0.31422,1.96064,0.00319
-0.57835,1.18148,-1.46178,-1.36945,-0.31347,1.96054,0.00319
-0.57989,1.18159,-1.46152,-1.37045,-0.31274,1.96043,0.00319
-0.58143,1.18169,-1.46126,-1.37144,-0.31201,1.96032,0.00319
-0.58297,1.18179,-1.46100,-1.37241,-0.31130,1.96022,0.00319
-0.58452,1.18189,-1.46075,-1.37337,-0.31060,1.96012,0.00319
-0.58606,1.18199,-1.46050,-1.37431,-0.30992,1.96002,0.00319
-0.58760,1.18209,-1.46025,-1.37524,-0.30924,1.95992,0.00320
-0.58914,1.18219,-1.46001,-1.37614,-0.30858,1.95982,0.00320
-0.59068,1.18229,-1.45977,-1.37704,-0.30792,1.95972,0.00320
-0.59223,1.18238,-1.45953,-1.37792,-0.30728,1.95962,0.00320
-0.59377,1.18248,-1.45930,-1.37878,-0.30665,1.95953,0.00320
-0.59531,1.18257,-1.45907,-1.37964,-0.30603,1.95943,0.00320
-0.59685,1.18266,-1.45885,-1.38047,-0.30542,1.95934,0.00320
-0.59840,1.18275,-1.45863,-1.38130,-0.30482,1.95925,0.00321
-0.59994,1.18284,-1.45841,-1.38211,-0.30423,1.95916,0.00321
-0.60148,1.18293,-1.45819,-1.38290,-0.30365,1.95907,0.00321
-0.60302,1.18301,-1.45798,-1.38369,-0.30308,1.95898,0.00321
-0.60457,1.18310,-1.45777,-1.38446,-0.30252,1.95889,0.00321
-0.60611,1.18318,-1.45757,-1.38522,-0.30196,1.95880,0.00321
-0.60765,1.18327,-1.45736,-1.38596,-0.30142,1.95872,0.00322
-0.60919,1.18335,-1.45717,-1.38670,-0.30089,1.95863,0.00322
-0.61073,1.18343,-1.45697,-1.38742,-0.30036,1.95855,0.00322
-0.61228,1.18351,-1.45677,-1.38813,-0.29985,1.95847,0.00322
-0.61382,1.18359,-1.45658,-1.38882,-0.29934,1.95839,0.00322
-0.61536,1.18367,-1.45640,-1.38951,-0.29884,1.95831,0.00323
-0.61690,1.18375,-1.45621,-1.39019,-0.29835,1.95823,0.00323
-0.61845,1.18382,-1.45603,-1.39085,-0.29787,1.95815,0.00323
-0.61999,1.18390,-1.45585,-1.39150,-0.29739,1.95807,0.00323
-0.62153,1.18397,-1.45567,-1.39215,-0.29693,1.95800,0.00323
-0.62307,1.18404,-1.45550,-1.39278,-0.29647,1.95792,0.00324
-0.62461,1.18412,-1.45533,-1.39340,-0.29602,1.95785,0.00324
-0.62616,1.18419,-1.45516,-1.39401,-0.29557,1.95777,0.00324
-0.62770,1.18426,-1.45499,-1.39461,-0.29514,1.95770,0.00324
-0.62924,1.18433,-1.45483,-1.39521,-0.29471,1.95763,0.00324
-0.63078,1.18439,-1.45468,-1.39574,-0.29432,1.95757,0.00324
-0.63233,1.18445,-1.45451,-1.39638,-0.29385,1.95750,0.00325
-0.63387,1.18452,-1.45434,-1.39702,-0.29338,1.95743,0.00325
-0.63541,1.18458,-1.45417,-1.39764,-0.29293,1.95736,0.00325
-0.63695,1.18465,-1.45401,-1.39825,-0.29248,1.95730,0.00325
-0.63849,1.18471,-1.45384,-1.39886,-0.29203,1.95723,0.00325
-0.64004,1.18477,-1.45368,-1.39945,-0.29160,1.95717,0.00326
-0.64158,1.18483,-1.45353,-1.40004,-0.29117,1.95711,0.00326
-0.64312,1.18486,-1.45344,-1.40036,-0.29093,1.95707,0.00326
-0.64466,1.18494,-1.45322,-1.40130,-0.29022,1.95700,0.00326
-0.64621,1.18501,-1.45299,-1.40221,-0.28953,1.95692,0.00326
-0.64775,1.18508,-1.45277,-1.40312,-0.28885,1.95685,0.00326
-0.64929,1.18514,-1.45256,-1.40401,-0.28818,1.95678,0.00326
-0.65083,1.18521,-1.45235,-1.40488,-0.28752,1.95671,0.00327
-0.65238,1.18528,-1.45214,-1.40574,-0.28687,1.95663,0.00327
-0.65392,1.18535,-1.45193,-1.40659,-0.28623,1.95656,0.00327
-0.65546,1.18541,-1.45173,-1.40742,-0.28561,1.95649,0.00327
-0.65700,1.18548,-1.45153,-1.40824,-0.28499,1.95643,0.00327
-0.65854,1.18554,-1.45133,-1.40904,-0.28438,1.95636,0.00327
-0.66009,1.18560,-1.45113,-1.40983,-0.28379,1.95629,0.00327
-0.66163,1.18567,-1.45094,-1.41061,-0.28320,1.95622,0.00328
-0.66317,1.18573,-1.45075,-1.41137,-0.28263,1.95616,0.00328
-0.66471,1.18579,-1.45057,-1.41213,-0.28206,1.95609,0.00328
-0.66626,1.18585,-1.45039,-1.41287,-0.28150,1.95603,0.00328
-0.66780,1.18591,-1.45021,-1.41359,-0.28096,1.95596,0.00328
-0.66934,1.18597,-1.45003,-1.41431,-0.28042,1.95590,0.00329
-0.67088,1.18603,-1.44985,-1.41501,-0.27989,1.95584,0.00329
-0.67242,1.18609,-1.44968,-1.41571,-0.27937,1.95578,0.00329
-0.67397,1.18614,-1.44951,-1.41639,-0.27886,1.95572,0.00329
-0.67551,1.18620,-1.44934,-1.41706,-0.27835,1.95566,0.00329
-0.67705,1.18625,-1.44918,-1.41771,-0.27786,1.95560,0.00329
-0.67859,1.18631,-1.44902,-1.41836,-0.27737,1.95554,0.00330
-0.68014,1.18636,-1.44886,-1.41900,-0.27690,1.95548,0.00330
-0.68168,1.18642,-1.44870,-1.41963,-0.27643,1.95543,0.00330
-0.68322,1.18647,-1.44854,-1.42024,-0.27596,1.95537,0.00330
-0.68476,1.18652,-1.44839,-1.42085,-0.27551,1.95531,0.00330
-0.68630,1.18658,-1.44824,-1.42144,-0.27506,1.95526,0.00331
-0.68785,1.18663,-1.44809,-1.42203,-0.27462,1.95520,0.00331
-0.68939,1.18668,-1.44794,-1.42261,-0.27419,1.95515,0.00331
-0.69093,1.18671,-1.44786,-1.42295,-0.27393,1.95512,0.00331
-0.69247,1.18678,-1.44770,-1.42355,-0.27350,1.95504,0.00331
-0.69402,1.18685,-1.44754,-1.42413,-0.27307,1.95497,0.00332
-0.69556,1.18692,-1.44739,-1.42471,-0.27264,1.95490,0.00332
-0.69710,1.18693,-1.44736,-1.42480,-0.27258,1.95489,0.00332
-0.69864,1.18705,-1.44713,-1.42567,-0.27194,1.95476,0.00332
-0.70019,1.18717,-1.44690,-1.42653,-0.27131,1.95464,0.00332
-0.70173,1.18729,-1.44667,-1.42738,-0.27069,1.95452,0.00332
-0.70327,1.18740,-1.44645,-1.42821,-0.27008,1.95440,0.00332
-0.70481,1.18752,-1.44623,-1.42903,-0.26949,1.95428,0.00333
-0.70635,1.18763,-1.44601,-1.42984,-0.26890,1.95416,0.00333
-0.70790,1.18774,-1.44580,-1.43063,-0.26832,1.95405,0.00333
-0.70944,1.18785,-1.44559,-1.43141,-0.26775,1.95393,0.00333
-0.71098,1.18796,-1.44538,-1.43217,-0.26720,1.95382,0.00333
-0.71252,1.18807,-1.44518,-1.43293,-0.26665,1.95371,0.00334
-0.71407,1.18818,-1.44497,-1.43367,-0.26611,1.95360,0.00334
-0.71561,1.18828,-1.44478,-1.43440,-0.26558,1.95349,0.00334
-0.71715,1.18838,-1.44458,-1.43511,-0.26505,1.95339,0.00334
-0.71869,1.18848,-1.44439,-1.43582,-0.26454,1.95328,0.00334
-0.72023,1.18858,-1.44420,-1.43651,-0.26404,1.95318,0.00335
-0.72178,1.18868,-1.44401,-1.43719,-0.26354,1.95308,0.00335
-0.72332,1.18878,-1.44383,-1.43786,-0.26305,1.95298,0.00335
-0.72486,1.18888,-1.44365,-1.43852,-0.26257,1.95288,0.00335
-0.72640,1.18897,-1.44347,-1.43917,-0.26210,1.95278,0.00335
-0.72795,1.18906,-1.44330,-1.43981,-0.26164,1.95268,0.00336
-0.72949,1.18916,-1.44312,-1.44043,-0.26118,1.95259,0.00336
-0.73103,1.18925,-1.44295,-1.44105,-0.26073,1.95249,0.00336
-0.73257,1.18934,-1.44279,-1.44166,-0.26029,1.95240,0.00336
-0.73411,1.18943,-1.44262,-1.44226,-0.25986,1.95231,0.00336
-0.73566,1.18951,-1.44246,-1.44284,-0.25943,1.95222,0.00337
-0.73720,1.18960,-1.44230,-1.44342,-0.25902,1.95213,0.00337
-0.73874,1.18963,-1.44224,-1.44365,-0.25885,1.95209,0.00337
-0.74028,1.18972,-1.44208,-1.44424,-0.25842,1.95201,0.00337
-0.74183,1.18980,-1.44192,-1.44481,-0.25800,1.95192,0.00337
-0.74337,1.18984,-1.44184,-1.44511,-0.25778,1.95188,0.00337
-0.74491,1.18994,-1.44166,-1.44575,-0.25732,1.95177,0.00338
-0.74645,1.19004,-1.44148,-1.44638,-0.25686,1.95167,0.00338
-0.74800,1.19014,-1.44131,-1.44700,-0.25641,1.95157,0.00338
-0.74954,1.19023,-1.44114,-1.44762,-0.25597,1.95147,0.00338
-0.75108,1.19033,-1.44098,-1.44822,-0.25553,1.95137,0.00338
-0.75262,1.19042,-1.44081,-1.44881,-0.25510,1.95128,0.00339
-0.75416,1.19051,-1.44065,-1.44939,-0.25468,1.95118,0.00339
-0.75571,1.19059,-1.44050,-1.44993,-0.25429,1.95110,0.00339
-0.75725,1.19068,-1.44031,-1.45075,-0.25367,1.95101,0.00339
-0.75879,1.19076,-1.44012,-1.45155,-0.25306,1.95092,0.00339
-0.76033,1.19084,-1.43993,-1.45234,-0.25246,1.95084,0.00339
-0.76188,1.19092,-1.43974,-1.45312,-0.25187,1.95075,0.00340
-0.76342,1.19100,-1.43956,-1.45388,-0.25129,1.95067,0.00340
-0.76496,1.19108,-1.43938,-1.45463,-0.25072,1.95059,0.00340
-0.76650,1.19115,-1.43920,-1.45537,-0.25016,1.95051,0.00340
-0.76804,1.19123,-1.43902,-1.45610,-0.24961,1.95043,0.00340
-0.76959,1.19130,-1.43885,-1.45682,-0.24907,1.95035,0.00340
-0.77113,1.19138,-1.43868,-1.45752,-0.24853,1.95027,0.00340
-0.77267,1.19145,-1.43851,-1.45821,-0.24801,1.95019,0.00341
-0.77421,1.19152,-1.43835,-1.45889,-0.24749,1.95012,0.00341
-0.77576,1.19159,-1.43818,-1.45956,-0.24699,1.95004,0.00341
-0.77730,1.19166,-1.43802,-1.46021,-0.24649,1.94997,0.00341
-0.77884,1.19173,-1.43786,-1.46086,-0.24600,1.94989,0.00341
-0.78038,1.19180,-1.43771,-1.46150,-0.24552,1.94982,0.00341
-0.78192,1.19187,-1.43756,-1.46212,-0.24505,1.94975,0.00342
-0.78347,1.19194,-1.43740,-1.46274,-0.24458,1.94968,0.00342
-0.78501,1.19200,-1.43726,-1.46334,-0.24413,1.94961,0.00342
-0.78655,1.19207,-1.43711,-1.46394,-0.24368,1.94954,0.00342
-0.78809,1.19213,-1.43697,-1.46452,-0.24324,1.94947,0.00342
-0.78964,1.19219,-1.43682,-1.46510,-0.24280,1.94940,0.00343
-0.79118,1.19226,-1.43668,-1.46566,-0.24238,1.94934,0.00343
-0.79272,1.19229,-1.43662,-1.46589,-0.24220,1.94931,0.00343
-0.79426,1.19239,-1.43645,-1.46653,-0.24173,1.94920,0.00343
-0.79581,1.19249,-1.43628,-1.46716,-0.24127,1.94910,0.00343
-0.79735,1.19258,-1.43612,-1.46778,-0.24082,1.94900,0.00343
-0.79889,1.19268,-1.43595,-1.46839,-0.24037,1.94890,0.00344
-0.80043,1.19278,-1.43579,-1.46899,-0.23993,1.94880,0.00344
-0.80197,1.19287,-1.43563,-1.46958,-0.23950,1.94870,0.00344
-0.80352,1.19296,-1.43547,-1.47016,-0.23908,1.94860,0.00344
-0.80506,1.19305,-1.43532,-1.47073,-0.23866,1.94851,0.00344
-0.80660,1.19309,-1.43526,-1.47096,-0.23849,1.94847,0.00344
-0.80814,1.19318,-1.43510,-1.47154,-0.23807,1.94838,0.00345
-0.80969,1.19327,-1.43495,-1.47211,-0.23765,1.94829,0.00345
-0.81123,1.19331,-1.43488,-1.47239,-0.23744,1.94824,0.00345
-0.81277,1.19340,-1.43472,-1.47297,-0.23701,1.94815,0.00345
-0.81431,1.19348,-1.43457,-1.47354,-0.23659,1.94806,0.00345
-0.81585,1.19348,-1.43453,-1.47380,-0.23638,1.94807,0.00345
-0.81740,1.19308,-1.43467,-1.47413,-0.23590,1.94845,0.00345
-0.81894,1.19270,-1.43481,-1.47445,-0.23544,1.94882,0.00345
-0.82048,1.19232,-1.43495,-1.47477,-0.23498,1.94919,0.00345
-0.82202,1.19194,-1.43508,-1.47508,-0.23454,1.94955,0.00345
-0.82357,1.19158,-1.43521,-1.47539,-0.23410,1.94991,0.00345
-0.82511,1.19122,-1.43534,-1.47569,-0.23366,1.95026,0.00345
-0.82665,1.19086,-1.43547,-1.47598,-0.23324,1.95060,0.00345
-0.82819,1.19051,-1.43560,-1.47627,-0.23282,1.95094,0.00345
-0.82973,1.19017,-1.43572,-1.47656,-0.23241,1.95128,0.00345
-0.83128,1.18983,-1.43584,-1.47684,-0.23201,1.95160,0.00345
-0.83282,1.18950,-1.43596,-1.47711,-0.23161,1.95192,0.00345
-0.83436,1.18918,-1.43608,-1.47738,-0.23122,1.95224,0.00345
-0.83590,1.18886,-1.43619,-1.47764,-0.23084,1.95255,0.00345
-0.83745,1.18879,-1.43622,-1.47769,-0.23076,1.95262,0.00345
-0.83899,1.18841,-1.43637,-1.47792,-0.23038,1.95299,0.00345
-0.84053,1.18805,-1.43652,-1.47815,-0.23000,1.95334,0.00345
-0.84207,1.18768,-1.43666,-1.47837,-0.22963,1.95370,0.00345
-0.84362,1.18733,-1.43681,-1.47858,-0.22927,1.95405,0.00345
-0.84516,1.18697,-1.43695,-1.47879,-0.22891,1.95439,0.00345
-0.84670,1.18656,-1.43713,-1.47897,-0.22856,1.95479,0.00345
-0.84824,1.18617,-1.43730,-1.47915,-0.22820,1.95518,0.00345
-0.84978,1.18577,-1.43747,-1.47932,-0.22786,1.95556,0.00345
-0.85133,1.18539,-1.43764,-1.47949,-0.22752,1.95594,0.00345
-0.85287,1.18501,-1.43780,-1.47966,-0.22719,1.95631,0.00345
-0.85441,1.18485,-1.43787,-1.47972,-0.22705,1.95646,0.00345
-0.85595,1.18442,-1.43807,-1.47985,-0.22672,1.95689,0.00345
-0.85750,1.18400,-1.43827,-1.47998,-0.22639,1.95730,0.00345
-0.85904,1.18358,-1.43846,-1.48010,-0.22607,1.95771,0.00345
-0.86058,1.18317,-1.43865,-1.48023,-0.22575,1.95811,0.00345
-0.86212,1.18277,-1.43883,-1.48035,-0.22544,1.95851,0.00345
-0.86366,1.18249,-1.43896,-1.48043,-0.22523,1.95878,0.00345
-0.86521,1.18205,-1.43917,-1.48053,-0.22492,1.95921,0.00345
-0.86675,1.18163,-1.43937,-1.48062,-0.22462,1.95963,0.00345
-0.86829,1.18121,-1.43957,-1.48071,-0.22433,1.96004,0.00345
-0.86983,1.18080,-1.43977,-1.48080,-0.22404,1.96044,0.00345
-0.87138,1.18072,-1.43981,-1.48082,-0.22398,1.96052,0.00345
-0.87292,1.18027,-1.44003,-1.48089,-0.22369,1.96096,0.00345
-0.87446,1.17984,-1.44024,-1.48095,-0.22340,1.96139,0.00345
-0.87600,1.17941,-1.44045,-1.48102,-0.22312,1.96181,0.00345
-0.87754,1.17899,-1.44066,-1.48108,-0.22285,1.96222,0.00345
-0.87909,1.17890,-1.44071,-1.48110,-0.22279,1.96231,0.00345
-0.88063,1.17840,-1.44095,-1.48116,-0.22247,1.96280,0.00345
-0.88217,1.17791,-1.44120,-1.48123,-0.22216,1.96328,0.00345
-0.88371,1.17743,-1.44144,-1.48129,-0.22185,1.96375,0.00345
-0.88526,1.17696,-1.44167,-1.48135,-0.22155,1.96421,0.00345
-0.88680,1.17650,-1.44191,-1.48141,-0.22126,1.96467,0.00345
-0.88834,1.17605,-1.44213,-1.48147,-0.22097,1.96511,0.00345
-0.88988,1.17560,-1.44236,-1.48153,-0.22068,1.96555,0.00345
-0.89143,1.17516,-1.44258,-1.48158,-0.22040,1.96599,0.00345
-0.89297,1.17473,-1.44280,-1.48164,-0.22013,1.96641,0.00345
-0.89451,1.17431,-1.44301,-1.48169,-0.21986,1.96683,0.00345
-0.89605,1.17407,-1.44313,-1.48170,-0.21972,1.96706,0.00345
-0.89759,1.17344,-1.44348,-1.48164,-0.21943,1.96769,0.00345
-0.89914,1.17281,-1.44382,-1.48158,-0.21914,1.96830,0.00345
-0.90068,1.17220,-1.44416,-1.48152,-0.21886,1.96891,0.00345
-0.90222,1.17159,-1.44449,-1.48146,-0.21859,1.96951,0.00344
-0.90376,1.17100,-1.44482,-1.48140,-0.21832,1.97009,0.00344
-0.90531,1.17041,-1.44514,-1.48134,-0.21805,1.97067,0.00344
-0.90685,1.16984,-1.44546,-1.48128,-0.21779,1.97124,0.00344
-0.90839,1.16927,-1.44577,-1.48122,-0.21753,1.97179,0.00344
-0.90993,1.16872,-1.44608,-1.48116,-0.21728,1.97234,0.00344
-0.91147,1.16817,-1.44638,-1.48110,-0.21704,1.97288,0.00344
-0.91302,1.16764,-1.44667,-1.48104,-0.21679,1.97341,0.00344
-0.91456,1.16711,-1.44697,-1.48099,-0.21656,1.97393,0.00344
-0.91610,1.16659,-1.44725,-1.48093,-0.21632,1.97444,0.00344
-0.91764,1.16608,-1.44754,-1.48087,-0.21610,1.97495,0.00344
-0.91919,1.16558,-1.44781,-1.48081,-0.21587,1.97544,0.00344
-0.92073,1.16509,-1.44809,-1.48076,-0.21565,1.97593,0.00344
-0.92227,1.16460,-1.44836,-1.48070,-0.21543,1.97641,0.00344
-0.92381,1.16413,-1.44862,-1.48064,-0.21522,1.97688,0.00343
-0.92535,1.16366,-1.44888,-1.48059,-0.21501,1.97734,0.00343
-0.92690,1.16320,-1.44914,-1.48053,-0.21481,1.97780,0.00343
-0.92844,1.16275,-1.44939,-1.48048,-0.21461,1.97825,0.00343
-0.92998,1.16237,-1.44960,-1.48042,-0.21445,1.97862,0.00343
-0.93152,1.16171,-1.44999,-1.48025,-0.21422,1.97927,0.00343
-0.93307,1.16107,-1.45037,-1.48009,-0.21401,1.97991,0.00343
-0.93461,1.16043,-1.45074,-1.47992,-0.21379,1.98054,0.00343
-0.93615,1.15980,-1.45111,-1.47976,-0.21358,1.98116,0.00343
-0.93769,1.15919,-1.45147,-1.47960,-0.21338,1.98177,0.00343
-0.93924,1.15858,-1.45183,-1.47944,-0.21317,1.98237,0.00343
-0.94078,1.15799,-1.45218,-1.47929,-0.21298,1.98296,0.00343
-0.94232,1.15741,-1.45253,-1.47913,-0.21278,1.98353,0.00342
-0.94386,1.15683,-1.45287,-1.47898,-0.21259,1.98410,0.00342
-0.94540,1.15627,-1.45320,-1.47883,-0.21240,1.98466,0.00342
-0.94695,1.15571,-1.45353,-1.47868,-0.21222,1.98521,0.00342
-0.94849,1.15517,-1.45385,-1.47853,-0.21204,1.98575,0.00342
-0.95003,1.15463,-1.45417,-1.47838,-0.21186,1.98628,0.00342
-0.95157,1.15411,-1.45448,-1.47824,-0.21169,1.98681,0.00342
-0.95312,1.15359,-1.45479,-1.47810,-0.21152,1.98732,0.00342
-0.95466,1.15308,-1.45509,-1.47796,-0.21136,1.98783,0.00342
-0.95620,1.15258,-1.45539,-1.47782,-0.21119,1.98832,0.00342
-0.95774,1.15209,-1.45569,-1.47768,-0.21103,1.98881,0.00342
-0.95928,1.15160,-1.45597,-1.47755,-0.21088,1.98929,0.00342
-0.96083,1.15113,-1.45626,-1.47741,-0.21072,1.98976,0.00342
-0.96237,1.15066,-1.45654,-1.47728,-0.21057,1.99023,0.00342
-0.96391,1.15020,-1.45681,-1.47715,-0.21042,1.99069,0.00341
-0.96545,1.14979,-1.45706,-1.47703,-0.21029,1.99110,0.00341
-0.96700,1.14929,-1.45736,-1.47687,-0.21014,1.99160,0.00341
-0.96854,1.14879,-1.45766,-1.47671,-0.20999,1.99209,0.00341
-0.97008,1.14830,-1.45796,-1.47656,-0.20985,1.99257,0.00341
-0.97162,1.14783,-1.45825,-1.47641,-0.20971,1.99305,0.00341
-0.97316,1.14736,-1.45854,-1.47626,-0.20957,1.99352,0.00341
-0.97471,1.14689,-1.45882,-1.47611,-0.20943,1.99398,0.00341
-0.97625,1.14644,-1.45910,-1.47596,-0.20930,1.99443,0.00341
-0.97779,1.14630,-1.45918,-1.47591,-0.20926,1.99457,0.00341
-0.97933,1.14579,-1.45949,-1.47574,-0.20912,1.99507,0.00341
-0.98088,1.14530,-1.45980,-1.47556,-0.20898,1.99557,0.00341
-0.98242,1.14481,-1.46010,-1.47539,-0.20885,1.99605,0.00341
-0.98396,1.14433,-1.46039,-1.47522,-0.20872,1.99653,0.00341
-0.98550,1.14386,-1.46068,-1.47505,-0.20860,1.99700,0.00341
-0.98705,1.14340,-1.46097,-1.47489,-0.20847,1.99746,0.00341
-0.98859,1.14294,-1.46125,-1.47473,-0.20835,1.99791,0.00341
-0.99013,1.14280,-1.46134,-1.47468,-0.20831,1.99805,0.00341
-0.99167,1.14230,-1.46165,-1.47448,-0.20819,1.99855,0.00340
-0.99321,1.14181,-1.46196,-1.47429,-0.20806,1.99904,0.00340
-0.99476,1.14132,-1.46227,-1.47411,-0.20794,1.99953,0.00340
-0.99630,1.14084,-1.46257,-1.47392,-0.20782,2.00000,0.00340
-0.99784,1.14037,-1.46286,-1.47374,-0.20770,2.00047,0.00340
-0.99938,1.13991,-1.46315,-1.47356,-0.20759,2.00093,0.00340
-1.00093,1.13945,-1.46344,-1.47338,-0.20748,2.00139,0.00340
-1.00247,1.13927,-1.46355,-1.47331,-0.20743,2.00157,0.00340
-1.00401,1.13881,-1.46384,-1.47313,-0.20732,2.00203,0.00340
-1.00555,1.13835,-1.46413,-1.47295,-0.20721,2.00248,0.00340
-1.00709,1.13807,-1.46431,-1.47283,-0.20714,2.00277,0.00340
-1.00864,1.13745,-1.46471,-1.47260,-0.20698,2.00338,0.00340
-1.01018,1.13684,-1.46509,-1.47238,-0.20681,2.00399,0.00340
-1.01172,1.13624,-1.46548,-1.47215,-0.20666,2.00458,0.00339
-1.01326,1.13565,-1.46585,-1.47193,-0.20650,2.00517,0.00339
-1.01481,1.13507,-1.46622,-1.47171,-0.20635,2.00574,0.00339
-1.01635,1.13450,-1.46658,-1.47150,-0.20620,2.00631,0.00339
-1.01789,1.13394,-1.46694,-1.47128,-0.20605,2.00687,0.00339
-1.01943,1.13340,-1.46729,-1.47107,-0.20590,2.00741,0.00339
-1.02097,1.13286,-1.46763,-1.47087,-0.20576,2.00795,0.00339
-1.02252,1.13232,-1.46797,-1.47066,-0.20562,2.00848,0.00339
-1.02406,1.13180,-1.46831,-1.47046,-0.20549,2.00900,0.00338
-1.02560,1.13129,-1.46864,-1.47026,-0.20536,2.00951,0.00338
-1.02714,1.13079,-1.46896,-1.47007,-0.20523,2.01001,0.00338
-1.02869,1.13029,-1.46928,-1.46987,-0.20510,2.01050,0.00338
-1.03023,1.12980,-1.46959,-1.46968,-0.20497,2.01099,0.00338
-1.03177,1.12933,-1.46990,-1.46949,-0.20485,2.01147,0.00338
-1.03331,1.12886,-1.47020,-1.46931,-0.20473,2.01193,0.00338
-1.03486,1.12839,-1.47050,-1.46913,-0.20461,2.01240,0.00338
-1.03640,1.12794,-1.47079,-1.46894,-0.20450,2.01285,0.00338
-1.03794,1.12749,-1.47108,-1.46877,-0.20438,2.01330,0.00338
-1.03948,1.12735,-1.47117,-1.46871,-0.20435,2.01343,0.00338
-1.04102,1.12686,-1.47149,-1.46850,-0.20423,2.01393,0.00338
-1.04257,1.12637,-1.47181,-1.46830,-0.20412,2.01441,0.00337
-1.04411,1.12589,-1.47212,-1.46809,-0.20401,2.01489,0.00337
-1.04565,1.12542,-1.47243,-1.46790,-0.20390,2.01536,0.00337
-1.04719,1.12496,-1.47273,-1.46770,-0.20379,2.01582,0.00337
-1.04874,1.12451,-1.47303,-1.46750,-0.20368,2.01627,0.00337
-1.05028,1.12406,-1.47332,-1.46731,-0.20358,2.01672,0.00337
-1.05182,1.12387,-1.47344,-1.46723,-0.20353,2.01691,0.00337
-1.05336,1.12332,-1.47380,-1.46700,-0.20340,2.01745,0.00337
-1.05490,1.12278,-1.47416,-1.46677,-0.20327,2.01799,0.00337
-1.05645,1.12225,-1.47451,-1.46655,-0.20314,2.01853,0.00337
-1.05799,1.12172,-1.47486,-1.46633,-0.20302,2.01905,0.00336
-1.05953,1.12121,-1.47520,-1.46611,-0.20289,2.01956,0.00336
-1.06107,1.12070,-1.47553,-1.46589,-0.20277,2.02006,0.00336
-1.06262,1.12021,-1.47586,-1.46568,-0.20265,2.02056,0.00336
-1.06416,1.11972,-1.47618,-1.46547,-0.20254,2.02105,0.00336
-1.06570,1.11924,-1.47650,-1.46526,-0.20242,2.02153,0.00336
-1.06724,1.11876,-1.47682,-1.46505,-0.20231,2.02200,0.00336
-1.06878,1.11830,-1.47712,-1.46485,-0.20220,2.02246,0.00336
-1.07033,1.11784,-1.47743,-1.46465,-0.20210,2.02292,0.00336
-1.07187,1.11740,-1.47772,-1.46446,-0.20199,2.02337,0.00336
-1.07341,1.11695,-1.47802,-1.46426,-0.20189,2.02381,0.00335
-1.07495,1.11690,-1.47805,-1.46424,-0.20188,2.02386,0.00335
-1.07650,1.11635,-1.47842,-1.46398,-0.20177,2.02441,0.00335
-1.07804,1.11581,-1.47879,-1.46373,-0.20165,2.02494,0.00335
-1.07958,1.11529,-1.47914,-1.46348,-0.20155,2.02547,0.00335
-1.08112,1.11477,-1.47949,-1.46323,-0.20144,2.02599,0.00335
-1.08267,1.11426,-1.47984,-1.46299,-0.20133,2.02649,0.00335
-1.08421,1.11375,-1.48018,-1.46275,-0.20123,2.02700,0.00335
-1.08575,1.11326,-1.48051,-1.46251,-0.20113,2.02749,0.00335
-1.08729,1.11278,-1.48084,-1.46228,-0.20104,2.02797,0.00334
-1.08883,1.11230,-1.48116,-1.46205,-0.20094,2.02845,0.00334
-1.09038,1.11183,-1.48148,-1.46182,-0.20085,2.02891,0.00334
-1.09192,1.11137,-1.48179,-1.46160,-0.20075,2.02937,0.00334
-1.09346,1.11092,-1.48210,-1.46138,-0.20066,2.02983,0.00334
-1.09500,1.11047,-1.48240,-1.46116,-0.20058,2.03027,0.00334
-1.09655,1.11003,-1.48270,-1.46095,-0.20049,2.03071,0.00334
-1.09809,1.10954,-1.48303,-1.46075,-0.20036,2.03120,0.00334
-1.09963,1.10907,-1.48335,-1.46055,-0.20023,2.03168,0.00334
-1.10117,1.10859,-1.48367,-1.46035,-0.20010,2.03215,0.00334
-1.10271,1.10813,-1.48398,-1.46016,-0.19998,2.03261,0.00333
-1.10426,1.10768,-1.48429,-1.45997,-0.19986,2.03306,0.00333
-1.10580,1.10723,-1.48459,-1.45978,-0.19975,2.03351,0.00333
-1.10734,1.10679,-1.48489,-1.45960,-0.19963,2.03395,0.00333
-1.10888,1.10643,-1.48514,-1.45944,-0.19954,2.03431,0.00333
-1.11043,1.10583,-1.48555,-1.45916,-0.19941,2.03491,0.00333
-1.11197,1.10525,-1.48595,-1.45888,-0.19928,2.03549,0.00333
-1.11351,1.10467,-1.48635,-1.45861,-0.19916,2.03606,0.00332
-1.11505,1.10411,-1.48674,-1.45834,-0.19904,2.03662,0.00332
-1.11659,1.10355,-1.48712,-1.45807,-0.19892,2.03718,0.00332
-1.11814,1.10300,-1.48750,-1.45781,-0.19880,2.03772,0.00332
-1.11968,1.10247,-1.48787,-1.45755,-0.19868,2.03826,0.00332
-1.12122,1.10194,-1.48824,-1.45729,-0.19857,2.03878,0.00332
-1.12276,1.10142,-1.48860,-1.45704,-0.19846,2.03930,0.00332
-1.12431,1.10091,-1.48895,-1.45679,-0.19836,2.03981,0.00331
-1.12585,1.10041,-1.48930,-1.45654,-0.19825,2.04031,0.00331
-1.12739,1.09992,-1.48964,-1.45630,-0.19815,2.04080,0.00331
-1.12893,1.09944,-1.48998,-1.45606,-0.19805,2.04128,0.00331
-1.13048,1.09896,-1.49031,-1.45583,-0.19795,2.04175,0.00331
-1.13202,1.09849,-1.49064,-1.45560,-0.19785,2.04222,0.00331
-1.13356,1.09804,-1.49096,-1.45537,-0.19776,2.04268,0.00331
-1.13510,1.09758,-1.49127,-1.45514,-0.19767,2.04313,0.00331
-1.13664,1.09714,-1.49158,-1.45492,-0.19758,2.04357,0.00331
-1.13819,1.09670,-1.49189,-1.45470,-0.19749,2.04401,0.00330
-1.13973,1.09636,-1.49213,-1.45453,-0.19742,2.04436,0.00330
-1.14127,1.09588,-1.49247,-1.45430,-0.19731,2.04484,0.00330
-1.14281,1.09541,-1.49279,-1.45408,-0.19720,2.04531,0.00330
-1.14436,1.09494,-1.49312,-1.45386,-0.19709,2.04577,0.00330
-1.14590,1.09449,-1.49344,-1.45364,-0.19699,2.04622,0.00330
-1.14744,1.09404,-1.49375,-1.45343,-0.19688,2.04667,0.00330
-1.14898,1.09360,-1.49406,-1.45322,-0.19679,2.04711,0.00330
-1.15052,1.09317,-1.49436,-1.45301,-0.19669,2.04754,0.00330
-1.15207,1.09290,-1.49455,-1.45288,-0.19662,2.04781,0.00330
-1.15361,1.09231,-1.49497,-1.45262,-0.19647,2.04840,0.00329
-1.15515,1.09173,-1.49537,-1.45236,-0.19632,2.04897,0.00329
-1.15669,1.09117,-1.49577,-1.45210,-0.19618,2.04954,0.00329
-1.15824,1.09061,-1.49616,-1.45185,-0.19604,2.05009,0.00329
-1.15978,1.09006,-1.49655,-1.45160,-0.19590,2.05064,0.00329
-1.16132,1.08952,-1.49693,-1.45136,-0.19576,2.05118,0.00328
-1.16286,1.08899,-1.49731,-1.45112,-0.19562,2.05170,0.00328
-1.16440,1.08847,-1.49767,-1.45088,-0.19549,2.05222,0.00328
-1.16595,1.08796,-1.49804,-1.45064,-0.19537,2.05273,0.00328
-1.16749,1.08746,-1.49839,-1.45041,-0.19524,2.05323,0.00328
-1.16903,1.08696,-1.49874,-1.45018,-0.19512,2.05373,0.00328
-1.17057,1.08648,-1.49909,-1.44995,-0.19500,2.05421,0.00328
-1.17212,1.08600,-1.49943,-1.44973,-0.19488,2.05469,0.00327
-1.17366,1.08553,-1.49976,-1.44951,-0.19476,2.05516,0.00327
-1.17520,1.08507,-1.50009,-1.44930,-0.19465,2.05562,0.00327
-1.17674,1.08462,-1.50041,-1.44908,-0.19454,2.05607,0.00327
-1.17829,1.08418,-1.50073,-1.44887,-0.19443,2.05651,0.00327
-1.17983,1.08374,-1.50104,-1.44866,-0.19432,2.05695,0.00327
-1.18137,1.08331,-1.50135,-1.44846,-0.19422,2.05738,0.00327
-1.18291,1.08289,-1.50165,-1.44826,-0.19412,2.05780,0.00327
-1.18445,1.08284,-1.50168,-1.44824,-0.19411,2.05785,0.00327
-1.18600,1.08241,-1.50199,-1.44803,-0.19401,2.05828,0.00327
-1.18754,1.08199,-1.50229,-1.44782,-0.19391,2.05870,0.00326
-1.18908,1.08177,-1.50245,-1.44771,-0.19386,2.05892,0.00326
-1.19062,1.08130,-1.50279,-1.44747,-0.19375,2.05939,0.00326
-1.19217,1.08084,-1.50312,-1.44724,-0.19365,2.05985,0.00326
-1.19371,1.08039,-1.50345,-1.44701,-0.19356,2.06030,0.00326
-1.19525,1.07994,-1.50377,-1.44678,-0.19346,2.06075,0.00326
-1.19679,1.07951,-1.50409,-1.44655,-0.19337,2.06118,0.00326
-1.19833,1.07908,-1.50440,-1.44633,-0.19328,2.06161,0.00326
-1.19988,1.07865,-1.50471,-1.44611,-0.19319,2.06204,0.00326
-1.20142,1.07851,-1.50481,-1.44604,-0.19315,2.06218,0.00326
-1.20296,1.07793,-1.50523,-1.44576,-0.19301,2.06275,0.00325
-1.20450,1.07736,-1.50564,-1.44549,-0.19287,2.06332,0.00325
-1.20605,1.07681,-1.50605,-1.44522,-0.19273,2.06388,0.00325
-1.20759,1.07626,-1.50645,-1.44495,-0.19260,2.06442,0.00325
-1.20913,1.07572,-1.50684,-1.44469,-0.19246,2.06496,0.00325
-1.21067,1.07519,-1.50723,-1.44443,-0.19234,2.06549,0.00325
-1.21221,1.07467,-1.50761,-1.44418,-0.19221,2.06601,0.00324
-1.21376,1.07416,-1.50798,-1.44392,-0.19208,2.06652,0.00324
-1.21530,1.07365,-1.50835,-1.44368,-0.19196,2.06702,0.00324
-1.21684,1.07316,-1.50871,-1.44343,-0.19185,2.06751,0.00324
-1.21838,1.07267,-1.50906,-1.44319,-0.19173,2.06800,0.00324
-1.21993,1.07220,-1.50941,-1.44295,-0.19162,2.06847,0.00324
-1.22147,1.07173,-1.50976,-1.44272,-0.19150,2.06894,0.00324
-1.22301,1.07127,-1.51010,-1.44249,-0.19140,2.06940,0.00323
-1.22455,1.07082,-1.51043,-1.44226,-0.19129,2.06985,0.00323
-1.22610,1.07037,-1.51076,-1.44203,-0.19118,2.07030,0.00323
-1.22764,1.06993,-1.51108,-1.44181,-0.19108,2.07074,0.00323
-1.22918,1.06950,-1.51140,-1.44159,-0.19098,2.07117,0.00323
-1.23072,1.06908,-1.51171,-1.44138,-0.19088,2.07159,0.00323
-1.23226,1.06865,-1.51202,-1.44116,-0.19078,2.07202,0.00323
-1.23381,1.06812,-1.51242,-1.44091,-0.19064,2.07255,0.00323
-1.23535,1.06759,-1.51280,-1.44066,-0.19050,2.07307,0.00322
-1.23689,1.06708,-1.51318,-1.44042,-0.19036,2.07359,0.00322
-1.23843,1.06657,-1.51356,-1.44018,-0.19022,2.07409,0.00322
-1.23998,1.06607,-1.51393,-1.43995,-0.19008,2.07459,0.00322
-1.24152,1.06558,-1.51429,-1.43971,-0.18995,2.07508,0.00322
-1.24306,1.06510,-1.51465,-1.43948,-0.18983,2.07556,0.00322
-1.24460,1.06463,-1.51500,-1.43926,-0.18970,2.07603,0.00322
-1.24614,1.06416,-1.51534,-1.43903,-0.18958,2.07650,0.00321
-1.24769,1.06371,-1.51568,-1.43881,-0.18946,2.07695,0.00321
-1.24923,1.06326,-1.51602,-1.43860,-0.18934,2.07740,0.00321
-1.25077,1.06282,-1.51634,-1.43838,-0.18922,2.07784,0.00321
-1.25231,1.06238,-1.51667,-1.43817,-0.18911,2.07828,0.00321
-1.25386,1.06196,-1.51698,-1.43796,-0.18900,2.07870,0.00321
-1.25540,1.06154,-1.51730,-1.43776,-0.18889,2.07912,0.00321
-1.25694,1.06113,-1.51760,-1.43756,-0.18878,2.07953,0.00321
-1.25848,1.06102,-1.51768,-1.43750,-0.18876,2.07964,0.00321
-1.26002,1.06037,-1.51817,-1.43718,-0.18859,2.08029,0.00320
-1.26157,1.05972,-1.51866,-1.43686,-0.18842,2.08093,0.00320
-1.26311,1.05909,-1.51913,-1.43654,-0.18826,2.08155,0.00320
-1.26465,1.05847,-1.51960,-1.43623,-0.18811,2.08217,0.00320
-1.26619,1.05787,-1.52006,-1.43592,-0.18795,2.08277,0.00319
-1.26774,1.05727,-1.52052,-1.43561,-0.18780,2.08337,0.00319
-1.26928,1.05668,-1.52096,-1.43531,-0.18766,2.08395,0.00319
-1.27082,1.05610,-1.52140,-1.43502,-0.18751,2.08453,0.00319
-1.27236,1.05554,-1.52183,-1.43473,-0.18737,2.08509,0.00319
-1.27390,1.05498,-1.52226,-1.43444,-0.18723,2.08565,0.00319
-1.27545,1.05443,-1.52267,-1.43415,-0.18710,2.08620,0.00318
-1.27699,1.05389,-1.52308,-1.43387,-0.18697,2.08673,0.00318
-1.27853,1.05336,-1.52349,-1.43360,-0.18684,2.08726,0.00318
-1.28007,1.05285,-1.52388,-1.43333,-0.18671,2.08778,0.00318
-1.28162,1.05234,-1.52427,-1.43306,-0.18659,2.08829,0.00318
-1.28316,1.05183,-1.52466,-1.43279,-0.18647,2.08879,0.00318
-1.28470,1.05134,-1.52503,-1.43253,-0.18635,2.08928,0.00317
-1.28624,1.05086,-1.52540,-1.43228,-0.18623,2.08976,0.00317
-1.28779,1.05038,-1.52577,-1.43202,-0.18612,2.09024,0.00317
-1.28933,1.04991,-1.52613,-1.43177,-0.18601,2.09070,0.00317
-1.29087,1.04946,-1.52648,-1.43153,-0.18590,2.09116,0.00317
-1.29241,1.04900,-1.52683,-1.43128,-0.18579,2.09161,0.00317
-1.29395,1.04856,-1.52717,-1.43104,-0.18569,2.09206,0.00317
-1.29550,1.04813,-1.52751,-1.43081,-0.18559,2.09249,0.00317
-1.29704,1.04770,-1.52783,-1.43058,-0.18549,2.09292,0.00317
-1.29858,1.04728,-1.52816,-1.43035,-0.18539,2.09334,0.00316
-1.30012,1.04686,-1.52848,-1.43012,-0.18530,2.09376,0.00316
-1.30167,1.04646,-1.52879,-1.42990,-0.18520,2.09416,0.00316
-1.30321,1.04629,-1.52892,-1.42981,-0.18517,2.09433,0.00316
-1.30475,1.04586,-1.52925,-1.42956,-0.18507,2.09476,0.00316
-1.30629,1.04544,-1.52958,-1.42932,-0.18498,2.09518,0.00316
-1.30783,1.04502,-1.52991,-1.42909,-0.18489,2.09560,0.00316
-1.30938,1.04461,-1.53023,-1.42885,-0.18480,2.09601,0.00316
-1.31092,1.04419,-1.53055,-1.42862,-0.18471,2.09643,0.00316
-1.31246,1.04360,-1.53101,-1.42832,-0.18455,2.09702,0.00316
-1.31400,1.04302,-1.53146,-1.42803,-0.18439,2.09759,0.00315
-1.31555,1.04246,-1.53190,-1.42773,-0.18424,2.09816,0.00315
-1.31709,1.04190,-1.53234,-1.42745,-0.18409,2.09872,0.00315
-1.31863,1.04135,-1.53277,-1.42717,-0.18394,2.09926,0.00315
-1.32017,1.04081,-1.53319,-1.42689,-0.18380,2.09980,0.00315
-1.32171,1.04028,-1.53360,-1.42661,-0.18366,2.10033,0.00314
-1.32326,1.03976,-1.53401,-1.42634,-0.18352,2.10084,0.00314
-1.32480,1.03925,-1.53441,-1.42608,-0.18339,2.10135,0.00314
-1.32634,1.03875,-1.53480,-1.42581,-0.18325,2.10185,0.00314
-1.32788,1.03826,-1.53519,-1.42555,-0.18312,2.10235,0.00314
-1.32943,1.03777,-1.53557,-1.42530,-0.18300,2.10283,0.00314
-1.33097,1.03730,-1.53594,-1.42504,-0.18287,2.10331,0.00314
-1.33251,1.03683,-1.53631,-1.42480,-0.18275,2.10377,0.00313
-1.33405,1.03637,-1.53667,-1.42455,-0.18264,2.10423,0.00313
-1.33560,1.03592,-1.53703,-1.42431,-0.18252,2.10468,0.00313
-1.33714,1.03548,-1.53738,-1.42407,-0.18241,2.10513,0.00313
-1.33868,1.03504,-1.53772,-1.42384,-0.18230,2.10556,0.00313
-1.34022,1.03461,-1.53806,-1.42360,-0.18219,2.10599,0.00313
-1.34176,1.03419,-1.53840,-1.42338,-0.18208,2.10641,0.00313
-1.34331,1.03378,-1.53872,-1.42315,-0.18198,2.10683,0.00313
-1.34485,1.03337,-1.53904,-1.42293,-0.18188,2.10723,0.00313
-1.34639,1.03297,-1.53936,-1.42271,-0.18178,2.10763,0.00312
-1.34793,1.03273,-1.53955,-1.42258,-0.18172,2.10787,0.00312
-1.34948,1.03233,-1.53987,-1.42235,-0.18162,2.10828,0.00312
-1.35102,1.03193,-1.54019,-1.42213,-0.18152,2.10868,0.00312
-1.35256,1.03172,-1.54035,-1.42201,-0.18147,2.10889,0.00312
-1.35410,1.03121,-1.54076,-1.42175,-0.18133,2.10939,0.00312
-1.35564,1.03071,-1.54116,-1.42149,-0.18119,2.10989,0.00312
-1.35719,1.03022,-1.54155,-1.42123,-0.18106,2.11038,0.00312
-1.35873,1.02974,-1.54193,-1.42098,-0.18092,2.11086,0.00312
-1.36027,1.02926,-1.54231,-1.42073,-0.18079,2.11134,0.00311
-1.36181,1.02880,-1.54269,-1.42048,-0.18066,2.11180,0.00311
-1.36336,1.02834,-1.54305,-1.42024,-0.18054,2.11226,0.00311
-1.36490,1.02789,-1.54341,-1.42000,-0.18042,2.11271,0.00311
-1.36644,1.02745,-1.54377,-1.41976,-0.18030,2.11315,0.00311
-1.36798,1.02702,-1.54411,-1.41953,-0.18018,2.11358,0.00311
-1.36952,1.02659,-1.54446,-1.41930,-0.18007,2.11401,0.00311
-1.37107,1.02617,-1.54479,-1.41908,-0.17995,2.11443,0.00311
-1.37261,1.02576,-1.54512,-1.41885,-0.17985,2.11484,0.00310
-1.37415,1.02535,-1.54545,-1.41863,-0.17974,2.11525,0.00310
-1.37569,1.02496,-1.54577,-1.41842,-0.17963,2.11564,0.00310
-1.37724,1.02457,-1.54608,-1.41820,-0.17953,2.11604,0.00310
-1.37878,1.02452,-1.54612,-1.41818,-0.17952,2.11608,0.00310
-1.38032,1.02407,-1.54649,-1.41791,-0.17941,2.11653,0.00310
-1.38186,1.02363,-1.54685,-1.41766,-0.17931,2.11697,0.00310
-1.38341,1.02319,-1.54720,-1.41740,-0.17921,2.11741,0.00310
-1.38495,1.02276,-1.54755,-1.41715,-0.17911,2.11784,0.00310
-1.38649,1.02234,-1.54789,-1.41690,-0.17901,2.11826,0.00310
-1.38803,1.02193,-1.54823,-1.41666,-0.17892,2.11867,0.00310
-1.38957,1.02152,-1.54856,-1.41642,-0.17883,2.11908,0.00309
-1.39112,1.02112,-1.54889,-1.41618,-0.17874,2.11948,0.00309
-1.39266,1.02073,-1.54921,-1.41595,-0.17865,2.11987,0.00309
-1.39420,1.02057,-1.54934,-1.41585,-0.17861,2.12003,0.00309
-1.39574,1.02012,-1.54970,-1.41562,-0.17848,2.12048,0.00309
-1.39729,1.01968,-1.55006,-1.41538,-0.17835,2.12092,0.00309
-1.39883,1.01924,-1.55042,-1.41515,-0.17822,2.12136,0.00309
-1.40037,1.01881,-1.55077,-1.41493,-0.17810,2.12178,0.00309
-1.40191,1.01839,-1.55111,-1.41470,-0.17798,2.12220,0.00309
-1.40345,1.01798,-1.55145,-1.41448,-0.17786,2.12262,0.00308
-1.40500,1.01758,-1.55178,-1.41426,-0.17775,2.12302,0.00308
-1.40654,1.01718,-1.55210,-1.41405,-0.17764,2.12342,0.00308
-1.40808,1.01679,-1.55242,-1.41384,-0.17753,2.12381,0.00308
-1.40962,1.01640,-1.55274,-1.41363,-0.17742,2.12420,0.00308
-1.41117,1.01601,-1.55306,-1.41341,-0.17731,2.12459,0.00308
-1.41271,1.01562,-1.55338,-1.41319,-0.17721,2.12498,0.00308
-1.41425,1.01546,-1.55351,-1.41311,-0.17717,2.12514,0.00308
-1.41579,1.01507,-1.55383,-1.41291,-0.17704,2.12553,0.00308
-1.41733,1.01468,-1.55415,-1.41271,-0.17692,2.12592,0.00308
-1.41888,1.01433,-1.55443,-1.41253,-0.17682,2.12627,0.00308
-1.42042,1.01390,-1.55478,-1.41232,-0.17668,2.12670,0.00307
-1.42196,1.01348,-1.55513,-1.41211,-0.17654,2.12712,0.00307
-1.42350,1.01307,-1.55546,-1.41190,-0.17641,2.12753,0.00307
-1.42505,1.01267,-1.55580,-1.41170,-0.17628,2.12793,0.00307
-1.42659,1.01227,-1.55612,-1.41150,-0.17615,2.12833,0.00307
-1.42813,1.01188,-1.55644,-1.41130,-0.17603,2.12872,0.00307
-1.42967,1.01150,-1.55676,-1.41110,-0.17591,2.12910,0.00307
-1.43122,1.01131,-1.55692,-1.41101,-0.17584,2.12929,0.00307
-1.43276,1.01108,-1.55710,-1.41091,-0.17576,2.12952,0.00307
-1.43430,1.01069,-1.55742,-1.41073,-0.17562,2.12991,0.00306
-1.43584,1.01031,-1.55773,-1.41055,-0.17549,2.13029,0.00306
-1.43738,1.01016,-1.55785,-1.41048,-0.17543,2.13044,0.00306
-1.43893,1.00998,-1.55799,-1.41046,-0.17531,2.13062,0.00306
-1.44047,1.01005,-1.55792,-1.41065,-0.17519,2.13056,0.00306
-1.44201,1.01066,-1.55728,-1.41206,-0.17444,2.12995,0.00306
-1.44355,1.01127,-1.55666,-1.41344,-0.17369,2.12936,0.00306
-1.44510,1.01186,-1.55604,-1.41480,-0.17296,2.12878,0.00306
-1.44664,1.01245,-1.55543,-1.41613,-0.17224,2.12820,0.00306
-1.44818,1.01302,-1.55483,-1.41745,-0.17153,2.12764,0.00306
-1.44972,1.01359,-1.55425,-1.41874,-0.17083,2.12708,0.00306
-1.45126,1.01415,-1.55367,-1.42001,-0.17015,2.12653,0.00306
-1.45281,1.01470,-1.55310,-1.42126,-0.16947,2.12599,0.00306
-1.45435,1.01524,-1.55254,-1.42249,-0.16881,2.12546,0.00306
-1.45589,1.01578,-1.55199,-1.42370,-0.16815,2.12494,0.00306
-1.45743,1.01630,-1.55145,-1.42489,-0.16751,2.12442,0.00306
-1.45898,1.01682,-1.55092,-1.42606,-0.16688,2.12391,0.00306
-1.46052,1.01733,-1.55039,-1.42721,-0.16626,2.12341,0.00306
-1.46206,1.01783,-1.54988,-1.42834,-0.16565,2.12292,0.00306
-1.46360,1.01832,-1.54937,-1.42945,-0.16505,2.12243,0.00306
-1.46514,1.01880,-1.54887,-1.43055,-0.16446,2.12195,0.00306
-1.46669,1.01928,-1.54838,-1.43162,-0.16388,2.12148,0.00306
-1.46823,1.01975,-1.54790,-1.43268,-0.16331,2.12102,0.00306
-1.46977,1.02021,-1.54743,-1.43372,-0.16275,2.12056,0.00306
-1.47131,1.02067,-1.54696,-1.43475,-0.16219,2.12011,0.00307
-1.47286,1.02112,-1.54650,-1.43575,-0.16165,2.11967,0.00307
-1.47440,1.02156,-1.54605,-1.43674,-0.16112,2.11924,0.00307
-1.47594,1.02199,-1.54560,-1.43772,-0.16059,2.11881,0.00307
-1.47748,1.02242,-1.54517,-1.43867,-0.16007,2.11838,0.00307
-1.47903,1.02284,-1.54474,-1.43962,-0.15956,2.11797,0.00307
-1.48057,1.02325,-1.54431,-1.44054,-0.15906,2.11756,0.00307
-1.48211,1.02366,-1.54390,-1.44145,-0.15857,2.11716,0.00307
-1.48365,1.02406,-1.54349,-1.44235,-0.15809,2.11676,0.00308
-1.48519,1.02446,-1.54308,-1.44323,-0.15761,2.11637,0.00308
-1.48674,1.02484,-1.54269,-1.44410,-0.15714,2.11598,0.00308
-1.48828,1.02523,-1.54230,-1.44495,-0.15668,2.11561,0.00308
-1.48982,1.02560,-1.54191,-1.44579,-0.15623,2.11523,0.00308
-1.49136,1.02597,-1.54154,-1.44662,-0.15579,2.11486,0.00308
-1.49291,1.02634,-1.54116,-1.44743,-0.15535,2.11450,0.00308
-1.49445,1.02669,-1.54080,-1.44823,-0.15492,2.11415,0.00309
-1.49599,1.02705,-1.54044,-1.44901,-0.15449,2.11380,0.00309
-1.49753,1.02739,-1.54008,-1.44978,-0.15408,2.11345,0.00309
-1.49907,1.02774,-1.53974,-1.45054,-0.15367,2.11311,0.00309
-1.50062,1.02807,-1.53939,-1.45129,-0.15326,2.11278,0.00309
-1.50216,1.02840,-1.53906,-1.45202,-0.15287,2.11245,0.00310
-1.50370,1.02873,-1.53872,-1.45275,-0.15248,2.11212,0.00310
-1.50524,1.02905,-1.53840,-1.45346,-0.15209,2.11181,0.00310
-1.50679,1.02936,-1.53808,-1.45416,-0.15172,2.11149,0.00310
-1.50833,1.02967,-1.53776,-1.45484,-0.15134,2.11118,0.00310
-1.50987,1.02998,-1.53745,-1.45552,-0.15098,2.11088,0.00310
-1.51141,1.03028,-1.53714,-1.45619,-0.15062,2.11058,0.00311
-1.51295,1.03058,-1.53684,-1.45684,-0.15027,2.11028,0.00311
-1.51450,1.03087,-1.53655,-1.45748,-0.14992,2.10999,0.00311
-1.51604,1.03115,-1.53625,-1.45812,-0.14958,2.10971,0.00311
-1.51758,1.03143,-1.53597,-1.45874,-0.14924,2.10942,0.00311
-1.51912,1.03171,-1.53569,-1.45935,-0.14891,2.10915,0.00312
-1.52067,1.03198,-1.53541,-1.45996,-0.14859,2.10887,0.00312
-1.52221,1.03225,-1.53513,-1.46055,-0.14827,2.10861,0.00312
-1.52375,1.03252,-1.53487,-1.46113,-0.14795,2.10834,0.00312
-1.52529,1.03278,-1.53460,-1.46170,-0.14764,2.10808,0.00312
-1.52684,1.03303,-1.53434,-1.46227,-0.14734,2.10783,0.00313
-1.52838,1.03318,-1.53420,-1.46258,-0.14718,2.10768,0.00313
-1.52992,1.03360,-1.53379,-1.46340,-0.14676,2.10727,0.00313
-1.53146,1.03401,-1.53339,-1.46422,-0.14635,2.10686,0.00313
-1.53300,1.03441,-1.53299,-1.46502,-0.14594,2.10645,0.00313
-1.53455,1.03481,-1.53260,-1.46581,-0.14554,2.10605,0.00313
-1.53609,1.03520,-1.53222,-1.46658,-0.14515,2.10566,0.00314
-1.53763,1.03559,-1.53184,-1.46735,-0.14476,2.10528,0.00314
-1.53917,1.03597,-1.53147,-1.46810,-0.14439,2.10490,0.00314
-1.54072,1.03634,-1.53111,-1.46883,-0.14401,2.10452,0.00314
-1.54226,1.03671,-1.53075,-1.46956,-0.14365,2.10416,0.00314
-1.54380,1.03707,-1.53040,-1.47027,-0.14329,2.10379,0.00315
-1.54534,1.03743,-1.53005,-1.47097,-0.14293,2.10344,0.00315
-1.54688,1.03778,-1.52971,-1.47166,-0.14258,2.10309,0.00315
-1.54843,1.03813,-1.52938,-1.47234,-0.14224,2.10274,0.00315
-1.54997,1.03847,-1.52905,-1.47301,-0.14190,2.10240,0.00316
-1.55151,1.03880,-1.52872,-1.47367,-0.14157,2.10207,0.00316
-1.55305,1.03913,-1.52840,-1.47431,-0.14124,2.10174,0.00316
-1.55460,1.03945,-1.52809,-1.47495,-0.14092,2.10141,0.00316
-1.55614,1.03977,-1.52778,-1.47557,-0.14061,2.10109,0.00316
-1.55768,1.04009,-1.52748,-1.47619,-0.14029,2.10078,0.00317
-1.55922,1.04039,-1.52718,-1.47679,-0.13999,2.10047,0.00317
-1.56076,1.04070,-1.52688,-1.47739,-0.13969,2.10017,0.00317
-1.56231,1.04100,-1.52659,-1.47797,-0.13939,2.09987,0.00317
-1.56385,1.04129,-1.52631,-1.47855,-0.13910,2.09957,0.00317
-1.56539,1.04158,-1.52603,-1.47911,-0.13882,2.09928,0.00318
-1.56693,1.04186,-1.52575,-1.47967,-0.13853,2.09899,0.00318
-1.56848,1.04214,-1.52548,-1.48022,-0.13826,2.09871,0.00318
-1.57002,1.04224,-1.52539,-1.48039,-0.13817,2.09862,0.00318
-1.57156,1.04260,-1.52505,-1.48103,-0.13787,2.09826,0.00318
-1.57310,1.04295,-1.52472,-1.48166,-0.13757,2.09791,0.00319
-1.57465,1.04330,-1.52439,-1.48229,-0.13728,2.09756,0.00319
-1.57619,1.04364,-1.52407,-1.48290,-0.13699,2.09721,0.00319
-1.57773,1.04398,-1.52375,-1.48350,-0.13671,2.09687,0.00319
-1.57927,1.04431,-1.52343,-1.48409,-0.13643,2.09654,0.00319
-1.58081,1.04464,-1.52313,-1.48467,-0.13616,2.09621,0.00320
-1.58236,1.04496,-1.52282,-1.48524,-0.13589,2.09589,0.00320
-1.58390,1.04528,-1.52253,-1.48580,-0.13563,2.09557,0.00320
-1.58544,1.04559,-1.52223,-1.48636,-0.13537,2.09526,0.00320
-1.58698,1.04590,-1.52194,-1.48690,-0.13511,2.09495,0.00321
-1.58853,1.04620,-1.52166,-1.48744,-0.13486,2.09465,0.00321
-1.59007,1.04641,-1.52147,-1.48780,-0.13469,2.09444,0.00321
-1.59161,1.04701,-1.52092,-1.48876,-0.13428,2.09384,0.00321
-1.59315,1.04761,-1.52038,-1.48970,-0.13388,2.09324,0.00321
-1.59469,1.04820,-1.51985,-1.49063,-0.13348,2.09266,0.00322
-1.59624,1.04877,-1.51934,-1.49154,-0.13309,2.09209,0.00322
-1.59778,1.04934,-1.51882,-1.49244,-0.13270,2.09152,0.00322
-1.59932,1.04990,-1.51832,-1.49332,-0.13232,2.09096,0.00322
-1.60086,1.05045,-1.51783,-1.49419,-0.13195,2.09041,0.00323
-1.60241,1.05099,-1.51734,-1.49504,-0.13158,2.08987,0.00323
-1.60395,1.05152,-1.51686,-1.49588,-0.13122,2.08934,0.00323
-1.60549,1.05205,-1.51640,-1.49671,-0.13087,2.08882,0.00323
-1.60703,1.05256,-1.51593,-1.49752,-0.13052,2.08830,0.00324
-1.60857,1.05307,-1.51548,-1.49832,-0.13018,2.08780,0.00324
-1.61012,1.05357,-1.51503,-1.49910,-0.12984,2.08730,0.00324
-1.61166,1.05406,-1.51459,-1.49987,-0.12951,2.08681,0.00324
-1.61320,1.05454,-1.51416,-1.50063,-0.12918,2.08632,0.00325
-1.61474,1.05502,-1.51373,-1.50138,-0.12886,2.08584,0.00325
-1.61629,1.05549,-1.51332,-1.50211,-0.12855,2.08538,0.00325
-1.61783,1.05595,-1.51290,-1.50284,-0.12824,2.08491,0.00325
-1.61937,1.05641,-1.51250,-1.50355,-0.12793,2.08446,0.00326
-1.62091,1.05685,-1.51210,-1.50425,-0.12763,2.08401,0.00326
-1.62246,1.05729,-1.51171,-1.50493,-0.12734,2.08357,0.00326
-1.62400,1.05773,-1.51133,-1.50561,-0.12705,2.08314,0.00326
-1.62554,1.05815,-1.51095,-1.50627,-0.12676,2.08271,0.00327
-1.62708,1.05857,-1.51057,-1.50693,-0.12648,2.08229,0.00327
-1.62862,1.05898,-1.51021,-1.50757,-0.12620,2.08188,0.00327
-1.63017,1.05939,-1.50985,-1.50820,-0.12593,2.08147,0.00327
-1.63171,1.05979,-1.50949,-1.50883,-0.12566,2.08107,0.00328
-1.63325,1.06018,-1.50914,-1.50944,-0.12540,2.08067,0.00328
-1.63479,1.06057,-1.50880,-1.51004,-0.12514,2.08028,0.00328
-1.63634,1.06095,-1.50846,-1.51063,-0.12488,2.07990,0.00328
-1.63788,1.06132,-1.50813,-1.51121,-0.12463,2.07952,0.00328
-1.63942,1.06169,-1.50781,-1.51179,-0.12439,2.07915,0.00329
-1.64096,1.06206,-1.50748,-1.51235,-0.12415,2.07879,0.00329
-1.64250,1.06241,-1.50717,-1.51290,-0.12391,2.07843,0.00329
-1.64405,1.06276,-1.50686,-1.51345,-0.12367,2.07808,0.00329
-1.64559,1.06311,-1.50655,-1.51399,-0.12344,2.07773,0.00330
-1.64713,1.06345,-1.50625,-1.51451,-0.12321,2.07738,0.00330
-1.64867,1.06378,-1.50596,-1.51503,-0.12299,2.07705,0.00330
-1.65022,1.06411,-1.50567,-1.51554,-0.12277,2.07672,0.00330
-1.65176,1.06432,-1.50548,-1.51587,-0.12263,2.07651,0.00330
-1.65330,1.06479,-1.50508,-1.51659,-0.12231,2.07604,0.00331
-1.65484,1.06524,-1.50468,-1.51730,-0.12200,2.07559,0.00331
-1.65638,1.06569,-1.50429,-1.51799,-0.12170,2.07514,0.00331
-1.65793,1.06613,-1.50391,-1.51868,-0.12139,2.07470,0.00331
-1.65947,1.06656,-1.50353,-1.51935,-0.12110,2.07426,0.00331
-1.66101,1.06699,-1.50316,-1.52002,-0.12081,2.07384,0.00332
-1.66255,1.06741,-1.50280,-1.52067,-0.12052,2.07341,0.00332
-1.66410,1.06782,-1.50244,-1.52131,-0.12024,2.07300,0.00332
-1.66564,1.06822,-1.50208,-1.52194,-0.11996,2.07259,0.00332
-1.66718,1.06862,-1.50174,-1.52256,-0.11969,2.07219,0.00332
-1.66872,1.06902,-1.50140,-1.52317,-0.11942,2.07180,0.00333
-1.67027,1.06940,-1.50106,-1.52377,-0.11916,2.07141,0.00333
-1.67181,1.06979,-1.50073,-1.52436,-0.11890,2.07102,0.00333
-1.67335,1.07016,-1.50040,-1.52495,-0.11864,2.07065,0.00333
-1.67489,1.07053,-1.50008,-1.52552,-0.11839,2.07027,0.00334
-1.67643,1.07089,-1.49977,-1.52608,-0.11814,2.06991,0.00334
-1.67798,1.07125,-1.49946,-1.52663,-0.11790,2.06955,0.00334
-1.67952,1.07160,-1.49916,-1.52717,-0.11766,2.06919,0.00334
-1.68106,1.07195,-1.49886,-1.52771,-0.11742,2.06885,0.00334
-1.68260,1.07229,-1.49856,-1.52823,-0.11719,2.06850,0.00335
-1.68415,1.07262,-1.49827,-1.52875,-0.11697,2.06817,0.00335
-1.68569,1.07295,-1.49799,-1.52926,-0.11674,2.06783,0.00335
-1.68723,1.07313,-1.49784,-1.52952,-0.11663,2.06766,0.00335
-1.68877,1.07358,-1.49746,-1.53015,-0.11639,2.06721,0.00335
-1.69031,1.07402,-1.49709,-1.53076,-0.11615,2.06677,0.00336
-1.69186,1.07445,-1.49672,-1.53136,-0.11591,2.06633,0.00336
-1.69340,1.07488,-1.49636,-1.53195,-0.11568,2.06590,0.00336
-1.69494,1.07530,-1.49601,-1.53254,-0.11545,2.06548,0.00336
-1.69648,1.07571,-1.49566,-1.53311,-0.11522,2.06507,0.00336
-1.69803,1.07612,-1.49532,-1.53367,-0.11500,2.06466,0.00337
-1.69957,1.07652,-1.49498,-1.53423,-0.11479,2.06426,0.00337
-1.70111,1.07691,-1.49465,-1.53477,-0.11457,2.06386,0.00337
-1.70265,1.07730,-1.49432,-1.53531,-0.11436,2.06347,0.00337
-1.70419,1.07768,-1.49400,-1.53584,-0.11415,2.06309,0.00338
-1.70574,1.07806,-1.49369,-1.53635,-0.11395,2.06271,0.00338
-1.70728,1.07843,-1.49338,-1.53687,-0.11375,2.06234,0.00338
-1.70882,1.07879,-1.49307,-1.53737,-0.11355,2.06197,0.00338
-1.71036,1.07915,-1.49277,-1.53786,-0.11336,2.06161,0.00338
-1.71191,1.07950,-1.49248,-1.53835,-0.11317,2.06126,0.00339
-1.71345,1.07972,-1.49229,-1.53865,-0.11305,2.06104,0.00339
-1.71499,1.08017,-1.49192,-1.53925,-0.11282,2.06059,0.00339
-1.71653,1.08061,-1.49155,-1.53985,-0.11259,2.06014,0.00339
-1.71808,1.08105,-1.49119,-1.54044,-0.11237,2.05970,0.00339
-1.71962,1.08148,-1.49083,-1.54102,-0.11214,2.05927,0.00340
-1.72116,1.08190,-1.49048,-1.54158,-0.11193,2.05885,0.00340
-1.72270,1.08232,-1.49014,-1.54214,-0.11171,2.05843,0.00340
-1.72424,1.08273,-1.48980,-1.54269,-0.11150,2.05802,0.00340
-1.72579,1.08313,-1.48947,-1.54323,-0.11130,2.05761,0.00340
-1.72733,1.08353,-1.48914,-1.54377,-0.11109,2.05721,0.00341
-1.72887,1.08392,-1.48882,-1.54429,-0.11089,2.05682,0.00341
-1.73041,1.08431,-1.48850,-1.54480,-0.11069,2.05643,0.00341
-1.73196,1.08469,-1.48819,-1.54531,-0.11050,2.05605,0.00341
-1.73350,1.08506,-1.48788,-1.54581,-0.11031,2.05568,0.00341
-1.73504,1.08542,-1.48758,-1.54630,-0.11012,2.05531,0.00342
-1.73658,1.08578,-1.48728,-1.54678,-0.10994,2.05495,0.00342
-1.73812,1.08612,-1.48701,-1.54722,-0.10977,2.05461,0.00342
-1.73967,1.08659,-1.48662,-1.54781,-0.10957,2.05414,0.00342
-1.74121,1.08706,-1.48624,-1.54839,-0.10937,2.05367,0.00343
-1.74275,1.08753,-1.48587,-1.54896,-0.10917,2.05320,0.00343
-1.74429,1.08798,-1.48550,-1.54952,-0.10898,2.05275,0.00343
-1.74584,1.08843,-1.48514,-1.55008,-0.10878,2.05230,0.00343
-1.74738,1.08887,-1.48479,-1.55062,-0.10860,2.05186,0.00343
-1.74892,1.08931,-1.48444,-1.55115,-0.10841,2.05142,0.00344
-1.75046,1.08973,-1.48409,-1.55168,-0.10823,2.05099,0.00344
-1.75200,1.09015,-1.48375,-1.55220,-0.10805,2.05057,0.00344
-1.75355,1.09057,-1.48342,-1.55271,-0.10788,2.05016,0.00344
-1.75509,1.09097,-1.48309,-1.55321,-0.10770,2.04975,0.00345
-1.75663,1.09137,-1.48277,-1.55370,-0.10753,2.04934,0.00345
-1.75817,1.09177,-1.48245,-1.55418,-0.10736,2.04895,0.00345
-1.75972,1.09216,-1.48214,-1.55466,-0.10720,2.04856,0.00345
-1.76126,1.09254,-1.48184,-1.55513,-0.10704,2.04818,0.00345
-1.76280,1.09291,-1.48154,-1.55559,-0.10688,2.04780,0.00346
-1.76434,1.09324,-1.48128,-1.55598,-0.10674,2.04747,0.00346
-1.76589,1.09386,-1.48079,-1.55672,-0.10650,2.04685,0.00346
-1.76743,1.09447,-1.48030,-1.55744,-0.10626,2.04624,0.00346
-1.76897,1.09507,-1.47983,-1.55816,-0.10603,2.04564,0.00346
-1.77051,1.09567,-1.47936,-1.55886,-0.10580,2.04505,0.00347
-1.77205,1.09625,-1.47890,-1.55954,-0.10557,2.04447,0.00347
-1.77360,1.09683,-1.47845,-1.56022,-0.10535,2.04389,0.00347
-1.77514,1.09739,-1.47800,-1.56089,-0.10513,2.04333,0.00347
-1.77668,1.09795,-1.47757,-1.56154,-0.10491,2.04277,0.00348
-1.77822,1.09850,-1.47714,-1.56219,-0.10470,2.04222,0.00348
-1.77977,1.09904,-1.47671,-1.56282,-0.10449,2.04168,0.00348
-1.78131,1.09957,-1.47630,-1.56344,-0.10428,2.04115,0.00348
-1.78285,1.10009,-1.47589,-1.56406,-0.10408,2.04063,0.00349
-1.78439,1.10061,-1.47549,-1.56466,-0.10388,2.04011,0.00349
-1.78593,1.10111,-1.47509,-1.56525,-0.10368,2.03961,0.00349
-1.78748,1.10161,-1.47470,-1.56583,-0.10349,2.03911,0.00349
-1.78902,1.10210,-1.47432,-1.56641,-0.10330,2.03861,0.00350
-1.79056,1.10258,-1.47394,-1.56697,-0.10311,2.03813,0.00350
-1.79210,1.10306,-1.47357,-1.56753,-0.10293,2.03765,0.00350
-1.79365,1.10353,-1.47321,-1.56807,-0.10275,2.03719,0.00350
-1.79519,1.10399,-1.47285,-1.56861,-0.10257,2.03672,0.00350
-1.79673,1.10444,-1.47250,-1.56913,-0.10240,2.03627,0.00351
-1.79827,1.10488,-1.47215,-1.56965,-0.10223,2.03582,0.00351
-1.79981,1.10532,-1.47181,-1.57016,-0.10206,2.03538,0.00351
-1.80136,1.10575,-1.47148,-1.57066,-0.10189,2.03495,0.00351
-1.80290,1.10618,-1.47115,-1.57116,-0.10173,2.03452,0.00351
-1.80444,1.10660,-1.47083,-1.57164,-0.10157,2.03410,0.00352
-1.80598,1.10701,-1.47051,-1.57212,-0.10141,2.03369,0.00352
-1.80753,1.10741,-1.47019,-1.57259,-0.10125,2.03328,0.00352
-1.80907,1.10781,-1.46989,-1.57305,-0.10110,2.03288,0.00352
-1.81061,1.10820,-1.46958,-1.57351,-0.10095,2.03249,0.00352
-1.81215,1.10859,-1.46928,-1.57395,-0.10080,2.03210,0.00353
-1.81370,1.10883,-1.46910,-1.57423,-0.10071,2.03185,0.00353
-1.81524,1.10934,-1.46871,-1.57479,-0.10054,2.03135,0.00353
-1.81678,1.10984,-1.46833,-1.57533,-0.10038,2.03085,0.00353
-1.81832,1.11033,-1.46795,-1.57587,-0.10022,2.03035,0.00353
-1.81986,1.11082,-1.46759,-1.57640,-0.10006,2.02987,0.00354
-1.82141,1.11129,-1.46722,-1.57692,-0.09990,2.02939,0.00354
-1.82295,1.11176,-1.46687,-1.57743,-0.09974,2.02892,0.00354
-1.82449,1.11222,-1.46652,-1.57794,-0.09959,2.02846,0.00354
-1.82603,1.11268,-1.46617,-1.57843,-0.09944,2.02800,0.00354
-1.82758,1.11312,-1.46583,-1.57892,-0.09929,2.02756,0.00355
-1.82912,1.11356,-1.46550,-1.57940,-0.09915,2.02711,0.00355
-1.83066,1.11400,-1.46517,-1.57987,-0.09901,2.02668,0.00355
-1.83220,1.11442,-1.46485,-1.58033,-0.09887,2.02625,0.00355
-1.83374,1.11484,-1.46453,-1.58079,-0.09873,2.02583,0.00355
-1.83529,1.11525,-1.46422,-1.58124,-0.09859,2.02542,0.00356
-1.83683,1.11566,-1.46391,-1.58168,-0.09846,2.02501,0.00356
-1.83837,1.11606,-1.46361,-1.58211,-0.09833,2.02461,0.00356
-1.83991,1.11647,-1.46330,-1.58256,-0.09819,2.02420,0.00356
-1.84146,1.11701,-1.46290,-1.58313,-0.09803,2.02366,0.00356
-1.84300,1.11754,-1.46250,-1.58369,-0.09786,2.02313,0.00357
-1.84454,1.11806,-1.46211,-1.58425,-0.09770,2.02261,0.00357
-1.84608,1.11857,-1.46173,-1.58479,-0.09754,2.02209,0.00357
-1.84762,1.11908,-1.46135,-1.58533,-0.09738,2.02159,0.00357
-1.84917,1.11957,-1.46098,-1.58585,-0.09723,2.02109,0.00358
-1.85071,1.12006,-1.46061,-1.58637,-0.09708,2.02060,0.00358
-1.85225,1.12054,-1.46025,-1.58688,-0.09693,2.02012,0.00358
-1.85379,1.12102,-1.45990,-1.58738,-0.09678,2.01964,0.00358
-1.85534,1.12148,-1.45955,-1.58787,-0.09664,2.01917,0.00358
-1.85688,1.12194,-1.45921,-1.58836,-0.09649,2.01871,0.00359
-1.85842,1.12240,-1.45888,-1.58883,-0.09635,2.01826,0.00359
-1.85996,1.12284,-1.45855,-1.58930,-0.09622,2.01781,0.00359
-1.86151,1.12328,-1.45822,-1.58976,-0.09608,2.01737,0.00359
-1.86305,1.12371,-1.45790,-1.59022,-0.09595,2.01694,0.00359
-1.86459,1.12413,-1.45759,-1.59066,-0.09582,2.01652,0.00360
-1.86613,1.12455,-1.45728,-1.59110,-0.09569,2.01610,0.00360
-1.86767,1.12496,-1.45697,-1.59153,-0.09556,2.01568,0.00360
-1.86922,1.12536,-1.45668,-1.59196,-0.09544,2.01528,0.00360
-1.87076,1.12565,-1.45647,-1.59225,-0.09535,2.01500,0.00360
-1.87230,1.12606,-1.45616,-1.59270,-0.09521,2.01458,0.00360
-1.87384,1.12646,-1.45586,-1.59314,-0.09507,2.01417,0.00361
-1.87539,1.12686,-1.45557,-1.59357,-0.09494,2.01377,0.00361
-1.87693,1.12706,-1.45542,-1.59378,-0.09487,2.01357,0.00361
-1.87847,1.12747,-1.45512,-1.59421,-0.09474,2.01316,0.00361
-1.88001,1.12787,-1.45482,-1.59463,-0.09462,2.01276,0.00361
-1.88155,1.12803,-1.45471,-1.59480,-0.09457,2.01260,0.00361
-1.88310,1.12845,-1.45440,-1.59523,-0.09445,2.01218,0.00361
-1.88464,1.12885,-1.45410,-1.59565,-0.09433,2.01177,0.00362
-1.88618,1.12905,-1.45396,-1.59585,-0.09427,2.01157,0.00362
-1.88772,1.12945,-1.45367,-1.59628,-0.09413,2.01117,0.00362
-1.88927,1.12949,-1.45364,-1.59633,-0.09412,2.01113,0.00362
-1.89081,1.12988,-1.45335,-1.59677,-0.09396,2.01074,0.00362
-1.89235,1.12991,-1.45333,-1.59682,-0.09393,2.01071,0.00362
-1.89389,1.13017,-1.45312,-1.59738,-0.09359,2.01045,0.00362
-1.89543,1.13042,-1.45292,-1.59792,-0.09325,2.01018,0.00362
-1.89698,1.13068,-1.45271,-1.59846,-0.09292,2.00992,0.00362
-1.89852,1.13081,-1.45260,-1.59879,-0.09270,2.00978,0.00362
-1.90006,1.13092,-1.45249,-1.59944,-0.09217,2.00967,0.00362
-1.90160,1.13103,-1.45239,-1.60008,-0.09164,2.00955,0.00362
-1.90315,1.13113,-1.45228,-1.60070,-0.09113,2.00944,0.00362
-1.90469,1.13123,-1.45217,-1.60132,-0.09062,2.00933,0.00362
-1.90623,1.13134,-1.45207,-1.60193,-0.09012,2.00922,0.00361
-1.90777,1.13144,-1.45197,-1.60253,-0.08963,2.00911,0.00361
-1.90932,1.13153,-1.45187,-1.60311,-0.08915,2.00900,0.00361
-1.91086,1.13163,-1.45177,-1.60369,-0.08868,2.00889,0.00361
-1.91240,1.13173,-1.45167,-1.60426,-0.08821,2.00879,0.00361
-1.91394,1.13182,-1.45157,-1.60481,-0.08776,2.00869,0.00361
-1.91548,1.13191,-1.45148,-1.60536,-0.08731,2.00859,0.00361
-1.91703,1.13200,-1.45139,-1.60590,-0.08686,2.00849,0.00361
-1.91857,1.13209,-1.45129,-1.60643,-0.08643,2.00839,0.00361
-1.92011,1.13218,-1.45120,-1.60695,-0.08600,2.00829,0.00361
-1.92165,1.13221,-1.45117,-1.60729,-0.08571,2.00826,0.00361
-1.92320,1.13201,-1.45125,-1.60807,-0.08484,2.00844,0.00360
-1.92474,1.13182,-1.45134,-1.60884,-0.08400,2.00862,0.00360
-1.92628,1.13163,-1.45142,-1.60960,-0.08317,2.00879,0.00360
-1.92782,1.13145,-1.45150,-1.61034,-0.08235,2.00896,0.00359
-1.92936,1.13127,-1.45158,-1.61108,-0.08155,2.00912,0.00359
-1.93091,1.13109,-1.45166,-1.61179,-0.08076,2.00929,0.00359
-1.93245,1.13092,-1.45174,-1.61250,-0.07998,2.00945,0.00358
-1.93399,1.13075,-1.45181,-1.61319,-0.07922,2.00960,0.00358
-1.93553,1.13058,-1.45189,-1.61387,-0.07847,2.00976,0.00358
-1.93708,1.13041,-1.45196,-1.61454,-0.07773,2.00991,0.00358
-1.93862,1.13025,-1.45203,-1.61520,-0.07701,2.01006,0.00357
-1.94016,1.13009,-1.45211,-1.61584,-0.07630,2.01021,0.00357
-1.94170,1.12994,-1.45218,-1.61648,-0.07560,2.01035,0.00357
-1.94324,1.12978,-1.45224,-1.61710,-0.07491,2.01049,0.00357
-1.94479,1.12963,-1.45231,-1.61771,-0.07424,2.01063,0.00356
-1.94633,1.12949,-1.45238,-1.61831,-0.07357,2.01077,0.00356
-1.94787,1.12934,-1.45244,-1.61890,-0.07292,2.01090,0.00356
-1.94941,1.12920,-1.45250,-1.61948,-0.07228,2.01103,0.00356
-1.95096,1.12906,-1.45257,-1.62005,-0.07165,2.01116,0.00356
-1.95250,1.12892,-1.45263,-1.62061,-0.07103,2.01129,0.00356
-1.95404,1.12879,-1.45269,-1.62116,-0.07043,2.01141,0.00355
-1.95558,1.12866,-1.45275,-1.62171,-0.06983,2.01153,0.00355
-1.95713,1.12853,-1.45280,-1.62224,-0.06924,2.01165,0.00355
-1.95867,1.12840,-1.45286,-1.62276,-0.06867,2.01177,0.00355
-1.96021,1.12827,-1.45292,-1.62327,-0.06810,2.01189,0.00355
-1.96175,1.12815,-1.45297,-1.62378,-0.06754,2.01200,0.00355
-1.96329,1.12803,-1.45302,-1.62427,-0.06700,2.01211,0.00355
-1.96484,1.12791,-1.45308,-1.62476,-0.06646,2.01222,0.00355
-1.96638,1.12779,-1.45313,-1.62524,-0.06593,2.01233,0.00355
-1.96792,1.12768,-1.45318,-1.62571,-0.06541,2.01243,0.00355
-1.96946,1.12757,-1.45323,-1.62617,-0.06490,2.01254,0.00355
-1.97101,1.12746,-1.45328,-1.62662,-0.06440,2.01264,0.00355
-1.97255,1.12735,-1.45332,-1.62707,-0.06391,2.01274,0.00355
-1.97409,1.12724,-1.45337,-1.62751,-0.06342,2.01284,0.00354
-1.97563,1.12714,-1.45341,-1.62794,-0.06295,2.01294,0.00354
-1.97717,1.12704,-1.45346,-1.62836,-0.06248,2.01303,0.00354
-1.97872,1.12693,-1.45350,-1.62878,-0.06202,2.01312,0.00354
-1.98026,1.12685,-1.45354,-1.62911,-0.06164,2.01320,0.00354
-1.98180,1.12671,-1.45361,-1.62962,-0.06108,2.01333,0.00354
-1.98334,1.12658,-1.45367,-1.63011,-0.06052,2.01346,0.00354
-1.98489,1.12644,-1.45374,-1.63059,-0.05997,2.01358,0.00354
-1.98643,1.12631,-1.45380,-1.63107,-0.05943,2.01371,0.00354
-1.98797,1.12618,-1.45387,-1.63154,-0.05890,2.01383,0.00354
-1.98951,1.12606,-1.45393,-1.63200,-0.05838,2.01395,0.00354
-1.99105,1.12593,-1.45399,-1.63245,-0.05787,2.01406,0.00354
-1.99260,1.12581,-1.45405,-1.63289,-0.05737,2.01418,0.00354
-1.99414,1.12569,-1.45411,-1.63333,-0.05687,2.01429,0.00354
-1.99568,1.12557,-1.45416,-1.63376,-0.05639,2.01440,0.00354
-1.99722,1.12546,-1.45422,-1.63418,-0.05591,2.01451,0.00354
-1.99877,1.12534,-1.45427,-1.63459,-0.05544,2.01462,0.00354
-2.00031,1.12523,-1.45433,-1.63500,-0.05498,2.01472,0.00354
-2.00185,1.12509,-1.45440,-1.63542,-0.05448,2.01485,0.00354
-2.00339,1.12469,-1.45465,-1.63607,-0.05359,2.01524,0.00353
-2.00494,1.12429,-1.45490,-1.63670,-0.05271,2.01563,0.00353
-2.00648,1.12390,-1.45515,-1.63733,-0.05185,2.01600,0.00353
-2.00802,1.12352,-1.45539,-1.63794,-0.05100,2.01637,0.00352
-2.00956,1.12314,-1.45562,-1.63854,-0.05017,2.01674,0.00352
-2.01110,1.12277,-1.45586,-1.63913,-0.04935,2.01710,0.00352
-2.01265,1.12240,-1.45609,-1.63971,-0.04854,2.01745,0.00351
-2.01419,1.12205,-1.45631,-1.64028,-0.04775,2.01779,0.00351
-2.01573,1.12169,-1.45653,-1.64084,-0.04698,2.01813,0.00351
-2.01727,1.12135,-1.45675,-1.64138,-0.04621,2.01846,0.00351
-2.01882,1.12101,-1.45697,-1.64192,-0.04546,2.01879,0.00350
-2.02036,1.12068,-1.45718,-1.64245,-0.04473,2.01911,0.00350
-2.02190,1.12035,-1.45738,-1.64297,-0.04400,2.01943,0.00350
-2.02344,1.12003,-1.45759,-1.64348,-0.04329,2.01974,0.00350
-2.02498,1.11971,-1.45779,-1.64398,-0.04259,2.02005,0.00350
-2.02653,1.11940,-1.45798,-1.64447,-0.04191,2.02035,0.00349
-2.02807,1.11910,-1.45818,-1.64495,-0.04123,2.02064,0.00349
-2.02961,1.11880,-1.45837,-1.64542,-0.04057,2.02093,0.00349
-2.03115,1.11850,-1.45856,-1.64589,-0.03992,2.02122,0.00349
-2.03270,1.11821,-1.45874,-1.64634,-0.03928,2.02150,0.00349
-2.03424,1.11793,-1.45892,-1.64679,-0.03865,2.02178,0.00349
-2.03578,1.11765,-1.45910,-1.64723,-0.03803,2.02205,0.00349
-2.03732,1.11737,-1.45927,-1.64766,-0.03743,2.02231,0.00348
-2.03886,1.11710,-1.45944,-1.64809,-0.03683,2.02257,0.00348
-2.04041,1.11684,-1.45961,-1.64850,-0.03624,2.02283,0.00348
-2.04195,1.11658,-1.45978,-1.64891,-0.03567,2.02308,0.00348
-2.04349,1.11632,-1.45994,-1.64931,-0.03510,2.02333,0.00348
-2.04503,1.11607,-1.46010,-1.64971,-0.03455,2.02358,0.00348
-2.04658,1.11583,-1.46026,-1.65010,-0.03400,2.02382,0.00348
-2.04812,1.11558,-1.46041,-1.65048,-0.03346,2.02405,0.00348
-2.04966,1.11534,-1.46057,-1.65085,-0.03294,2.02428,0.00348
-2.05120,1.11511,-1.46072,-1.65122,-0.03242,2.02451,0.00348
-2.05275,1.11488,-1.46086,-1.65158,-0.03191,2.02474,0.00348
-2.05429,1.11465,-1.46101,-1.65193,-0.03141,2.02496,0.00348
-2.05583,1.11443,-1.46115,-1.65228,-0.03092,2.02517,0.00348
-2.05737,1.11421,-1.46129,-1.65262,-0.03044,2.02538,0.00348
-2.05891,1.11400,-1.46143,-1.65295,-0.02996,2.02559,0.00348
-2.06046,1.11379,-1.46156,-1.65328,-0.02950,2.02580,0.00348
-2.06200,1.11358,-1.46169,-1.65361,-0.02904,2.02600,0.00348
-2.06354,1.11338,-1.46182,-1.65392,-0.02859,2.02620,0.00348
-2.06508,1.11318,-1.46195,-1.65424,-0.02815,2.02639,0.00348
-2.06663,1.11302,-1.46205,-1.65449,-0.02780,2.02655,0.00348
-2.06817,1.11280,-1.46219,-1.65484,-0.02731,2.02676,0.00348
-2.06971,1.11259,-1.46233,-1.65518,-0.02682,2.02696,0.00348
-2.07125,1.11239,-1.46246,-1.65552,-0.02635,2.02716,0.00348
-2.07279,1.11218,-1.46259,-1.65585,-0.02589,2.02736,0.00348
-2.07434,1.11198,-1.46272,-1.65617,-0.02543,2.02756,0.00348
-2.07588,1.11179,-1.46284,-1.65649,-0.02498,2.02775,0.00348
-2.07742,1.11160,-1.46297,-1.65681,-0.02454,2.02793,0.00348
-2.07896,1.11149,-1.46304,-1.65696,-0.02432,2.02804,0.00348
-2.08051,1.11101,-1.46338,-1.65757,-0.02338,2.02851,0.00347
-2.08205,1.11053,-1.46371,-1.65816,-0.02246,2.02897,0.00347
-2.08359,1.11007,-1.46404,-1.65875,-0.02155,2.02942,0.00347
-2.08513,1.10961,-1.46436,-1.65932,-0.02066,2.02986,0.00346
-2.08667,1.10916,-1.46467,-1.65988,-0.01979,2.03030,0.00346
-2.08822,1.10872,-1.46498,-1.66043,-0.01893,2.03073,0.00346
-2.08976,1.10829,-1.46529,-1.66097,-0.01809,2.03115,0.00345
-2.09130,1.10787,-1.46559,-1.66150,-0.01726,2.03157,0.00345
-2.09284,1.10745,-1.46589,-1.66202,-0.01644,2.03197,0.00345
-2.09439,1.10704,-1.46618,-1.66253,-0.01564,2.03237,0.00344
-2.09593,1.10663,-1.46646,-1.66304,-0.01486,2.03277,0.00344
-2.09747,1.10624,-1.46674,-1.66353,-0.01408,2.03315,0.00344
-2.09901,1.10585,-1.46702,-1.66401,-0.01333,2.03353,0.00344
-2.10056,1.10547,-1.46729,-1.66449,-0.01258,2.03391,0.00343
-2.10210,1.10509,-1.46756,-1.66495,-0.01185,2.03427,0.00343
-2.10364,1.10472,-1.46782,-1.66541,-0.01113,2.03463,0.00343
-2.10518,1.10436,-1.46808,-1.66586,-0.01042,2.03499,0.00343
-2.10672,1.10400,-1.46834,-1.66630,-0.00973,2.03534,0.00343
-2.10827,1.10365,-1.46859,-1.66673,-0.00905,2.03568,0.00342
-2.10981,1.10331,-1.46883,-1.66715,-0.00838,2.03601,0.00342
-2.11135,1.10297,-1.46907,-1.66757,-0.00772,2.03635,0.00342
-2.11289,1.10264,-1.46931,-1.66798,-0.00707,2.03667,0.00342
-2.11444,1.10231,-1.46955,-1.66838,-0.00644,2.03699,0.00342
-2.11598,1.10199,-1.46978,-1.66877,-0.00581,2.03730,0.00342
-2.11752,1.10167,-1.47000,-1.66916,-0.00520,2.03761,0.00342
-2.11906,1.10137,-1.47022,-1.66954,-0.00459,2.03792,0.00342
-2.12060,1.10106,-1.47044,-1.66991,-0.00400,2.03821,0.00342
-2.12215,1.10076,-1.47066,-1.67028,-0.00342,2.03851,0.00341
-2.12369,1.10047,-1.47087,-1.67063,-0.00285,2.03879,0.00341
-2.12523,1.10018,-1.47108,-1.67099,-0.00229,2.03908,0.00341
-2.12677,1.09990,-1.47128,-1.67133,-0.00174,2.03935,0.00341
-2.12832,1.09962,-1.47148,-1.67167,-0.00119,2.03963,0.00341
-2.12986,1.09934,-1.47168,-1.67200,-0.00066,2.03990,0.00341
-2.13140,1.09908,-1.47187,-1.67233,-0.00014,2.04016,0.00341
-2.13294,1.09881,-1.47206,-1.67265,0.00037,2.04042,0.00341
-2.13448,1.09855,-1.47225,-1.67297,0.00088,2.04067,0.00341
-2.13603,1.09830,-1.47243,-1.67328,0.00138,2.04093,0.00341
-2.13757,1.09805,-1.47261,-1.67358,0.00186,2.04117,0.00341
-2.13911,1.09780,-1.47279,-1.67388,0.00234,2.04141,0.00341
-2.14065,1.09756,-1.47296,-1.67417,0.00281,2.04165,0.00341
-2.14220,1.09732,-1.47313,-1.67446,0.00327,2.04189,0.00341
-2.14374,1.09709,-1.47330,-1.67474,0.00373,2.04212,0.00341
-2.14528,1.09686,-1.47347,-1.67502,0.00417,2.04234,0.00341
-2.14682,1.09663,-1.47363,-1.67529,0.00461,2.04256,0.00341
-2.14837,1.09641,-1.47379,-1.67556,0.00504,2.04278,0.00341
-2.14991,1.09630,-1.47387,-1.67570,0.00526,2.04289,0.00341
-2.15145,1.09606,-1.47404,-1.67600,0.00574,2.04312,0.00341
-2.15299,1.09583,-1.47421,-1.67630,0.00621,2.04335,0.00341
-2.15453,1.09560,-1.47438,-1.67660,0.00668,2.04358,0.00341
-2.15608,1.09538,-1.47454,-1.67689,0.00713,2.04380,0.00341
-2.15762,1.09516,-1.47470,-1.67717,0.00758,2.04401,0.00341
-2.15916,1.09494,-1.47486,-1.67745,0.00802,2.04422,0.00341
-2.16070,1.09473,-1.47502,-1.67773,0.00845,2.04443,0.00341
-2.16225,1.09465,-1.47508,-1.67783,0.00862,2.04452,0.00341
-2.16379,1.09423,-1.47540,-1.67831,0.00942,2.04492,0.00341
-2.16533,1.09382,-1.47572,-1.67879,0.01021,2.04533,0.00341
-2.16687,1.09341,-1.47603,-1.67925,0.01099,2.04572,0.00341
-2.16841,1.09301,-1.47634,-1.67971,0.01175,2.04611,0.00340
-2.16996,1.09262,-1.47664,-1.68016,0.01250,2.04649,0.00340
-2.17150,1.09224,-1.47694,-1.68059,0.01323,2.04687,0.00340
-2.17304,1.09186,-1.47723,-1.68103,0.01395,2.04723,0.00339
-2.17458,1.09150,-1.47752,-1.68145,0.01466,2.04760,0.00339
-2.17613,1.09113,-1.47780,-1.68186,0.01536,2.04795,0.00339
-2.17767,1.09077,-1.47808,-1.68227,0.01604,2.04830,0.00339
-2.17921,1.09042,-1.47835,-1.68267,0.01672,2.04865,0.00339
-2.18075,1.09008,-1.47862,-1.68306,0.01738,2.04898,0.00339
-2.18229,1.08974,-1.47888,-1.68345,0.01803,2.04931,0.00338
-2.18384,1.08941,-1.47914,-1.68383,0.01866,2.04964,0.00338
-2.18538,1.08908,-1.47939,-1.68420,0.01929,2.04996,0.00338
-2.18692,1.08876,-1.47965,-1.68456,0.01991,2.05028,0.00338
-2.18846,1.08844,-1.47989,-1.68492,0.02051,2.05059,0.00338
-2.19001,1.08813,-1.48013,-1.68527,0.02110,2.05089,0.00338
-2.19155,1.08783,-1.48037,-1.68561,0.02169,2.05119,0.00338
-2.19309,1.08753,-1.48061,-1.68595,0.02226,2.05148,0.00338
-2.19463,1.08724,-1.48084,-1.68628,0.02282,2.05177,0.00337
-2.19618,1.08695,-1.48106,-1.68661,0.02338,2.05206,0.00337
-2.19772,1.08666,-1.48128,-1.68693,0.02392,2.05234,0.00337
-2.19926,1.08639,-1.48150,-1.68724,0.02445,2.05261,0.00337
-2.20080,1.08611,-1.48172,-1.68755,0.02498,2.05288,0.00337
-2.20234,1.08584,-1.48193,-1.68785,0.02549,2.05314,0.00337
-2.20389,1.08558,-1.48214,-1.68815,0.02600,2.05340,0.00337
-2.20543,1.08532,-1.48234,-1.68844,0.02650,2.05366,0.00337
-2.20697,1.08506,-1.48254,-1.68873,0.02699,2.05391,0.00337
-2.20851,1.08481,-1.48274,-1.68901,0.02747,2.05416,0.00337
-2.21006,1.08456,-1.48293,-1.68928,0.02794,2.05440,0.00337
-2.21160,1.08432,-1.48312,-1.68955,0.02840,2.05464,0.00337
-2.21314,1.08408,-1.48331,-1.68982,0.02886,2.05488,0.00337
-2.21468,1.08385,-1.48349,-1.69008,0.02930,2.05511,0.00337
-2.21622,1.08362,-1.48367,-1.69033,0.02974,2.05533,0.00337
-2.21777,1.08339,-1.48385,-1.69058,0.03017,2.05556,0.00337
-2.21931,1.08316,-1.48403,-1.69084,0.03062,2.05579,0.00337
-2.22085,1.08283,-1.48430,-1.69118,0.03122,2.05611,0.00337
-2.22239,1.08250,-1.48456,-1.69151,0.03182,2.05643,0.00337
-2.22394,1.08218,-1.48482,-1.69184,0.03241,2.05674,0.00337
-2.22548,1.08187,-1.48508,-1.69216,0.03298,2.05705,0.00337
-2.22702,1.08156,-1.48533,-1.69247,0.03355,2.05736,0.00336
-2.22856,1.08126,-1.48557,-1.69278,0.03410,2.05766,0.00336
-2.23010,1.08096,-1.48581,-1.69309,0.03465,2.05795,0.00336
-2.23165,1.08067,-1.48605,-1.69338,0.03519,2.05824,0.00336
-2.23319,1.08038,-1.48628,-1.69368,0.03571,2.05852,0.00336
-2.23473,1.08010,-1.48651,-1.69396,0.03623,2.05880,0.00336
-2.23627,1.07982,-1.48674,-1.69424,0.03674,2.05907,0.00336
-2.23782,1.07954,-1.48696,-1.69452,0.03724,2.05934,0.00336
-2.23936,1.07928,-1.48718,-1.69479,0.03773,2.05960,0.00336
-2.24090,1.07901,-1.48739,-1.69505,0.03821,2.05986,0.00336
-2.24244,1.07875,-1.48760,-1.69532,0.03869,2.06012,0.00336
-2.24399,1.07850,-1.48781,-1.69557,0.03915,2.06037,0.00336
-2.24553,1.07825,-1.48801,-1.69582,0.03961,2.06062,0.00336
-2.24707,1.07800,-1.48821,-1.69607,0.04006,2.06086,0.00336
-2.24861,1.07776,-1.48841,-1.69631,0.04050,2.06110,0.00336
-2.25015,1.07752,-1.48860,-1.69655,0.04093,2.06133,0.00336
-2.25170,1.07729,-1.48879,-1.69678,0.04136,2.06156,0.00336
-2.25324,1.07706,-1.48898,-1.69702,0.04179,2.06179,0.00336
-2.25478,1.07679,-1.48921,-1.69735,0.04234,2.06205,0.00336
-2.25632,1.07653,-1.48942,-1.69768,0.04289,2.06230,0.00335
-2.25787,1.07628,-1.48964,-1.69800,0.04342,2.06256,0.00335
-2.25941,1.07603,-1.48985,-1.69831,0.04395,2.06280,0.00335
-2.26095,1.07578,-1.49006,-1.69862,0.04446,2.06304,0.00335
-2.26249,1.07554,-1.49026,-1.69892,0.04497,2.06328,0.00335
-2.26403,1.07530,-1.49046,-1.69922,0.04547,2.06351,0.00335
-2.26558,1.07507,-1.49066,-1.69951,0.04596,2.06374,0.00335
-2.26712,1.07484,-1.49085,-1.69980,0.04644,2.06397,0.00335
-2.26866,1.07462,-1.49104,-1.70008,0.04691,2.06419,0.00335
-2.27020,1.07439,-1.49123,-1.70035,0.04738,2.06441,0.00335
-2.27175,1.07418,-1.49141,-1.70062,0.04783,2.06462,0.00335
-2.27329,1.07396,-1.49159,-1.70089,0.04828,2.06484,0.00335
-2.27483,1.07375,-1.49177,-1.70115,0.04872,2.06504,0.00335
-2.27637,1.07355,-1.49194,-1.70140,0.04915,2.06525,0.00335
-2.27791,1.07345,-1.49203,-1.70152,0.04935,2.06534,0.00335
-2.27946,1.07308,-1.49235,-1.70192,0.05007,2.06570,0.00334
-2.28100,1.07272,-1.49266,-1.70231,0.05078,2.06606,0.00334
-2.28254,1.07236,-1.49297,-1.70269,0.05147,2.06641,0.00334
-2.28408,1.07201,-1.49328,-1.70307,0.05215,2.06675,0.00334
-2.28563,1.07167,-1.49358,-1.70344,0.05282,2.06709,0.00333
-2.28717,1.07133,-1.49387,-1.70380,0.05348,2.06742,0.00333
-2.28871,1.07100,-1.49416,-1.70416,0.05412,2.06775,0.00333
-2.29025,1.07067,-1.49445,-1.70451,0.05476,2.06807,0.00333
-2.29180,1.07035,-1.49473,-1.70485,0.05538,2.06838,0.00333
-2.29334,1.07004,-1.49501,-1.70519,0.05599,2.06869,0.00332
-2.29488,1.06973,-1.49528,-1.70552,0.05659,2.06899,0.00332
-2.29642,1.06942,-1.49554,-1.70584,0.05718,2.06929,0.00332
-2.29796,1.06912,-1.49581,-1.70616,0.05776,2.06958,0.00332
-2.29951,1.06883,-1.49606,-1.70647,0.05833,2.06987,0.00332
-2.30105,1.06854,-1.49632,-1.70678,0.05889,2.07016,0.00332
-2.30259,1.06826,-1.49656,-1.70708,0.05944,2.07043,0.00331
-2.30413,1.06798,-1.49681,-1.70737,0.05998,2.07071,0.00331
-2.30568,1.06771,-1.49705,-1.70766,0.06051,2.07098,0.00331
-2.30722,1.06744,-1.49728,-1.70794,0.06103,2.07124,0.00331
-2.30876,1.06717,-1.49752,-1.70822,0.06154,2.07150,0.00331
-2.31030,1.06692,-1.49774,-1.70850,0.06205,2.07176,0.00331
-2.31184,1.06666,-1.49797,-1.70876,0.06254,2.07201,0.00331
-2.31339,1.06641,-1.49819,-1.70903,0.06303,2.07225,0.00331
-2.31493,1.06616,-1.49841,-1.70929,0.06350,2.07250,0.00331
-2.31647,1.06592,-1.49862,-1.70954,0.06397,2.07273,0.00331
-2.31801,1.06569,-1.49883,-1.70979,0.06443,2.07297,0.00331
-2.31956,1.06545,-1.49903,-1.71003,0.06488,2.07320,0.00331
-2.32110,1.06522,-1.49923,-1.71027,0.06533,2.07342,0.00331
-2.32264,1.06500,-1.49943,-1.71051,0.06576,2.07365,0.00331
-2.32418,1.06478,-1.49963,-1.71074,0.06619,2.07386,0.00331
-2.32572,1.06458,-1.49980,-1.71095,0.06657,2.07406,0.00331
-2.32727,1.06435,-1.50001,-1.71117,0.06701,2.07429,0.00331
-2.32881,1.06412,-1.50021,-1.71140,0.06744,2.07451,0.00331
-2.33035,1.06389,-1.50040,-1.71162,0.06786,2.07473,0.00331
-2.33189,1.06382,-1.50047,-1.71170,0.06800,2.07480,0.00331
-2.33344,1.06357,-1.50070,-1.71201,0.06855,2.07506,0.00330
-2.33498,1.06331,-1.50094,-1.71233,0.06910,2.07531,0.00330
-2.33652,1.06306,-1.50116,-1.71263,0.06963,2.07555,0.00330
-2.33806,1.06282,-1.50139,-1.71294,0.07016,2.07579,0.00330
-2.33961,1.06258,-1.50161,-1.71323,0.07068,2.07603,0.00330
-2.34115,1.06234,-1.50182,-1.71352,0.07118,2.07626,0.00330
-2.34269,1.06211,-1.50204,-1.71381,0.07168,2.07648,0.00330
-2.34423,1.06189,-1.50224,-1.71409,0.07217,2.07671,0.00330
-2.34577,1.06166,-1.50245,-1.71436,0.07265,2.07693,0.00330
-2.34732,1.06144,-1.50265,-1.71463,0.07313,2.07714,0.00330
-2.34886,1.06123,-1.50285,-1.71490,0.07359,2.07736,0.00330
-2.35040,1.06101,-1.50304,-1.71515,0.07405,2.07757,0.00330
-2.35194,1.06081,-1.50324,-1.71541,0.07450,2.07777,0.00330
-2.35349,1.06060,-1.50342,-1.71566,0.07494,2.07797,0.00330
-2.35503,1.06040,-1.50361,-1.71591,0.07537,2.07817,0.00329
-2.35657,1.06034,-1.50366,-1.71598,0.07550,2.07823,0.00329
-2.35811,1.06013,-1.50386,-1.71621,0.07592,2.07844,0.00329
-2.35965,1.06008,-1.50390,-1.71626,0.07601,2.07849,0.00329
-2.36120,1.05987,-1.50410,-1.71653,0.07649,2.07869,0.00329
-2.36274,1.05966,-1.50429,-1.71680,0.07696,2.07890,0.00329
-2.36428,1.05946,-1.50448,-1.71707,0.07741,2.07910,0.00329
-2.36582,1.05926,-1.50467,-1.71733,0.07787,2.07929,0.00329
-2.36737,1.05906,-1.50485,-1.71759,0.07831,2.07949,0.00329
-2.36891,1.05887,-1.50503,-1.71784,0.07874,2.07968,0.00329
-2.37045,1.05881,-1.50509,-1.71792,0.07887,2.07973,0.00329
-2.37199,1.05862,-1.50526,-1.71819,0.07932,2.07992,0.00329
-2.37353,1.05844,-1.50544,-1.71845,0.07976,2.08010,0.00329
-2.37508,1.05840,-1.50547,-1.71850,0.07985,2.08014,0.00329
-2.37662,1.05822,-1.50565,-1.71877,0.08029,2.08032,0.00329
-2.37816,1.05804,-1.50582,-1.71904,0.08073,2.08050,0.00329
-2.37970,1.05805,-1.50582,-1.71912,0.08081,2.08049,0.00329
-2.38125,1.05819,-1.50571,-1.71938,0.08097,2.08035,0.00329
-2.38279,1.05878,-1.50524,-1.72001,0.08113,2.07977,0.00330
-2.38433,1.05936,-1.50477,-1.72063,0.08129,2.07920,0.00330
-2.38587,1.05994,-1.50432,-1.72123,0.08144,2.07864,0.00331
-2.38742,1.06050,-1.50387,-1.72183,0.08159,2.07809,0.00331
-2.38896,1.06105,-1.50343,-1.72241,0.08174,2.07755,0.00332
-2.39050,1.06160,-1.50299,-1.72299,0.08189,2.07701,0.00332
-2.39204,1.06213,-1.50257,-1.72355,0.08203,2.07648,0.00333
-2.39358,1.06266,-1.50215,-1.72411,0.08217,2.07597,0.00333
-2.39513,1.06318,-1.50173,-1.72465,0.08231,2.07546,0.00334
-2.39667,1.06369,-1.50133,-1.72519,0.08245,2.07495,0.00334
-2.39821,1.06419,-1.50093,-1.72572,0.08258,2.07446,0.00335
-2.39975,1.06469,-1.50054,-1.72624,0.08271,2.07397,0.00335
-2.40130,1.06518,-1.50015,-1.72675,0.08284,2.07349,0.00336
-2.40284,1.06566,-1.49977,-1.72725,0.08297,2.07302,0.00336
-2.40438,1.06613,-1.49940,-1.72774,0.08309,2.07256,0.00337
-2.40592,1.06659,-1.49904,-1.72823,0.08322,2.07210,0.00337
-2.40746,1.06705,-1.49868,-1.72870,0.08334,2.07165,0.00338
-2.40901,1.06750,-1.49832,-1.72917,0.08346,2.07121,0.00338
-2.41055,1.06794,-1.49797,-1.72963,0.08357,2.07077,0.00338
-2.41209,1.06837,-1.49763,-1.73009,0.08369,2.07034,0.00339
-2.41363,1.06880,-1.49729,-1.73053,0.08380,2.06992,0.00339
-2.41518,1.06922,-1.49696,-1.73097,0.08391,2.06951,0.00340
-2.41672,1.06964,-1.49664,-1.73140,0.08402,2.06910,0.00340
-2.41826,1.07005,-1.49632,-1.73182,0.08413,2.06869,0.00340
-2.41980,1.07045,-1.49601,-1.73224,0.08424,2.06830,0.00341
-2.42134,1.07084,-1.49570,-1.73265,0.08434,2.06791,0.00341
-2.42289,1.07123,-1.49539,-1.73305,0.08444,2.06752,0.00341
-2.42443,1.07136,-1.49529,-1.73318,0.08447,2.06740,0.00342
-2.42597,1.07187,-1.49489,-1.73362,0.08452,2.06690,0.00342
-2.42751,1.07237,-1.49449,-1.73406,0.08456,2.06640,0.00342
-2.42906,1.07286,-1.49411,-1.73449,0.08461,2.06592,0.00343
-2.43060,1.07334,-1.49372,-1.73492,0.08465,2.06544,0.00343
-2.43214,1.07382,-1.49335,-1.73533,0.08470,2.06497,0.00344
-2.43368,1.07428,-1.49298,-1.73574,0.08474,2.06451,0.00344
-2.43523,1.07475,-1.49262,-1.73614,0.08479,2.06405,0.00345
-2.43677,1.07520,-1.49226,-1.73654,0.08483,2.06360,0.00345
-2.43831,1.07565,-1.49191,-1.73693,0.08487,2.06316,0.00345
-2.43985,1.07608,-1.49157,-1.73731,0.08491,2.06273,0.00346
-2.44139,1.07652,-1.49123,-1.73769,0.08495,2.06230,0.00346
-2.44294,1.07694,-1.49090,-1.73806,0.08499,2.06188,0.00346
-2.44448,1.07736,-1.49057,-1.73842,0.08503,2.06147,0.00347
-2.44602,1.07777,-1.49025,-1.73878,0.08507,2.06106,0.00347
-2.44756,1.07818,-1.48992,-1.73913,0.08510,2.06065,0.00347
-2.44911,1.07867,-1.48954,-1.73951,0.08509,2.06016,0.00348
-2.45065,1.07916,-1.48916,-1.73987,0.08508,2.05968,0.00348
-2.45219,1.07963,-1.48878,-1.74023,0.08507,2.05922,0.00349
-2.45373,1.08010,-1.48841,-1.74058,0.08506,2.05875,0.00349
-2.45527,1.08056,-1.48805,-1.74093,0.08505,2.05830,0.00349
-2.45682,1.08101,-1.48770,-1.74127,0.08504,2.05785,0.00350
-2.45836,1.08146,-1.48735,-1.74161,0.08503,2.05741,0.00350
-2.45990,1.08189,-1.48701,-1.74194,0.08502,2.05697,0.00350
-2.46144,1.08232,-1.48667,-1.74226,0.08501,2.05655,0.00351
-2.46299,1.08275,-1.48634,-1.74258,0.08500,2.05613,0.00351
-2.46453,1.08316,-1.48601,-1.74290,0.08499,2.05571,0.00351
-2.46607,1.08337,-1.48585,-1.74303,0.08496,2.05551,0.00352
-2.46761,1.08421,-1.48518,-1.74342,0.08469,2.05469,0.00352
-2.46915,1.08503,-1.48452,-1.74380,0.08442,2.05388,0.00353
-2.47070,1.08583,-1.48387,-1.74418,0.08415,2.05308,0.00354
-2.47224,1.08663,-1.48324,-1.74455,0.08390,2.05230,0.00354
-2.47378,1.08741,-1.48262,-1.74491,0.08364,2.05153,0.00355
-2.47532,1.08818,-1.48200,-1.74527,0.08339,2.05077,0.00356
-2.47687,1.08894,-1.48140,-1.74562,0.08314,2.05002,0.00356
-2.47841,1.08968,-1.48081,-1.74597,0.08290,2.04928,0.00357
-2.47995,1.09042,-1.48023,-1.74631,0.08266,2.04856,0.00357
-2.48149,1.09114,-1.47966,-1.74664,0.08243,2.04784,0.00358
-2.48304,1.09185,-1.47910,-1.74697,0.08220,2.04714,0.00358
-2.48458,1.09255,-1.47854,-1.74729,0.08198,2.04645,0.00359
-2.48612,1.09324,-1.47800,-1.74761,0.08175,2.04576,0.00359
-2.48766,1.09392,-1.47747,-1.74792,0.08154,2.04509,0.00360
-2.48920,1.09459,-1.47695,-1.74822,0.08132,2.04443,0.00360
-2.49075,1.09524,-1.47643,-1.74853,0.08111,2.04378,0.00361
-2.49229,1.09589,-1.47593,-1.74882,0.08091,2.04314,0.00361
-2.49383,1.09653,-1.47543,-1.74911,0.08070,2.04251,0.00362
-2.49537,1.09715,-1.47494,-1.74940,0.08050,2.04189,0.00362
-2.49692,1.09777,-1.47447,-1.74968,0.08031,2.04128,0.00363
-2.49846,1.09837,-1.47399,-1.74995,0.08011,2.04068,0.00363
-2.50000,1.09897,-1.47353,-1.75022,0.07993,2.04009,0.00363
-2.50154,1.09956,-1.47308,-1.75049,0.07974,2.03951,0.00364
-2.50308,1.10014,-1.47263,-1.75075,0.07956,2.03893,0.00364
-2.50463,1.10070,-1.47219,-1.75101,0.07938,2.03837,0.00365
-2.50617,1.10126,-1.47176,-1.75126,0.07920,2.03781,0.00365
-2.50771,1.10181,-1.47134,-1.75151,0.07903,2.03726,0.00365
-2.50925,1.10236,-1.47092,-1.75176,0.07886,2.03673,0.00366
-2.51080,1.10289,-1.47051,-1.75200,0.07869,2.03620,0.00366
-2.51234,1.10341,-1.47011,-1.75224,0.07853,2.03567,0.00366
-2.51388,1.10393,-1.46971,-1.75247,0.07837,2.03516,0.00367
-2.51542,1.10444,-1.46933,-1.75270,0.07821,2.03466,0.00367
-2.51696,1.10494,-1.46894,-1.75292,0.07805,2.03416,0.00367
-2.51851,1.10543,-1.46857,-1.75315,0.07790,2.03367,0.00367
-2.52005,1.10591,-1.46820,-1.75336,0.07775,2.03319,0.00368
-2.52159,1.10639,-1.46784,-1.75358,0.07760,2.03271,0.00368
-2.52313,1.10686,-1.46748,-1.75379,0.07746,2.03224,0.00368
-2.52468,1.10732,-1.46713,-1.75399,0.07731,2.03178,0.00368
-2.52622,1.10777,-1.46679,-1.75420,0.07717,2.03133,0.00369
-2.52776,1.10822,-1.46645,-1.75440,0.07704,2.03089,0.00369
-2.52930,1.10866,-1.46612,-1.75460,0.07690,2.03045,0.00369
-2.53085,1.10909,-1.46579,-1.75479,0.07677,2.03002,0.00369
-2.53239,1.10940,-1.46556,-1.75493,0.07667,2.02971,0.00370
-2.53393,1.10996,-1.46513,-1.75514,0.07647,2.02916,0.00370
-2.53547,1.11050,-1.46472,-1.75536,0.07627,2.02861,0.00370
-2.53701,1.11104,-1.46431,-1.75556,0.07607,2.02808,0.00371
-2.53856,1.11157,-1.46392,-1.75577,0.07588,2.02756,0.00371
-2.54010,1.11209,-1.46352,-1.75597,0.07569,2.02704,0.00371
-2.54164,1.11260,-1.46314,-1.75617,0.07550,2.02653,0.00371
-2.54318,1.11310,-1.46276,-1.75637,0.07532,2.02603,0.00372
-2.54473,1.11360,-1.46239,-1.75656,0.07514,2.02554,0.00372
-2.54627,1.11408,-1.46202,-1.75675,0.07496,2.02505,0.00372
-2.54781,1.11456,-1.46166,-1.75693,0.07479,2.02457,0.00372
-2.54935,1.11504,-1.46131,-1.75712,0.07462,2.02410,0.00373
-2.55089,1.11550,-1.46096,-1.75730,0.07445,2.02364,0.00373
-2.55244,1.11596,-1.46062,-1.75747,0.07429,2.02319,0.00373
-2.55398,1.11641,-1.46028,-1.75765,0.07412,2.02274,0.00373
-2.55552,1.11685,-1.45995,-1.75782,0.07397,2.02230,0.00374
-2.55706,1.11728,-1.45963,-1.75799,0.07381,2.02186,0.00374
-2.55861,1.11775,-1.45928,-1.75816,0.07363,2.02140,0.00374
-2.56015,1.11856,-1.45867,-1.75837,0.07324,2.02060,0.00374
-2.56169,1.11935,-1.45807,-1.75858,0.07285,2.01981,0.00375
-2.56323,1.12013,-1.45748,-1.75878,0.07246,2.01904,0.00375
-2.56477,1.12090,-1.45690,-1.75899,0.07209,2.01828,0.00376
-2.56632,1.12166,-1.45633,-1.75918,0.07172,2.01753,0.00376
-2.56786,1.12240,-1.45577,-1.75938,0.07136,2.01679,0.00377
-2.56940,1.12314,-1.45522,-1.75957,0.07100,2.01606,0.00377
-2.57094,1.12386,-1.45468,-1.75976,0.07065,2.01535,0.00378
-2.57249,1.12457,-1.45415,-1.75994,0.07031,2.01464,0.00378
-2.57403,1.12527,-1.45363,-1.76012,0.06997,2.01395,0.00379
-2.57557,1.12596,-1.45312,-1.76030,0.06964,2.01327,0.00379
-2.57711,1.12664,-1.45262,-1.76048,0.06931,2.01260,0.00379
-2.57866,1.12730,-1.45212,-1.76065,0.06899,2.01193,0.00380
-2.58020,1.12796,-1.45164,-1.76082,0.06867,2.01128,0.00380
-2.58174,1.12861,-1.45116,-1.76098,0.06836,2.01064,0.00380
-2.58328,1.12924,-1.45069,-1.76115,0.06806,2.01001,0.00381
-2.58482,1.12987,-1.45023,-1.76131,0.06776,2.00939,0.00381
-2.58637,1.13048,-1.44978,-1.76147,0.06747,2.00878,0.00381
-2.58791,1.13109,-1.44934,-1.76162,0.06718,2.00817,0.00382
-2.58945,1.13169,-1.44890,-1.76178,0.06689,2.00758,0.00382
-2.59099,1.13227,-1.44847,-1.76193,0.06662,2.00700,0.00382
-2.59254,1.13285,-1.44805,-1.76207,0.06634,2.00642,0.00382
-2.59408,1.13342,-1.44764,-1.76222,0.06607,2.00586,0.00383
-2.59562,1.13398,-1.44723,-1.76236,0.06581,2.00530,0.00383
-2.59716,1.13453,-1.44683,-1.76250,0.06555,2.00475,0.00383
-2.59870,1.13507,-1.44644,-1.76264,0.06529,2.00421,0.00383
-2.60025,1.13560,-1.44605,-1.76278,0.06504,2.00368,0.00384
-2.60179,1.13613,-1.44568,-1.76291,0.06480,2.00316,0.00384
-2.60333,1.13665,-1.44530,-1.76304,0.06456,2.00264,0.00384
-2.60487,1.13715,-1.44494,-1.76317,0.06432,2.00214,0.00384
-2.60642,1.13765,-1.44458,-1.76330,0.06408,2.00164,0.00384
-2.60796,1.13815,-1.44422,-1.76342,0.06385,2.00115,0.00385
-2.60950,1.13863,-1.44388,-1.76354,0.06363,2.00066,0.00385
-2.61104,1.13911,-1.44354,-1.76367,0.06341,2.00019,0.00385
-2.61258,1.13958,-1.44320,-1.76378,0.06319,1.99972,0.00385
-2.61413,1.14004,-1.44287,-1.76390,0.06298,1.99926,0.00385
-2.61567,1.14049,-1.44255,-1.76402,0.06277,1.99881,0.00385
-2.61721,1.14094,-1.44223,-1.76413,0.06256,1.99836,0.00386
-2.61875,1.14138,-1.44192,-1.76424,0.06236,1.99792,0.00386
-2.62030,1.14181,-1.44161,-1.76435,0.06216,1.99749,0.00386
-2.62184,1.14191,-1.44154,-1.76437,0.06211,1.99739,0.00386
-2.62338,1.14243,-1.44117,-1.76450,0.06187,1.99687,0.00386
-2.62492,1.14294,-1.44080,-1.76463,0.06162,1.99636,0.00386
-2.62647,1.14345,-1.44044,-1.76475,0.06139,1.99585,0.00386
-2.62801,1.14395,-1.44009,-1.76487,0.06115,1.99536,0.00387
-2.62955,1.14444,-1.43974,-1.76499,0.06092,1.99487,0.00387
-2.63109,1.14492,-1.43940,-1.76510,0.06069,1.99438,0.00387
-2.63263,1.14540,-1.43907,-1.76522,0.06047,1.99391,0.00387
-2.63418,1.14586,-1.43874,-1.76533,0.06025,1.99344,0.00387
-2.63572,1.14632,-1.43841,-1.76544,0.06004,1.99298,0.00387
-2.63726,1.14678,-1.43809,-1.76555,0.05983,1.99253,0.00388
-2.63880,1.14722,-1.43778,-1.76566,0.05962,1.99209,0.00388
-2.64035,1.14766,-1.43747,-1.76577,0.05942,1.99165,0.00388
-2.64189,1.14801,-1.43723,-1.76584,0.05925,1.99130,0.00388
-2.64343,1.14887,-1.43661,-1.76597,0.05876,1.99045,0.00389
-2.64497,1.14972,-1.43600,-1.76609,0.05827,1.98961,0.00389
-2.64651,1.15056,-1.43541,-1.76621,0.05780,1.98878,0.00389
-2.64806,1.15139,-1.43482,-1.76632,0.05733,1.98796,0.00390
-2.64960,1.15220,-1.43424,-1.76644,0.05687,1.98716,0.00390
-2.65114,1.15300,-1.43368,-1.76655,0.05642,1.98636,0.00391
-2.65268,1.15379,-1.43312,-1.76666,0.05597,1.98559,0.00391
-2.65423,1.15456,-1.43258,-1.76677,0.05554,1.98482,0.00392
-2.65577,1.15533,-1.43204,-1.76688,0.05511,1.98406,0.00392
-2.65731,1.15608,-1.43152,-1.76699,0.05469,1.98332,0.00392
-2.65885,1.15682,-1.43100,-1.76709,0.05427,1.98258,0.00393
-2.66039,1.15754,-1.43049,-1.76719,0.05387,1.98186,0.00393
-2.66194,1.15826,-1.42999,-1.76729,0.05347,1.98115,0.00393
-2.66348,1.15896,-1.42950,-1.76739,0.05308,1.98045,0.00394
-2.66502,1.15966,-1.42902,-1.76748,0.05269,1.97976,0.00394
-2.66656,1.16034,-1.42855,-1.76758,0.05231,1.97909,0.00394
-2.66811,1.16101,-1.42808,-1.76767,0.05194,1.97842,0.00394
-2.66965,1.16168,-1.42763,-1.76776,0.05157,1.97776,0.00395
-2.67119,1.16233,-1.42718,-1.76785,0.05121,1.97711,0.00395
-2.67273,1.16297,-1.42674,-1.76794,0.05086,1.97648,0.00395
-2.67428,1.16360,-1.42631,-1.76803,0.05051,1.97585,0.00396
-2.67582,1.16422,-1.42588,-1.76811,0.05017,1.97523,0.00396
-2.67736,1.16483,-1.42546,-1.76820,0.04984,1.97462,0.00396
-2.67890,1.16543,-1.42505,-1.76828,0.04951,1.97403,0.00396
-2.68044,1.16602,-1.42465,-1.76836,0.04918,1.97344,0.00396
-2.68199,1.16661,-1.42425,-1.76844,0.04887,1.97286,0.00397
-2.68353,1.16718,-1.42386,-1.76852,0.04855,1.97228,0.00397
-2.68507,1.16774,-1.42348,-1.76860,0.04825,1.97172,0.00397
-2.68661,1.16830,-1.42311,-1.76867,0.04795,1.97117,0.00397
-2.68816,1.16885,-1.42274,-1.76875,0.04765,1.97062,0.00397
-2.68970,1.16938,-1.42237,-1.76882,0.04736,1.97009,0.00398
-2.69124,1.16991,-1.42202,-1.76890,0.04707,1.96956,0.00398
-2.69278,1.17043,-1.42167,-1.76897,0.04679,1.96904,0.00398
-2.69432,1.17095,-1.42132,-1.76904,0.04652,1.96853,0.00398
-2.69587,1.17145,-1.42099,-1.76911,0.04625,1.96802,0.00398
-2.69741,1.17195,-1.42065,-1.76918,0.04598,1.96753,0.00398
-2.69895,1.17244,-1.42033,-1.76924,0.04572,1.96704,0.00398
-2.70049,1.17292,-1.42001,-1.76931,0.04546,1.96656,0.00399
-2.70204,1.17339,-1.41969,-1.76937,0.04521,1.96609,0.00399
-2.70358,1.17386,-1.41938,-1.76944,0.04496,1.96562,0.00399
-2.70512,1.17432,-1.41908,-1.76950,0.04471,1.96516,0.00399
-2.70666,1.17477,-1.41878,-1.76956,0.04448,1.96471,0.00399
-2.70820,1.17521,-1.41848,-1.76962,0.04424,1.96427,0.00399
-2.70975,1.17565,-1.41819,-1.76968,0.04400,1.96383,0.00399
-2.71129,1.17615,-1.41786,-1.76972,0.04371,1.96333,0.00399
-2.71283,1.17663,-1.41754,-1.76975,0.04342,1.96285,0.00400
-2.71437,1.17711,-1.41722,-1.76978,0.04313,1.96238,0.00400
-2.71592,1.17758,-1.41691,-1.76982,0.04285,1.96191,0.00400
-2.71746,1.17804,-1.41661,-1.76985,0.04257,1.96145,0.00400
-2.71900,1.17849,-1.41631,-1.76988,0.04230,1.96099,0.00400
-2.72054,1.17894,-1.41601,-1.76991,0.04204,1.96055,0.00400
-2.72209,1.17938,-1.41572,-1.76994,0.04178,1.96011,0.00400
-2.72363,1.17981,-1.41544,-1.76997,0.04152,1.95968,0.00400
-2.72517,1.18008,-1.41526,-1.76999,0.04136,1.95940,0.00401
-2.72671,1.18065,-1.41488,-1.77000,0.04099,1.95884,0.00401
-2.72825,1.18120,-1.41451,-1.77001,0.04063,1.95829,0.00401
-2.72980,1.18175,-1.41415,-1.77002,0.04027,1.95774,0.00401
-2.73134,1.18229,-1.41379,-1.77003,0.03992,1.95720,0.00401
-2.73288,1.18282,-1.41344,-1.77004,0.03958,1.95668,0.00402
-2.73442,1.18335,-1.41309,-1.77005,0.03924,1.95616,0.00402
-2.73597,1.18386,-1.41275,-1.77005,0.03891,1.95564,0.00402
-2.73751,1.18437,-1.41242,-1.77006,0.03858,1.95514,0.00402
-2.73905,1.18487,-1.41209,-1.77007,0.03826,1.95464,0.00402
-2.74059,1.18536,-1.41177,-1.77008,0.03795,1.95415,0.00403
-2.74213,1.18584,-1.41146,-1.77009,0.03764,1.95367,0.00403
-2.74368,1.18632,-1.41115,-1.77010,0.03734,1.95320,0.00403
-2.74522,1.18678,-1.41084,-1.77011,0.03704,1.95273,0.00403
-2.74676,1.18724,-1.41054,-1.77011,0.03674,1.95227,0.00403
-2.74830,1.18770,-1.41025,-1.77012,0.03646,1.95182,0.00403
-2.74985,1.18814,-1.40996,-1.77013,0.03617,1.95138,0.00403
-2.75139,1.18858,-1.40967,-1.77014,0.03590,1.95094,0.00403
-2.75293,1.18901,-1.40939,-1.77015,0.03562,1.95051,0.00404
-2.75447,1.18940,-1.40915,-1.77015,0.03538,1.95012,0.00404
-2.75601,1.18984,-1.40886,-1.77013,0.03507,1.94968,0.00404
-2.75756,1.19027,-1.40858,-1.77011,0.03477,1.94925,0.00404
-2.75910,1.19070,-1.40830,-1.77010,0.03447,1.94883,0.00404
-2.76064,1.19112,-1.40803,-1.77008,0.03418,1.94841,0.00404
-2.76218,1.19137,-1.40787,-1.77007,0.03401,1.94816,0.00404
-2.76373,1.19182,-1.40758,-1.77005,0.03370,1.94771,0.00404
-2.76527,1.19226,-1.40729,-1.77004,0.03340,1.94727,0.00405
-2.76681,1.19270,-1.40701,-1.77002,0.03310,1.94683,0.00405
-2.76835,1.19313,-1.40674,-1.77001,0.03281,1.94640,0.00405
-2.76990,1.19355,-1.40647,-1.76999,0.03252,1.94598,0.00405
-2.77144,1.19380,-1.40630,-1.76998,0.03235,1.94573,0.00405
-2.77298,1.19423,-1.40603,-1.76996,0.03204,1.94530,0.00405
-2.77452,1.19466,-1.40575,-1.76994,0.03175,1.94487,0.00405
-2.77606,1.19508,-1.40548,-1.76992,0.03145,1.94446,0.00405
-2.77761,1.19529,-1.40535,-1.76991,0.03131,1.94425,0.00406
-2.77915,1.19572,-1.40507,-1.76988,0.03100,1.94382,0.00406
-2.78069,1.19614,-1.40480,-1.76985,0.03070,1.94340,0.00406
-2.78223,1.19656,-1.40454,-1.76982,0.03040,1.94298,0.00406
-2.78378,1.19676,-1.40441,-1.76980,0.03026,1.94278,0.00406
-2.78532,1.19717,-1.40415,-1.76976,0.02995,1.94237,0.00406
-2.78686,1.19734,-1.40404,-1.76973,0.02982,1.94220,0.00406
-2.78840,1.19780,-1.40374,-1.76964,0.02943,1.94174,0.00406
-2.78994,1.19825,-1.40345,-1.76955,0.02904,1.94129,0.00407
-2.79149,1.19870,-1.40316,-1.76946,0.02867,1.94085,0.00407
-2.79303,1.19914,-1.40288,-1.76938,0.02830,1.94041,0.00407
-2.79457,1.19957,-1.40260,-1.76929,0.02793,1.93998,0.00407
-2.79611,1.20000,-1.40233,-1.76921,0.02758,1.93956,0.00407
-2.79766,1.20042,-1.40206,-1.76913,0.02723,1.93914,0.00407
-2.79920,1.20083,-1.40180,-1.76905,0.02688,1.93873,0.00407
-2.80074,1.20124,-1.40154,-1.76897,0.02655,1.93832,0.00408
-2.80228,1.20163,-1.40129,-1.76889,0.02621,1.93792,0.00408
-2.80382,1.20203,-1.40104,-1.76881,0.02589,1.93753,0.00408
-2.80537,1.20211,-1.40099,-1.76880,0.02582,1.93745,0.00408
-2.80691,1.20251,-1.40073,-1.76871,0.02548,1.93705,0.00408
-2.80845,1.20291,-1.40048,-1.76863,0.02514,1.93665,0.00408
-2.80999,1.20331,-1.40023,-1.76855,0.02481,1.93626,0.00408
-2.81154,1.20350,-1.40011,-1.76851,0.02464,1.93606,0.00408
-2.81308,1.20389,-1.39986,-1.76839,0.02428,1.93568,0.00409
-2.81462,1.20427,-1.39962,-1.76828,0.02392,1.93530,0.00409
-2.81616,1.20464,-1.39939,-1.76816,0.02358,1.93493,0.00409
-2.81771,1.20472,-1.39934,-1.76814,0.02350,1.93485,0.00409
-2.81925,1.20510,-1.39909,-1.76802,0.02314,1.93447,0.00409
-2.82079,1.20548,-1.39885,-1.76790,0.02278,1.93409,0.00409
-2.82233,1.20586,-1.39862,-1.76779,0.02243,1.93372,0.00409
-2.82387,1.20605,-1.39850,-1.76773,0.02225,1.93353,0.00409
-2.82542,1.20643,-1.39826,-1.76761,0.02189,1.93314,0.00409
-2.82696,1.20681,-1.39802,-1.76749,0.02153,1.93276,0.00410
-2.82850,1.20719,-1.39778,-1.76737,0.02117,1.93239,0.00410
-2.83004,1.20742,-1.39764,-1.76730,0.02095,1.93216,0.00410
-2.83159,1.20789,-1.39733,-1.76708,0.02043,1.93169,0.00410
-2.83313,1.20836,-1.39704,-1.76686,0.01992,1.93123,0.00410
-2.83467,1.20882,-1.39675,-1.76665,0.01942,1.93078,0.00410
-2.83621,1.20927,-1.39646,-1.76645,0.01893,1.93033,0.00411
-2.83775,1.20971,-1.39618,-1.76624,0.01845,1.92989,0.00411
-2.83930,1.21015,-1.39591,-1.76604,0.01797,1.92946,0.00411
-2.84084,1.21058,-1.39564,-1.76585,0.01751,1.92903,0.00411
-2.84238,1.21100,-1.39537,-1.76566,0.01705,1.92861,0.00411
-2.84392,1.21142,-1.39512,-1.76547,0.01660,1.92820,0.00412
-2.84547,1.21183,-1.39486,-1.76528,0.01616,1.92779,0.00412
-2.84701,1.21223,-1.39461,-1.76510,0.01573,1.92739,0.00412
-2.84855,1.21262,-1.39436,-1.76492,0.01530,1.92700,0.00412
-2.85009,1.21301,-1.39412,-1.76474,0.01488,1.92661,0.00412
-2.85163,1.21340,-1.39389,-1.76457,0.01447,1.92623,0.00412
-2.85318,1.21378,-1.39365,-1.76440,0.01407,1.92585,0.00413
-2.85472,1.21415,-1.39342,-1.76423,0.01367,1.92548,0.00413
-2.85626,1.21451,-1.39320,-1.76407,0.01328,1.92512,0.00413
-2.85780,1.21487,-1.39298,-1.76390,0.01289,1.92476,0.00413
-2.85935,1.21523,-1.39276,-1.76375,0.01252,1.92441,0.00413
-2.86089,1.21547,-1.39261,-1.76363,0.01225,1.92417,0.00413
-2.86243,1.21584,-1.39239,-1.76343,0.01182,1.92380,0.00413
-2.86397,1.21620,-1.39217,-1.76323,0.01140,1.92344,0.00413
-2.86552,1.21655,-1.39195,-1.76303,0.01099,1.92309,0.00413
-2.86706,1.21690,-1.39173,-1.76284,0.01058,1.92274,0.00414
-2.86860,1.21725,-1.39153,-1.76265,0.01018,1.92240,0.00414
-2.87014,1.21759,-1.39132,-1.76247,0.00979,1.92206,0.00414
-2.87168,1.21790,-1.39113,-1.76230,0.00943,1.92176,0.00414
-2.87323,1.21833,-1.39087,-1.76207,0.00894,1.92132,0.00414
-2.87477,1.21876,-1.39060,-1.76185,0.00845,1.92090,0.00414
-2.87631,1.21918,-1.39035,-1.76163,0.00798,1.92048,0.00414
-2.87785,1.21960,-1.39009,-1.76141,0.00751,1.92007,0.00415
-2.87940,1.22000,-1.38985,-1.76120,0.00705,1.91967,0.00415
-2.88094,1.22041,-1.38960,-1.76099,0.00660,1.91927,0.00415
-2.88248,1.22080,-1.38937,-1.76079,0.00615,1.91887,0.00415
-2.88402,1.22119,-1.38913,-1.76059,0.00572,1.91849,0.00415
-2.88556,1.22157,-1.38890,-1.76039,0.00529,1.91811,0.00415
-2.88711,1.22195,-1.38868,-1.76020,0.00487,1.91773,0.00415
-2.88865,1.22232,-1.38845,-1.76000,0.00446,1.91737,0.00416
-2.89019,1.22269,-1.38824,-1.75982,0.00405,1.91700,0.00416
-2.89173,1.22305,-1.38802,-1.75963,0.00365,1.91665,0.00416
-2.89328,1.22340,-1.38781,-1.75945,0.00326,1.91630,0.00416
-2.89482,1.22375,-1.38761,-1.75927,0.00287,1.91595,0.00416
-2.89636,1.22402,-1.38745,-1.75913,0.00256,1.91568,0.00416
-2.89790,1.22436,-1.38724,-1.75890,0.00213,1.91534,0.00416
-2.89944,1.22469,-1.38705,-1.75867,0.00170,1.91501,0.00416
-2.90099,1.22502,-1.38685,-1.75845,0.00129,1.91469,0.00416
-2.90253,1.22534,-1.38666,-1.75823,0.00088,1.91436,0.00416
-2.90407,1.22566,-1.38648,-1.75801,0.00047,1.91405,0.00417
-2.90561,1.22585,-1.38636,-1.75788,0.00023,1.91386,0.00417
-2.90716,1.22618,-1.38617,-1.75764,-0.00021,1.91353,0.00417
-2.90870,1.22651,-1.38598,-1.75741,-0.00063,1.91321,0.00417
-2.91024,1.22683,-1.38579,-1.75718,-0.00105,1.91289,0.00417
-2.91178,1.22714,-1.38560,-1.75695,-0.00147,1.91257,0.00417
-2.91333,1.22745,-1.38542,-1.75673,-0.00187,1.91227,0.00417
-2.91487,1.22755,-1.38537,-1.75666,-0.00200,1.91217,0.00417
-2.91641,1.22787,-1.38518,-1.75641,-0.00244,1.91185,0.00417
-2.91795,1.22820,-1.38499,-1.75617,-0.00287,1.91153,0.00417
-2.91949,1.22851,-1.38481,-1.75593,-0.00329,1.91122,0.00417
-2.92104,1.22882,-1.38463,-1.75569,-0.00371,1.91091,0.00418
-2.92258,1.22913,-1.38445,-1.75546,-0.00412,1.91060,0.00418
-2.92412,1.22925,-1.38438,-1.75537,-0.00428,1.91048,0.00418
-2.92566,1.22955,-1.38421,-1.75513,-0.00470,1.91019,0.00418
-2.92721,1.22984,-1.38403,-1.75489,-0.00511,1.90989,0.00418
-2.92875,1.23016,-1.38385,-1.75466,-0.00552,1.90958,0.00418
-2.93029,1.23031,-1.38377,-1.75455,-0.00572,1.90943,0.00418
-2.93183,1.23061,-1.38359,-1.75431,-0.00614,1.90913,0.00418
-2.93337,1.23091,-1.38342,-1.75407,-0.00655,1.90883,0.00418
-2.93492,1.23123,-1.38324,-1.75385,-0.00695,1.90852,0.00418
-2.93646,1.23139,-1.38315,-1.75374,-0.00715,1.90836,0.00418
-2.93800,1.23172,-1.38296,-1.75353,-0.00755,1.90803,0.00418
-2.93954,1.23191,-1.38285,-1.75341,-0.00779,1.90784,0.00418
-2.94109,1.23223,-1.38266,-1.75319,-0.00819,1.90752,0.00418
-2.94263,1.23255,-1.38248,-1.75297,-0.00859,1.90720,0.00419
-2.94417,1.23288,-1.38229,-1.75277,-0.00899,1.90687,0.00419
-2.94571,1.23310,-1.38217,-1.75266,-0.00921,1.90666,0.00419
-2.94725,1.23357,-1.38190,-1.75263,-0.00952,1.90620,0.00419
-2.94880,1.23403,-1.38163,-1.75260,-0.00982,1.90573,0.00419
-2.95034,1.23449,-1.38137,-1.75257,-0.01012,1.90528,0.00419
-2.95188,1.23494,-1.38112,-1.75254,-0.01041,1.90483,0.00419
-2.95342,1.23539,-1.38086,-1.75251,-0.01069,1.90439,0.00419
-2.95497,1.23573,-1.38067,-1.75253,-0.01087,1.90405,0.00419
-2.95651,1.23657,-1.38019,-1.75296,-0.01092,1.90322,0.00419
-2.95805,1.23739,-1.37972,-1.75338,-0.01098,1.90241,0.00419
-2.95959,1.23820,-1.37926,-1.75380,-0.01103,1.90161,0.00420
-2.96114,1.23900,-1.37880,-1.75421,-0.01109,1.90082,0.00420
-2.96268,1.23979,-1.37836,-1.75461,-0.01114,1.90004,0.00420
-2.96422,1.24056,-1.37792,-1.75501,-0.01119,1.89927,0.00420
-2.96576,1.24132,-1.37748,-1.75539,-0.01124,1.89851,0.00420
-2.96730,1.24207,-1.37706,-1.75578,-0.01129,1.89777,0.00420
-2.96885,1.24281,-1.37664,-1.75615,-0.01134,1.89704,0.00420
-2.97039,1.24354,-1.37623,-1.75652,-0.01139,1.89632,0.00420
-2.97193,1.24425,-1.37583,-1.75688,-0.01144,1.89561,0.00420
-2.97347,1.24496,-1.37543,-1.75724,-0.01148,1.89491,0.00420
-2.97502,1.24565,-1.37504,-1.75759,-0.01153,1.89422,0.00421
-2.97656,1.24633,-1.37466,-1.75794,-0.01157,1.89354,0.00421
-2.97810,1.24701,-1.37428,-1.75828,-0.01162,1.89287,0.00421
-2.97964,1.24767,-1.37391,-1.75861,-0.01166,1.89221,0.00421
-2.98118,1.24832,-1.37354,-1.75894,-0.01170,1.89156,0.00421
-2.98273,1.24896,-1.37318,-1.75926,-0.01175,1.89092,0.00421
-2.98427,1.24960,-1.37283,-1.75958,-0.01179,1.89029,0.00421
-2.98581,1.25022,-1.37248,-1.75989,-0.01183,1.88967,0.00421
-2.98735,1.25083,-1.37214,-1.76020,-0.01187,1.88906,0.00421
-2.98890,1.25143,-1.37181,-1.76050,-0.01191,1.88846,0.00421
-2.99044,1.25203,-1.37148,-1.76080,-0.01194,1.88787,0.00421
-2.99198,1.25261,-1.37115,-1.76109,-0.01198,1.88729,0.00422
-2.99352,1.25319,-1.37083,-1.76138,-0.01202,1.88671,0.00422
-2.99506,1.25375,-1.37052,-1.76166,-0.01206,1.88615,0.00422
-2.99661,1.25431,-1.37021,-1.76194,-0.01209,1.88559,0.00422
-2.99815,1.25486,-1.36991,-1.76222,-0.01213,1.88504,0.00422
-2.99969,1.25540,-1.36961,-1.76249,-0.01216,1.88451,0.00422
-3.00123,1.25594,-1.36931,-1.76275,-0.01220,1.88397,0.00422
-3.00278,1.25646,-1.36902,-1.76301,-0.01223,1.88345,0.00422
-3.00432,1.25698,-1.36874,-1.76327,-0.01226,1.88293,0.00422
-3.00586,1.25748,-1.36846,-1.76352,-0.01230,1.88243,0.00422
-3.00740,1.25802,-1.36816,-1.76382,-0.01230,1.88189,0.00422
-3.00895,1.25890,-1.36768,-1.76459,-0.01203,1.88101,0.00423
-3.01049,1.25977,-1.36720,-1.76534,-0.01176,1.88015,0.00423
-3.01203,1.26063,-1.36673,-1.76608,-0.01150,1.87930,0.00423
-3.01357,1.26147,-1.36627,-1.76681,-0.01125,1.87846,0.00423
-3.01511,1.26230,-1.36581,-1.76753,-0.01099,1.87763,0.00423
-3.01666,1.26311,-1.36536,-1.76823,-0.01075,1.87682,0.00423
-3.01820,1.26392,-1.36493,-1.76892,-0.01050,1.87602,0.00423
-3.01974,1.26471,-1.36449,-1.76960,-0.01026,1.87523,0.00423
-3.02128,1.26549,-1.36407,-1.77027,-0.01003,1.87445,0.00423
-3.02283,1.26626,-1.36365,-1.77093,-0.00980,1.87369,0.00423
-3.02437,1.26701,-1.36324,-1.77158,-0.00957,1.87293,0.00424
-3.02591,1.26776,-1.36283,-1.77221,-0.00935,1.87219,0.00424
-3.02745,1.26849,-1.36243,-1.77284,-0.00913,1.87146,0.00424
-3.02899,1.26921,-1.36204,-1.77345,-0.00892,1.87074,0.00424
-3.03054,1.26992,-1.36166,-1.77405,-0.00871,1.87003,0.00424
-3.03208,1.27062,-1.36128,-1.77465,-0.00850,1.86933,0.00424
-3.03362,1.27131,-1.36090,-1.77523,-0.00830,1.86864,0.00424
-3.03516,1.27199,-1.36054,-1.77581,-0.00810,1.86796,0.00424
-3.03671,1.27266,-1.36018,-1.77637,-0.00790,1.86729,0.00425
-3.03825,1.27332,-1.35982,-1.77692,-0.00771,1.86663,0.00425
-3.03979,1.27397,-1.35947,-1.77747,-0.00752,1.86598,0.00425
-3.04133,1.27461,-1.35913,-1.77801,-0.00733,1.86534,0.00425
-3.04287,1.27523,-1.35879,-1.77853,-0.00715,1.86471,0.00425
-3.04442,1.27585,-1.35846,-1.77905,-0.00697,1.86409,0.00425
-3.04596,1.27646,-1.35813,-1.77956,-0.00679,1.86348,0.00425
-3.04750,1.27706,-1.35781,-1.78007,-0.00662,1.86288,0.00425
-3.04904,1.27766,-1.35749,-1.78056,-0.00645,1.86229,0.00425
-3.05059,1.27824,-1.35718,-1.78104,-0.00628,1.86170,0.00426
-3.05213,1.27881,-1.35687,-1.78152,-0.00611,1.86113,0.00426
-3.05367,1.27938,-1.35657,-1.78199,-0.00595,1.86056,0.00426
-3.05521,1.27993,-1.35627,-1.78245,-0.00579,1.86000,0.00426
-3.05676,1.28048,-1.35598,-1.78290,-0.00564,1.85945,0.00426
-3.05830,1.28102,-1.35569,-1.78335,-0.00548,1.85891,0.00426
-3.05984,1.28155,-1.35541,-1.78379,-0.00533,1.85838,0.00426
-3.06138,1.28207,-1.35513,-1.78422,-0.00518,1.85785,0.00426
-3.06292,1.28259,-1.35486,-1.78464,-0.00504,1.85734,0.00427
-3.06447,1.28309,-1.35459,-1.78506,-0.00490,1.85683,0.00427
-3.06601,1.28359,-1.35432,-1.78547,-0.00476,1.85633,0.00427
-3.06755,1.28408,-1.35406,-1.78587,-0.00462,1.85583,0.00427
-3.06909,1.28457,-1.35381,-1.78627,-0.00448,1.85535,0.00427
-3.07064,1.28504,-1.35355,-1.78666,-0.00435,1.85487,0.00427
-3.07218,1.28551,-1.35331,-1.78704,-0.00422,1.85439,0.00427
-3.07372,1.28598,-1.35306,-1.78742,-0.00409,1.85393,0.00427
-3.07526,1.28617,-1.35296,-1.78758,-0.00403,1.85373,0.00427
-3.07680,1.28676,-1.35265,-1.78808,-0.00385,1.85315,0.00428
-3.07835,1.28733,-1.35234,-1.78857,-0.00366,1.85257,0.00428
-3.07989,1.28790,-1.35204,-1.78906,-0.00348,1.85200,0.00428
-3.08143,1.28846,-1.35175,-1.78953,-0.00331,1.85144,0.00428
-3.08297,1.28901,-1.35146,-1.79000,-0.00313,1.85089,0.00428
-3.08452,1.28955,-1.35117,-1.79046,-0.00296,1.85034,0.00428
-3.08606,1.29008,-1.35089,-1.79091,-0.00280,1.84981,0.00428
-3.08760,1.29061,-1.35062,-1.79136,-0.00263,1.84928,0.00429
-3.08914,1.29113,-1.35035,-1.79180,-0.00247,1.84876,0.00429
-3.09068,1.29164,-1.35008,-1.79223,-0.00231,1.84825,0.00429
-3.09223,1.29214,-1.34981,-1.79265,-0.00216,1.84774,0.00429
-3.09377,1.29263,-1.34956,-1.79306,-0.00200,1.84725,0.00429
-3.09531,1.29312,-1.34930,-1.79347,-0.00185,1.84676,0.00429
-3.09685,1.29360,-1.34905,-1.79388,-0.00171,1.84628,0.00429
-3.09840,1.29407,-1.34880,-1.79427,-0.00156,1.84580,0.00430
-3.09994,1.29453,-1.34856,-1.79466,-0.00142,1.84533,0.00430
-3.10148,1.29499,-1.34832,-1.79504,-0.00128,1.84487,0.00430
-3.10302,1.29513,-1.34825,-1.79516,-0.00123,1.84473,0.00430
-3.10457,1.29565,-1.34798,-1.79562,-0.00105,1.84421,0.00430
-3.10611,1.29616,-1.34771,-1.79608,-0.00086,1.84370,0.00430
-3.10765,1.29666,-1.34745,-1.79652,-0.00068,1.84320,0.00430
-3.10919,1.29715,-1.34720,-1.79696,-0.00050,1.84271,0.00430
-3.11073,1.29763,-1.34695,-1.79739,-0.00033,1.84222,0.00431
-3.11228,1.29811,-1.34670,-1.79781,-0.00016,1.84174,0.00431
-3.11382,1.29858,-1.34646,-1.79822,0.00001,1.84127,0.00431
-3.11536,1.29904,-1.34622,-1.79863,0.00017,1.84080,0.00431
-3.11690,1.29950,-1.34598,-1.79903,0.00034,1.84035,0.00431
-3.11845,1.29994,-1.34575,-1.79943,0.00050,1.83989,0.00431
-3.11999,1.30017,-1.34563,-1.79964,0.00059,1.83967,0.00431
-3.12153,1.30110,-1.34515,-1.80059,0.00105,1.83874,0.00431
-3.12307,1.30202,-1.34468,-1.80152,0.00151,1.83782,0.00432
-3.12461,1.30292,-1.34422,-1.80244,0.00195,1.83692,0.00432
-3.12616,1.30381,-1.34377,-1.80334,0.00239,1.83603,0.00432
-3.12770,1.30469,-1.34332,-1.80423,0.00282,1.83516,0.00432
-3.12924,1.30555,-1.34288,-1.80510,0.00325,1.83430,0.00433
-3.13078,1.30640,-1.34245,-1.80596,0.00366,1.83345,0.00433
-3.13233,1.30724,-1.34202,-1.80680,0.00407,1.83261,0.00433
-3.13387,1.30807,-1.34160,-1.80763,0.00447,1.83179,0.00433
-3.13541,1.30888,-1.34119,-1.80844,0.00487,1.83097,0.00433
-3.13695,1.30968,-1.34079,-1.80924,0.00526,1.83017,0.00434
-3.13849,1.31047,-1.34039,-1.81003,0.00564,1.82938,0.00434
-3.14004,1.31125,-1.34000,-1.81080,0.00601,1.82861,0.00434
-3.14158,1.31201,-1.33961,-1.81156,0.00638,1.82784,0.00434
-3.14312,1.31277,-1.33923,-1.81231,0.00674,1.82709,0.00435
-3.14466,1.31351,-1.33886,-1.81304,0.00710,1.82634,0.00435
-3.14621,1.31424,-1.33849,-1.81376,0.00745,1.82561,0.00435
-3.14775,1.31496,-1.33813,-1.81447,0.00779,1.82489,0.00435
-3.14929,1.31567,-1.33777,-1.81517,0.00813,1.82418,0.00435
-3.15083,1.31637,-1.33742,-1.81586,0.00846,1.82348,0.00436
-3.15238,1.31706,-1.33708,-1.81653,0.00878,1.82279,0.00436
-3.15392,1.31774,-1.33674,-1.81719,0.00910,1.82211,0.00436
-3.15546,1.31840,-1.33641,-1.81785,0.00941,1.82144,0.00436
-3.15700,1.31906,-1.33608,-1.81849,0.00972,1.82078,0.00436
-3.15854,1.31971,-1.33576,-1.81912,0.01003,1.82013,0.00437
-3.16009,1.32035,-1.33544,-1.81974,0.01032,1.81949,0.00437
-3.16163,1.32098,-1.33513,-1.82034,0.01061,1.81886,0.00437
-3.16317,1.32159,-1.33482,-1.82094,0.01090,1.81823,0.00437
-3.16471,1.32220,-1.33452,-1.82153,0.01118,1.81762,0.00438
-3.16626,1.32280,-1.33422,-1.82211,0.01146,1.81702,0.00438
-3.16780,1.32340,-1.33393,-1.82268,0.01173,1.81642,0.00438
-3.16934,1.32398,-1.33364,-1.82324,0.01200,1.81584,0.00438
-3.17088,1.32455,-1.33335,-1.82379,0.01226,1.81526,0.00438
-3.17242,1.32512,-1.33307,-1.82433,0.01252,1.81469,0.00439
-3.17397,1.32567,-1.33280,-1.82486,0.01278,1.81413,0.00439
-3.17551,1.32622,-1.33253,-1.82538,0.01302,1.81358,0.00439
-3.17705,1.32676,-1.33226,-1.82590,0.01327,1.81304,0.00439
-3.17859,1.32729,-1.33200,-1.82640,0.01351,1.81250,0.00439
-3.18014,1.32782,-1.33174,-1.82690,0.01375,1.81198,0.00440
-3.18168,1.32833,-1.33149,-1.82739,0.01398,1.81146,0.00440
-3.18322,1.32884,-1.33124,-1.82787,0.01421,1.81095,0.00440
-3.18476,1.32934,-1.33099,-1.82834,0.01443,1.81044,0.00440
-3.18630,1.32983,-1.33075,-1.82881,0.01465,1.80994,0.00440
-3.18785,1.33032,-1.33051,-1.82926,0.01487,1.80946,0.00440
-3.18939,1.33079,-1.33028,-1.82971,0.01508,1.80897,0.00441
-3.19093,1.33126,-1.33005,-1.83015,0.01529,1.80850,0.00441
-3.19247,1.33173,-1.32982,-1.83059,0.01549,1.80803,0.00441
-3.19402,1.33218,-1.32960,-1.83101,0.01569,1.80757,0.00441
-3.19556,1.33263,-1.32938,-1.83143,0.01589,1.80712,0.00441
-3.19710,1.33308,-1.32916,-1.83185,0.01609,1.80667,0.00442
-3.19864,1.33351,-1.32895,-1.83225,0.01628,1.80623,0.00442
-3.20019,1.33363,-1.32889,-1.83237,0.01634,1.80611,0.00442
-3.20173,1.33438,-1.32853,-1.83316,0.01676,1.80536,0.00442
-3.20327,1.33512,-1.32818,-1.83393,0.01717,1.80462,0.00442
-3.20481,1.33584,-1.32783,-1.83469,0.01758,1.80390,0.00442
-3.20635,1.33656,-1.32749,-1.83544,0.01798,1.80318,0.00443
-3.20790,1.33726,-1.32715,-1.83617,0.01837,1.80247,0.00443
-3.20944,1.33796,-1.32682,-1.83689,0.01875,1.80178,0.00443
-3.21098,1.33864,-1.32650,-1.83760,0.01913,1.80109,0.00443
-3.21252,1.33932,-1.32617,-1.83830,0.01950,1.80042,0.00444
-3.21407,1.33998,-1.32586,-1.83898,0.01987,1.79975,0.00444
-3.21561,1.34063,-1.32555,-1.83966,0.02023,1.79909,0.00444
-3.21715,1.34128,-1.32524,-1.84032,0.02058,1.79845,0.00444
-3.21869,1.34191,-1.32494,-1.84097,0.02093,1.79781,0.00444
-3.22023,1.34253,-1.32465,-1.84161,0.02127,1.79718,0.00445
-3.22178,1.34315,-1.32436,-1.84224,0.02160,1.79657,0.00445
-3.22332,1.34376,-1.32407,-1.84286,0.02193,1.79596,0.00445
-3.22486,1.34435,-1.32379,-1.84347,0.02225,1.79536,0.00445
-3.22640,1.34494,-1.32351,-1.84407,0.02257,1.79477,0.00445
-3.22795,1.34552,-1.32324,-1.84465,0.02288,1.79418,0.00446
-3.22949,1.34609,-1.32297,-1.84523,0.02319,1.79361,0.00446
-3.23103,1.34665,-1.32270,-1.84580,0.02349,1.79304,0.00446
-3.23257,1.34720,-1.32244,-1.84636,0.02378,1.79249,0.00446
-3.23411,1.34775,-1.32219,-1.84691,0.02407,1.79194,0.00447
-3.23566,1.34829,-1.32193,-1.84745,0.02436,1.79140,0.00447
-3.23720,1.34882,-1.32168,-1.84798,0.02464,1.79087,0.00447
-3.23874,1.34934,-1.32144,-1.84850,0.02491,1.79034,0.00447
-3.24028,1.34985,-1.32120,-1.84902,0.02518,1.78982,0.00447
-3.24183,1.35035,-1.32096,-1.84952,0.02545,1.78932,0.00448
-3.24337,1.35085,-1.32073,-1.85002,0.02571,1.78881,0.00448
-3.24491,1.35134,-1.32050,-1.85051,0.02596,1.78832,0.00448
-3.24645,1.35182,-1.32027,-1.85099,0.02622,1.78783,0.00448
-3.24800,1.35230,-1.32005,-1.85146,0.02646,1.78735,0.00448
-3.24954,1.35277,-1.31983,-1.85192,0.02671,1.78688,0.00448
-3.25108,1.35323,-1.31962,-1.85238,0.02694,1.78641,0.00449
-3.25262,1.35368,-1.31940,-1.85283,0.02718,1.78596,0.00449
-3.25416,1.35413,-1.31920,-1.85327,0.02741,1.78550,0.00449
-3.25571,1.35457,-1.31899,-1.85370,0.02763,1.78506,0.00449
-3.25725,1.35501,-1.31879,-1.85413,0.02786,1.78462,0.00449
-3.25879,1.35543,-1.31859,-1.85455,0.02808,1.78419,0.00450
-3.26033,1.35579,-1.31842,-1.85490,0.02826,1.78382,0.00450
-3.26188,1.35644,-1.31812,-1.85550,0.02855,1.78317,0.00450
-3.26342,1.35708,-1.31782,-1.85609,0.02885,1.78253,0.00450
-3.26496,1.35771,-1.31753,-1.85667,0.02914,1.78190,0.00450
-3.26650,1.35833,-1.31725,-1.85724,0.02942,1.78128,0.00451
-3.26804,1.35895,-1.31696,-1.85781,0.02970,1.78066,0.00451
-3.26959,1.35955,-1.31669,-1.85836,0.02997,1.78006,0.00451
-3.27113,1.36014,-1.31641,-1.85890,0.03024,1.77946,0.00451
-3.27267,1.36073,-1.31615,-1.85944,0.03050,1.77888,0.00452
-3.27421,1.36130,-1.31588,-1.85996,0.03076,1.77830,0.00452
-3.27576,1.36187,-1.31562,-1.86048,0.03101,1.77773,0.00452
-3.27730,1.36243,-1.31536,-1.86099,0.03126,1.77717,0.00452
-3.27884,1.36298,-1.31511,-1.86149,0.03151,1.77662,0.00453
-3.28038,1.36352,-1.31486,-1.86198,0.03175,1.77607,0.00453
-3.28192,1.36405,-1.31462,-1.86246,0.03199,1.77553,0.00453
-3.28347,1.36458,-1.31438,-1.86294,0.03222,1.77501,0.00453
-3.28501,1.36510,-1.31414,-1.86341,0.03245,1.77449,0.00453
-3.28655,1.36561,-1.31391,-1.86387,0.03267,1.77397,0.00454
-3.28809,1.36611,-1.31368,-1.86432,0.03289,1.77347,0.00454
-3.28964,1.36661,-1.31345,-1.86476,0.03311,1.77297,0.00454
-3.29118,1.36709,-1.31323,-1.86520,0.03332,1.77248,0.00454
-3.29272,1.36757,-1.31301,-1.86563,0.03353,1.77199,0.00454
-3.29426,1.36805,-1.31280,-1.86605,0.03373,1.77152,0.00455
-3.29581,1.36851,-1.31258,-1.86647,0.03394,1.77105,0.00455
-3.29735,1.36897,-1.31237,-1.86687,0.03413,1.77059,0.00455
-3.29889,1.36942,-1.31217,-1.86728,0.03433,1.77013,0.00455
-3.30043,1.36988,-1.31196,-1.86768,0.03452,1.76967,0.00455
-3.30197,1.37041,-1.31172,-1.86816,0.03476,1.76914,0.00456
-3.30352,1.37093,-1.31149,-1.86863,0.03499,1.76861,0.00456
-3.30506,1.37145,-1.31125,-1.86909,0.03522,1.76809,0.00456
-3.30660,1.37196,-1.31102,-1.86954,0.03544,1.76758,0.00456
-3.30814,1.37246,-1.31080,-1.86999,0.03566,1.76708,0.00456
-3.30969,1.37295,-1.31057,-1.87043,0.03587,1.76658,0.00457
-3.31123,1.37344,-1.31036,-1.87086,0.03608,1.76609,0.00457
-3.31277,1.37392,-1.31014,-1.87128,0.03629,1.76561,0.00457
-3.31431,1.37439,-1.30993,-1.87170,0.03649,1.76513,0.00457
-3.31585,1.37486,-1.30972,-1.87211,0.03669,1.76466,0.00457
-3.31740,1.37531,-1.30951,-1.87251,0.03689,1.76420,0.00458
-3.31894,1.37576,-1.30931,-1.87291,0.03708,1.76375,0.00458
-3.32048,1.37602,-1.30920,-1.87313,0.03719,1.76349,0.00458
-3.32202,1.37677,-1.30887,-1.87381,0.03753,1.76275,0.00458
-3.32357,1.37750,-1.30854,-1.87448,0.03787,1.76201,0.00458
-3.32511,1.37823,-1.30822,-1.87514,0.03821,1.76128,0.00459
-3.32665,1.37894,-1.30791,-1.87578,0.03853,1.76057,0.00459
-3.32819,1.37965,-1.30760,-1.87642,0.03886,1.75986,0.00459
-3.32973,1.38034,-1.30730,-1.87704,0.03917,1.75917,0.00460
-3.33128,1.38103,-1.30700,-1.87766,0.03948,1.75849,0.00460
-3.33282,1.38170,-1.30670,-1.87826,0.03979,1.75781,0.00460
-3.33436,1.38236,-1.30641,-1.87885,0.04009,1.75715,0.00460
-3.33590,1.38302,-1.30613,-1.87943,0.04038,1.75649,0.00461
-3.33745,1.38366,-1.30585,-1.88001,0.04067,1.75585,0.00461
-3.33899,1.38429,-1.30557,-1.88057,0.04095,1.75521,0.00461
-3.34053,1.38492,-1.30530,-1.88113,0.04123,1.75459,0.00461
-3.34207,1.38554,-1.30503,-1.88167,0.04150,1.75397,0.00462
-3.34362,1.38614,-1.30477,-1.88221,0.04177,1.75336,0.00462
-3.34516,1.38674,-1.30451,-1.88273,0.04204,1.75276,0.00462
-3.34670,1.38733,-1.30425,-1.88325,0.04230,1.75217,0.00462
-3.34824,1.38791,-1.30400,-1.88376,0.04255,1.75159,0.00462
-3.34978,1.38848,-1.30375,-1.88426,0.04280,1.75102,0.00463
-3.35133,1.38904,-1.30351,-1.88475,0.04305,1.75045,0.00463
-3.35287,1.38959,-1.30327,-1.88524,0.04329,1.74990,0.00463
-3.35441,1.39014,-1.30303,-1.88571,0.04352,1.74935,0.00463
-3.35595,1.39068,-1.30280,-1.88618,0.04376,1.74881,0.00464
-3.35750,1.39121,-1.30257,-1.88664,0.04399,1.74827,0.00464
-3.35904,1.39173,-1.30234,-1.88709,0.04421,1.74775,0.00464
-3.36058,1.39224,-1.30212,-1.88754,0.04443,1.74723,0.00464
-3.36212,1.39275,-1.30190,-1.88797,0.04465,1.74672,0.00464
-3.36366,1.39325,-1.30169,-1.88840,0.04486,1.74622,0.00465
-3.36521,1.39374,-1.30147,-1.88883,0.04507,1.74573,0.00465
-3.36675,1.39422,-1.30127,-1.88924,0.04527,1.74524,0.00465
-3.36829,1.39470,-1.30106,-1.88965,0.04548,1.74476,0.00465
-3.36983,1.39517,-1.30086,-1.89005,0.04567,1.74429,0.00466
-3.37138,1.39563,-1.30066,-1.89045,0.04587,1.74382,0.00466
-3.37292,1.39608,-1.30046,-1.89084,0.04606,1.74336,0.00466
-3.37446,1.39624,-1.30039,-1.89097,0.04613,1.74321,0.00466
-3.37600,1.39690,-1.30012,-1.89158,0.04645,1.74254,0.00466
-3.37754,1.39755,-1.29984,-1.89217,0.04676,1.74189,0.00466
-3.37909,1.39820,-1.29957,-1.89275,0.04707,1.74125,0.00467
-3.38063,1.39883,-1.29930,-1.89332,0.04737,1.74061,0.00467
-3.38217,1.39945,-1.29904,-1.89388,0.04766,1.73999,0.00467
-3.38371,1.40006,-1.29878,-1.89443,0.04795,1.73937,0.00467
-3.38526,1.40067,-1.29853,-1.89497,0.04824,1.73877,0.00468
-3.38680,1.40127,-1.29828,-1.89551,0.04852,1.73817,0.00468
-3.38834,1.40185,-1.29803,-1.89603,0.04880,1.73758,0.00468
-3.38988,1.40243,-1.29779,-1.89655,0.04907,1.73700,0.00468
-3.39143,1.40300,-1.29755,-1.89706,0.04933,1.73643,0.00469
-3.39297,1.40356,-1.29732,-1.89755,0.04959,1.73587,0.00469
-3.39451,1.40411,-1.29709,-1.89804,0.04985,1.73531,0.00469
-3.39605,1.40466,-1.29686,-1.89853,0.05010,1.73476,0.00469
-3.39759,1.40519,-1.29664,-1.89900,0.05035,1.73422,0.00469
-3.39914,1.40572,-1.29642,-1.89947,0.05059,1.73369,0.00470
-3.40068,1.40624,-1.29620,-1.89992,0.05083,1.73317,0.00470
-3.40222,1.40676,-1.29598,-1.90037,0.05106,1.73265,0.00470
-3.40376,1.40726,-1.29577,-1.90082,0.05129,1.73215,0.00470
-3.40531,1.40776,-1.29557,-1.90125,0.05152,1.73164,0.00471
-3.40685,1.40825,-1.29536,-1.90168,0.05174,1.73115,0.00471
-3.40839,1.40873,-1.29516,-1.90210,0.05196,1.73067,0.00471
-3.40993,1.40921,-1.29496,-1.90252,0.05217,1.73019,0.00471
-3.41147,1.40967,-1.29477,-1.90292,0.05238,1.72971,0.00471
-3.41302,1.41014,-1.29457,-1.90333,0.05259,1.72925,0.00472
-3.41456,1.41059,-1.29438,-1.90372,0.05279,1.72879,0.00472
-3.41610,1.41091,-1.29425,-1.90400,0.05294,1.72847,0.00472
-3.41764,1.41145,-1.29403,-1.90445,0.05316,1.72792,0.00472
-3.41919,1.41199,-1.29381,-1.90489,0.05338,1.72739,0.00472
-3.42073,1.41251,-1.29359,-1.90532,0.05360,1.72686,0.00473
-3.42227,1.41303,-1.29337,-1.90575,0.05381,1.72634,0.00473
-3.42381,1.41353,-1.29316,-1.90617,0.05402,1.72583,0.00473
-3.42535,1.41404,-1.29296,-1.90659,0.05422,1.72533,0.00473
-3.42690,1.41453,-1.29275,-1.90699,0.05442,1.72483,0.00473
-3.42844,1.41501,-1.29255,-1.90739,0.05462,1.72434,0.00474
-3.42998,1.41549,-1.29235,-1.90779,0.05481,1.72386,0.00474
-3.43152,1.41596,-1.29216,-1.90817,0.05500,1.72339,0.00474
-3.43307,1.41643,-1.29197,-1.90855,0.05519,1.72292,0.00474
-3.43461,1.41659,-1.29190,-1.90868,0.05525,1.72276,0.00474
-3.43615,1.41724,-1.29164,-1.90919,0.05549,1.72211,0.00475
-3.43769,1.41788,-1.29137,-1.90968,0.05572,1.72147,0.00475
-3.43924,1.41851,-1.29112,-1.91017,0.05595,1.72084,0.00475
-3.44078,1.41913,-1.29086,-1.91065,0.05617,1.72022,0.00475
-3.44232,1.41974,-1.29061,-1.91113,0.05639,1.71961,0.00476
-3.44386,1.42035,-1.29036,-1.91159,0.05661,1.71900,0.00476
-3.44540,1.42094,-1.29012,-1.91205,0.05682,1.71841,0.00476
-3.44695,1.42152,-1.28988,-1.91250,0.05703,1.71782,0.00476
-3.44849,1.42210,-1.28965,-1.91294,0.05723,1.71724,0.00477
-3.45003,1.42267,-1.28942,-1.91338,0.05743,1.71667,0.00477
-3.45157,1.42323,-1.28919,-1.91380,0.05763,1.71611,0.00477
-3.45312,1.42378,-1.28896,-1.91422,0.05783,1.71556,0.00477
-3.45466,1.42432,-1.28874,-1.91464,0.05802,1.71501,0.00477
-3.45620,1.42486,-1.28852,-1.91504,0.05820,1.71448,0.00478
-3.45774,1.42539,-1.28831,-1.91544,0.05839,1.71395,0.00478
-3.45928,1.42590,-1.28810,-1.91584,0.05857,1.71342,0.00478
-3.46083,1.42642,-1.28789,-1.91622,0.05874,1.71291,0.00478
-3.46237,1.42692,-1.28769,-1.91660,0.05892,1.71240,0.00479
-3.46391,1.42742,-1.28748,-1.91698,0.05909,1.71191,0.00479
-3.46545,1.42790,-1.28729,-1.91735,0.05925,1.71141,0.00479
-3.46700,1.42839,-1.28709,-1.91771,0.05942,1.71093,0.00479
-3.46854,1.42843,-1.28707,-1.91774,0.05944,1.71088,0.00479
-3.47008,1.42891,-1.28688,-1.91812,0.05962,1.71041,0.00479
-3.47162,1.42911,-1.28679,-1.91821,0.05963,1.71020,0.00480
-3.47316,1.42924,-1.28669,-1.91770,0.05902,1.71007,0.00480
-3.47471,1.42936,-1.28659,-1.91719,0.05842,1.70994,0.00480
-3.47625,1.42949,-1.28649,-1.91669,0.05783,1.70982,0.00480
-3.47779,1.42961,-1.28639,-1.91620,0.05726,1.70969,0.00480
-3.47933,1.42973,-1.28630,-1.91572,0.05669,1.70957,0.00481
-3.48088,1.42985,-1.28621,-1.91525,0.05613,1.70945,0.00481
-3.48242,1.42997,-1.28612,-1.91478,0.05558,1.70933,0.00481
-3.48396,1.43008,-1.28603,-1.91432,0.05505,1.70921,0.00481
-3.48550,1.43019,-1.28594,-1.91387,0.05452,1.70910,0.00481
-3.48705,1.43031,-1.28585,-1.91343,0.05400,1.70898,0.00482
-3.48859,1.43042,-1.28577,-1.91300,0.05349,1.70887,0.00482
-3.49013,1.43052,-1.28569,-1.91257,0.05299,1.70876,0.00482
-3.49167,1.43063,-1.28561,-1.91215,0.05250,1.70865,0.00482
-3.49321,1.43073,-1.28553,-1.91174,0.05201,1.70855,0.00482
-3.49476,1.43084,-1.28545,-1.91133,0.05154,1.70844,0.00482
-3.49630,1.43094,-1.28538,-1.91093,0.05107,1.70834,0.00483
-3.49784,1.43094,-1.28537,-1.91082,0.05095,1.70833,0.00483
-3.49938,1.43087,-1.28535,-1.91012,0.05023,1.70840,0.00483
-3.50093,1.43080,-1.28533,-1.90942,0.04953,1.70847,0.00483
-3.50247,1.43074,-1.28531,-1.90874,0.04884,1.70853,0.00483
-3.50401,1.43067,-1.28530,-1.90806,0.04816,1.70859,0.00483
-3.50555,1.43060,-1.28528,-1.90740,0.04749,1.70866,0.00483
-3.50709,1.43054,-1.28527,-1.90675,0.04683,1.70872,0.00483
-3.50864,1.43048,-1.28525,-1.90611,0.04619,1.70878,0.00483
-3.51018,1.43041,-1.28524,-1.90549,0.04555,1.70884,0.00483
-3.51172,1.43035,-1.28523,-1.90487,0.04493,1.70890,0.00484
-3.51326,1.43029,-1.28522,-1.90426,0.04432,1.70896,0.00484
-3.51481,1.43023,-1.28521,-1.90366,0.04372,1.70902,0.00484
-3.51635,1.43017,-1.28520,-1.90308,0.04313,1.70908,0.00484
-3.51789,1.43011,-1.28519,-1.90250,0.04255,1.70913,0.00484
-3.51943,1.43005,-1.28518,-1.90193,0.04198,1.70919,0.00484
-3.52097,1.43000,-1.28517,-1.90138,0.04142,1.70924,0.00484
-3.52252,1.42994,-1.28517,-1.90083,0.04088,1.70930,0.00484
-3.52406,1.42988,-1.28516,-1.90029,0.04034,1.70935,0.00484
-3.52560,1.42983,-1.28515,-1.89976,0.03981,1.70940,0.00484
-3.52714,1.42978,-1.28515,-1.89924,0.03929,1.70946,0.00484
-3.52869,1.42972,-1.28514,-1.89873,0.03877,1.70951,0.00484
-3.53023,1.42967,-1.28514,-1.89822,0.03827,1.70956,0.00484
-3.53177,1.42962,-1.28514,-1.89773,0.03778,1.70961,0.00484
-3.53331,1.42957,-1.28513,-1.89724,0.03729,1.70966,0.00484
-3.53486,1.42952,-1.28513,-1.89677,0.03682,1.70971,0.00484
-3.53640,1.42947,-1.28513,-1.89630,0.03635,1.70976,0.00484
-3.53794,1.42942,-1.28513,-1.89583,0.03589,1.70980,0.00484
-3.53948,1.42937,-1.28513,-1.89538,0.03544,1.70985,0.00484
-3.54102,1.42933,-1.28514,-1.89519,0.03526,1.70989,0.00484
-3.54257,1.42899,-1.28523,-1.89420,0.03437,1.71023,0.00484
-3.54411,1.42866,-1.28533,-1.89322,0.03350,1.71056,0.00484
-3.54565,1.42834,-1.28543,-1.89226,0.03265,1.71088,0.00484
-3.54719,1.42801,-1.28553,-1.89132,0.03181,1.71120,0.00484
-3.54874,1.42770,-1.28562,-1.89039,0.03099,1.71151,0.00484
-3.55028,1.42739,-1.28572,-1.88948,0.03018,1.71182,0.00484
-3.55182,1.42708,-1.28581,-1.88858,0.02939,1.71213,0.00484
-3.55336,1.42678,-1.28591,-1.88770,0.02861,1.71243,0.00484
-3.55490,1.42648,-1.28600,-1.88683,0.02784,1.71273,0.00484
-3.55645,1.42619,-1.28610,-1.88597,0.02709,1.71302,0.00484
-3.55799,1.42590,-1.28619,-1.88513,0.02635,1.71330,0.00484
-3.55953,1.42561,-1.28629,-1.88431,0.02563,1.71359,0.00484
-3.56107,1.42533,-1.28638,-1.88350,0.02491,1.71387,0.00484
-3.56262,1.42506,-1.28647,-1.88270,0.02421,1.71414,0.00484
-3.56416,1.42478,-1.28656,-1.88191,0.02353,1.71441,0.00484
-3.56570,1.42452,-1.28665,-1.88114,0.02285,1.71468,0.00484
-3.56724,1.42425,-1.28674,-1.88038,0.02219,1.71494,0.00484
-3.56878,1.42399,-1.28683,-1.87963,0.02153,1.71520,0.00484
-3.57033,1.42374,-1.28692,-1.87890,0.02089,1.71546,0.00484
-3.57187,1.42349,-1.28701,-1.87818,0.02026,1.71571,0.00484
-3.57341,1.42324,-1.28710,-1.87747,0.01965,1.71596,0.00484
-3.57495,1.42299,-1.28719,-1.87677,0.01904,1.71620,0.00484
-3.57650,1.42275,-1.28727,-1.87608,0.01844,1.71644,0.00484
-3.57804,1.42252,-1.28736,-1.87541,0.01786,1.71668,0.00484
-3.57958,1.42228,-1.28744,-1.87475,0.01728,1.71691,0.00484
-3.58112,1.42205,-1.28753,-1.87409,0.01672,1.71714,0.00484
-3.58267,1.42183,-1.28761,-1.87345,0.01616,1.71737,0.00484
-3.58421,1.42160,-1.28769,-1.87282,0.01562,1.71760,0.00483
-3.58575,1.42138,-1.28778,-1.87220,0.01508,1.71782,0.00483
-3.58729,1.42117,-1.28786,-1.87159,0.01455,1.71803,0.00483
-3.58883,1.42095,-1.28794,-1.87099,0.01404,1.71825,0.00483
-3.59038,1.42074,-1.28802,-1.87040,0.01353,1.71846,0.00483
-3.59192,1.42053,-1.28810,-1.86982,0.01303,1.71867,0.00483
-3.59346,1.42033,-1.28818,-1.86925,0.01254,1.71887,0.00483
-3.59500,1.42013,-1.28826,-1.86869,0.01206,1.71907,0.00483
-3.59655,1.41993,-1.28833,-1.86814,0.01159,1.71927,0.00483
-3.59809,1.41974,-1.28841,-1.86759,0.01112,1.71947,0.00483
-3.59963,1.41955,-1.28849,-1.86706,0.01067,1.71966,0.00483
-3.60117,1.41936,-1.28856,-1.86654,0.01022,1.71985,0.00483
-3.60271,1.41917,-1.28864,-1.86602,0.00978,1.72004,0.00483
-3.60426,1.41899,-1.28871,-1.86551,0.00934,1.72022,0.00483
-3.60580,1.41881,-1.28878,-1.86502,0.00892,1.72040,0.00482
-3.60734,1.41863,-1.28885,-1.86453,0.00850,1.72058,0.00482
-3.60888,1.41845,-1.28893,-1.86404,0.00809,1.72076,0.00482
-3.61043,1.41836,-1.28896,-1.86378,0.00787,1.72086,0.00482
-3.61197,1.41809,-1.28907,-1.86305,0.00724,1.72112,0.00482
-3.61351,1.41783,-1.28917,-1.86232,0.00663,1.72139,0.00482
-3.61505,1.41757,-1.28928,-1.86161,0.00602,1.72165,0.00482
-3.61659,1.41732,-1.28938,-1.86092,0.00543,1.72190,0.00482
-3.61814,1.41707,-1.28948,-1.86023,0.00485,1.72215,0.00482
-3.61968,1.41682,-1.28958,-1.85955,0.00428,1.72240,0.00482
-3.62122,1.41658,-1.28968,-1.85889,0.00371,1.72265,0.00482
-3.62276,1.41634,-1.28978,-1.85824,0.00316,1.72289,0.00482
-3.62431,1.41610,-1.28988,-1.85760,0.00262,1.72312,0.00482
-3.62585,1.41587,-1.28997,-1.85696,0.00209,1.72336,0.00481
-3.62739,1.41564,-1.29007,-1.85634,0.00157,1.72359,0.00481
-3.62893,1.41542,-1.29016,-1.85573,0.00105,1.72381,0.00481
-3.63048,1.41520,-1.29026,-1.85513,0.00055,1.72404,0.00481
-3.63202,1.41498,-1.29035,-1.85454,0.00005,1.72426,0.00481
-3.63356,1.41476,-1.29044,-1.85396,-0.00044,1.72448,0.00481
-3.63510,1.41455,-1.29053,-1.85339,-0.00091,1.72469,0.00481
-3.63664,1.41434,-1.29062,-1.85283,-0.00139,1.72490,0.00481
-3.63819,1.41414,-1.29071,-1.85228,-0.00185,1.72511,0.00481
-3.63973,1.41393,-1.29080,-1.85174,-0.00230,1.72531,0.00481
-3.64127,1.41373,-1.29089,-1.85120,-0.00275,1.72551,0.00481
-3.64281,1.41354,-1.29097,-1.85068,-0.00318,1.72571,0.00480
-3.64436,1.41334,-1.29106,-1.85016,-0.00361,1.72591,0.00480
-3.64590,1.41315,-1.29114,-1.84966,-0.00404,1.72610,0.00480
-3.64744,1.41297,-1.29123,-1.84916,-0.00445,1.72629,0.00480
-3.64898,1.41278,-1.29131,-1.84867,-0.00486,1.72648,0.00480
-3.65052,1.41257,-1.29140,-1.84812,-0.00531,1.72669,0.00480
-3.65207,1.41213,-1.29159,-1.84706,-0.00618,1.72713,0.00480
-3.65361,1.41170,-1.29177,-1.84601,-0.00704,1.72757,0.00480
-3.65515,1.41127,-1.29196,-1.84497,-0.00788,1.72799,0.00480
-3.65669,1.41085,-1.29214,-1.84396,-0.00871,1.72842,0.00480
-3.65824,1.41044,-1.29232,-1.84296,-0.00952,1.72883,0.00479
-3.65978,1.41003,-1.29250,-1.84198,-0.01032,1.72924,0.00479
-3.66132,1.40963,-1.29268,-1.84101,-0.01110,1.72965,0.00479
-3.66286,1.40924,-1.29285,-1.84006,-0.01187,1.73004,0.00479
-3.66440,1.40885,-1.29302,-1.83912,-0.01263,1.73043,0.00479
-3.66595,1.40846,-1.29320,-1.83820,-0.01337,1.73082,0.00479
-3.66749,1.40809,-1.29337,-1.83730,-0.01410,1.73120,0.00479
-3.66903,1.40771,-1.29353,-1.83641,-0.01482,1.73157,0.00479
-3.67057,1.40735,-1.29370,-1.83554,-0.01552,1.73194,0.00479
-3.67212,1.40699,-1.29386,-1.83467,-0.01622,1.73231,0.00478
-3.67366,1.40663,-1.29403,-1.83383,-0.01690,1.73266,0.00478
-3.67520,1.40628,-1.29419,-1.83300,-0.01756,1.73302,0.00478
-3.67674,1.40594,-1.29435,-1.83218,-0.01822,1.73336,0.00478
-3.67829,1.40560,-1.29451,-1.83137,-0.01886,1.73371,0.00478
-3.67983,1.40527,-1.29466,-1.83058,-0.01950,1.73404,0.00478
-3.68137,1.40494,-1.29482,-1.82980,-0.02012,1.73437,0.00478
-3.68291,1.40461,-1.29497,-1.82904,-0.02073,1.73470,0.00478
-3.68445,1.40429,-1.29512,-1.82828,-0.02133,1.73502,0.00477
-3.68600,1.40398,-1.29527,-1.82754,-0.02192,1.73534,0.00477
-3.68754,1.40367,-1.29542,-1.82681,-0.02250,1.73565,0.00477
-3.68908,1.40337,-1.29557,-1.82610,-0.02307,1.73596,0.00477
-3.69062,1.40306,-1.29571,-1.82539,-0.02362,1.73627,0.00477
-3.69217,1.40277,-1.29585,-1.82470,-0.02417,1.73656,0.00477
-3.69371,1.40248,-1.29599,-1.82402,-0.02471,1.73686,0.00477
-3.69525,1.40219,-1.29613,-1.82335,-0.02524,1.73715,0.00476
-3.69679,1.40191,-1.29627,-1.82269,-0.02576,1.73743,0.00476
-3.69833,1.40163,-1.29641,-1.82204,-0.02627,1.73772,0.00476
-3.69988,1.40136,-1.29654,-1.82140,-0.02677,1.73799,0.00476
-3.70142,1.40109,-1.29668,-1.82078,-0.02727,1.73827,0.00476
-3.70296,1.40082,-1.29681,-1.82016,-0.02775,1.73854,0.00476
-3.70450,1.40056,-1.29694,-1.81955,-0.02823,1.73880,0.00476
-3.70605,1.40030,-1.29707,-1.81896,-0.02870,1.73906,0.00475
-3.70759,1.40005,-1.29719,-1.81837,-0.02915,1.73932,0.00475
-3.70913,1.39980,-1.29732,-1.81779,-0.02961,1.73957,0.00475
-3.71067,1.39955,-1.29744,-1.81723,-0.03005,1.73982,0.00475
-3.71221,1.39931,-1.29757,-1.81667,-0.03048,1.74007,0.00475
-3.71376,1.39907,-1.29769,-1.81612,-0.03091,1.74031,0.00475
-3.71530,1.39884,-1.29781,-1.81558,-0.03133,1.74055,0.00475
-3.71684,1.39860,-1.29793,-1.81505,-0.03175,1.74079,0.00475
-3.71838,1.39838,-1.29804,-1.81453,-0.03215,1.74102,0.00474
-3.71993,1.39815,-1.29816,-1.81402,-0.03255,1.74125,0.00474
-3.72147,1.39793,-1.29827,-1.81351,-0.03294,1.74147,0.00474
-3.72301,1.39771,-1.29838,-1.81302,-0.03333,1.74169,0.00474
-3.72455,1.39755,-1.29847,-1.81265,-0.03361,1.74186,0.00474
-3.72610,1.39719,-1.29864,-1.81192,-0.03416,1.74222,0.00474
-3.72764,1.39684,-1.29882,-1.81121,-0.03470,1.74257,0.00474
-3.72918,1.39650,-1.29899,-1.81050,-0.03523,1.74291,0.00473
-3.73072,1.39616,-1.29915,-1.80981,-0.03575,1.74326,0.00473
-3.73226,1.39583,-1.29932,-1.80913,-0.03626,1.74359,0.00473
-3.73381,1.39550,-1.29949,-1.80846,-0.03677,1.74392,0.00473
-3.73535,1.39518,-1.29965,-1.80781,-0.03726,1.74425,0.00473
-3.73689,1.39486,-1.29981,-1.80716,-0.03775,1.74457,0.00473
-3.73843,1.39455,-1.29997,-1.80652,-0.03823,1.74489,0.00472
-3.73998,1.39424,-1.30012,-1.80590,-0.03869,1.74520,0.00472
-3.74152,1.39393,-1.30028,-1.80528,-0.03915,1.74550,0.00472
-3.74306,1.39363,-1.30043,-1.80468,-0.03961,1.74581,0.00472
-3.74460,1.39334,-1.30058,-1.80408,-0.04005,1.74610,0.00472
-3.74614,1.39305,-1.30073,-1.80350,-0.04049,1.74640,0.00472
-3.74769,1.39276,-1.30088,-1.80292,-0.04092,1.74669,0.00472
-3.74923,1.39248,-1.30102,-1.80235,-0.04134,1.74697,0.00471
-3.75077,1.39220,-1.30117,-1.80180,-0.04175,1.74725,0.00471
-3.75231,1.39193,-1.30131,-1.80125,-0.04216,1.74753,0.00471
-3.75386,1.39166,-1.30145,-1.80071,-0.04256,1.74780,0.00471
-3.75540,1.39140,-1.30158,-1.80018,-0.04295,1.74807,0.00471
-3.75694,1.39114,-1.30172,-1.79966,-0.04334,1.74833,0.00471
-3.75848,1.39088,-1.30185,-1.79915,-0.04372,1.74859,0.00471
-3.76002,1.39063,-1.30199,-1.79864,-0.04409,1.74885,0.00470
-3.76157,1.39038,-1.30212,-1.79815,-0.04445,1.74910,0.00470
-3.76311,1.39020,-1.30221,-1.79779,-0.04472,1.74928,0.00470
-3.76465,1.38991,-1.30236,-1.79715,-0.04520,1.74957,0.00470
-3.76619,1.38963,-1.30251,-1.79652,-0.04568,1.74986,0.00470
-3.76774,1.38935,-1.30266,-1.79590,-0.04615,1.75014,0.00470
-3.76928,1.38907,-1.30281,-1.79530,-0.04661,1.75042,0.00470
-3.77082,1.38880,-1.30295,-1.79470,-0.04706,1.75070,0.00469
-3.77236,1.38853,-1.30309,-1.79411,-0.04751,1.75097,0.00469
-3.77390,1.38827,-1.30323,-1.79353,-0.04794,1.75124,0.00469
-3.77545,1.38801,-1.30337,-1.79297,-0.04837,1.75150,0.00469
-3.77699,1.38776,-1.30351,-1.79241,-0.04879,1.75176,0.00469
-3.77853,1.38751,-1.30364,-1.79186,-0.04921,1.75201,0.00469
-3.78007,1.38726,-1.30378,-1.79132,-0.04962,1.75226,0.00469
-3.78162,1.38701,-1.30391,-1.79079,-0.05002,1.75251,0.00468
-3.78316,1.38677,-1.30404,-1.79026,-0.05041,1.75276,0.00468
-3.78470,1.38654,-1.30417,-1.78975,-0.05079,1.75300,0.00468
-3.78624,1.38631,-1.30429,-1.78924,-0.05117,1.75323,0.00468
-3.78779,1.38608,-1.30442,-1.78875,-0.05155,1.75347,0.00468
-3.78933,1.38595,-1.30448,-1.78850,-0.05173,1.75359,0.00468
-3.79087,1.38542,-1.30475,-1.78751,-0.05244,1.75412,0.00468
-3.79241,1.38490,-1.30502,-1.78654,-0.05314,1.75464,0.00467
-3.79395,1.38439,-1.30529,-1.78558,-0.05383,1.75516,0.00467
-3.79550,1.38388,-1.30555,-1.78464,-0.05450,1.75566,0.00467
-3.79704,1.38338,-1.30580,-1.78372,-0.05516,1.75616,0.00467
-3.79858,1.38289,-1.30606,-1.78281,-0.05582,1.75666,0.00467
-3.80012,1.38241,-1.30631,-1.78191,-0.05646,1.75714,0.00467
-3.80167,1.38194,-1.30656,-1.78103,-0.05708,1.75762,0.00466
-3.80321,1.38147,-1.30680,-1.78016,-0.05770,1.75809,0.00466
-3.80475,1.38101,-1.30705,-1.77931,-0.05831,1.75855,0.00466
-3.80629,1.38055,-1.30728,-1.77847,-0.05890,1.75901,0.00466
-3.80783,1.38011,-1.30752,-1.77765,-0.05949,1.75946,0.00466
-3.80938,1.37967,-1.30775,-1.77684,-0.06007,1.75990,0.00465
-3.81092,1.37923,-1.30798,-1.77604,-0.06063,1.76034,0.00465
-3.81246,1.37881,-1.30821,-1.77525,-0.06119,1.76076,0.00465
-3.81400,1.37839,-1.30844,-1.77448,-0.06173,1.76119,0.00465
-3.81555,1.37798,-1.30866,-1.77372,-0.06227,1.76160,0.00465
-3.81709,1.37757,-1.30888,-1.77298,-0.06279,1.76201,0.00464
-3.81863,1.37717,-1.30909,-1.77224,-0.06331,1.76242,0.00464
-3.82017,1.37677,-1.30930,-1.77152,-0.06382,1.76281,0.00464
-3.82171,1.37638,-1.30952,-1.77081,-0.06432,1.76321,0.00464
-3.82326,1.37600,-1.30972,-1.77011,-0.06481,1.76359,0.00464
-3.82480,1.37563,-1.30993,-1.76942,-0.06529,1.76397,0.00464
-3.82634,1.37525,-1.31013,-1.76874,-0.06576,1.76435,0.00463
-3.82788,1.37489,-1.31033,-1.76808,-0.06623,1.76471,0.00463
-3.82943,1.37453,-1.31053,-1.76742,-0.06669,1.76508,0.00463
-3.83097,1.37418,-1.31072,-1.76678,-0.06714,1.76543,0.00463
-3.83251,1.37383,-1.31091,-1.76614,-0.06758,1.76579,0.00463
-3.83405,1.37348,-1.31110,-1.76552,-0.06801,1.76613,0.00462
-3.83560,1.37315,-1.31129,-1.76491,-0.06844,1.76648,0.00462
-3.83714,1.37281,-1.31147,-1.76430,-0.06885,1.76681,0.00462
-3.83868,1.37249,-1.31166,-1.76371,-0.06926,1.76714,0.00462
-3.84022,1.37216,-1.31184,-1.76313,-0.06967,1.76747,0.00462
-3.84176,1.37185,-1.31201,-1.76255,-0.07007,1.76779,0.00462
-3.84331,1.37153,-1.31219,-1.76199,-0.07046,1.76811,0.00461
-3.84485,1.37123,-1.31236,-1.76143,-0.07084,1.76842,0.00461
-3.84639,1.37092,-1.31253,-1.76089,-0.07121,1.76873,0.00461
-3.84793,1.37062,-1.31270,-1.76035,-0.07158,1.76903,0.00461
-3.84948,1.37033,-1.31286,-1.75982,-0.07195,1.76933,0.00461
-3.85102,1.37004,-1.31303,-1.75930,-0.07230,1.76962,0.00461
-3.85256,1.36975,-1.31319,-1.75879,-0.07265,1.76991,0.00460
-3.85410,1.36947,-1.31335,-1.75829,-0.07300,1.77019,0.00460
-3.85564,1.36920,-1.31350,-1.75780,-0.07334,1.77047,0.00460
-3.85719,1.36915,-1.31353,-1.75769,-0.07342,1.77052,0.00460
-3.85873,1.36867,-1.31380,-1.75664,-0.07419,1.77100,0.00460
-3.86027,1.36820,-1.31407,-1.75561,-0.07494,1.77148,0.00460
-3.86181,1.36774,-1.31433,-1.75460,-0.07569,1.77194,0.00459
-3.86336,1.36729,-1.31459,-1.75360,-0.07642,1.77240,0.00459
-3.86490,1.36684,-1.31485,-1.75262,-0.07714,1.77285,0.00459
-3.86644,1.36640,-1.31511,-1.75165,-0.07784,1.77330,0.00459
-3.86798,1.36596,-1.31536,-1.75070,-0.07853,1.77374,0.00459
-3.86952,1.36553,-1.31561,-1.74977,-0.07922,1.77417,0.00459
-3.87107,1.36511,-1.31585,-1.74885,-0.07988,1.77460,0.00458
-3.87261,1.36470,-1.31610,-1.74795,-0.08054,1.77501,0.00458
-3.87415,1.36429,-1.31634,-1.74706,-0.08119,1.77543,0.00458
-3.87569,1.36389,-1.31657,-1.74618,-0.08182,1.77583,0.00458
-3.87724,1.36349,-1.31681,-1.74532,-0.08244,1.77623,0.00458
-3.87878,1.36310,-1.31704,-1.74448,-0.08306,1.77663,0.00458
-3.88032,1.36272,-1.31727,-1.74364,-0.08366,1.77702,0.00457
-3.88186,1.36234,-1.31749,-1.74283,-0.08425,1.77740,0.00457
-3.88341,1.36197,-1.31771,-1.74202,-0.08483,1.77778,0.00457
-3.88495,1.36160,-1.31793,-1.74123,-0.08540,1.77815,0.00457
-3.88649,1.36124,-1.31815,-1.74045,-0.08596,1.77851,0.00457
-3.88803,1.36088,-1.31836,-1.73968,-0.08651,1.77887,0.00457
-3.88957,1.36053,-1.31857,-1.73893,-0.08705,1.77923,0.00456
-3.89112,1.36019,-1.31878,-1.73819,-0.08759,1.77958,0.00456
-3.89266,1.35985,-1.31899,-1.73746,-0.08811,1.77992,0.00456
-3.89420,1.35952,-1.31919,-1.73674,-0.08862,1.78026,0.00456
-3.89574,1.35919,-1.31939,-1.73603,-0.08913,1.78059,0.00456
-3.89729,1.35886,-1.31959,-1.73534,-0.08962,1.78092,0.00455
-3.89883,1.35855,-1.31979,-1.73466,-0.09011,1.78125,0.00455
-3.90037,1.35823,-1.31998,-1.73398,-0.09059,1.78156,0.00455
-3.90191,1.35792,-1.32017,-1.73332,-0.09106,1.78188,0.00455
-3.90345,1.35762,-1.32036,-1.73267,-0.09152,1.78219,0.00455
-3.90500,1.35732,-1.32054,-1.73203,-0.09197,1.78249,0.00455
-3.90654,1.35702,-1.32072,-1.73140,-0.09242,1.78279,0.00454
-3.90808,1.35673,-1.32090,-1.73079,-0.09286,1.78309,0.00454
-3.90962,1.35645,-1.32108,-1.73018,-0.09329,1.78338,0.00454
-3.91117,1.35616,-1.32126,-1.72958,-0.09371,1.78367,0.00454
-3.91271,1.35589,-1.32143,-1.72899,-0.09413,1.78395,0.00454
-3.91425,1.35561,-1.32160,-1.72841,-0.09454,1.78423,0.00454
-3.91579,1.35534,-1.32177,-1.72784,-0.09494,1.78450,0.00453
-3.91733,1.35508,-1.32194,-1.72728,-0.09533,1.78477,0.00453
-3.91888,1.35482,-1.32210,-1.72673,-0.09572,1.78504,0.00453
-3.92042,1.35456,-1.32226,-1.72619,-0.09610,1.78530,0.00453
-3.92196,1.35431,-1.32242,-1.72566,-0.09647,1.78556,0.00453
-3.92350,1.35406,-1.32258,-1.72513,-0.09684,1.78581,0.00452
-3.92505,1.35381,-1.32274,-1.72462,-0.09720,1.78606,0.00452
-3.92659,1.35357,-1.32289,-1.72411,-0.09756,1.78631,0.00452
-3.92813,1.35331,-1.32305,-1.72358,-0.09792,1.78658,0.00452
-3.92967,1.35305,-1.32321,-1.72306,-0.09828,1.78684,0.00452
-3.93122,1.35280,-1.32337,-1.72255,-0.09863,1.78710,0.00452
-3.93276,1.35267,-1.32345,-1.72229,-0.09881,1.78722,0.00452
-3.93430,1.35242,-1.32361,-1.72173,-0.09922,1.78747,0.00451
-3.93584,1.35218,-1.32377,-1.72118,-0.09961,1.78772,0.00451
-3.93738,1.35194,-1.32392,-1.72064,-0.10000,1.78796,0.00451
-3.93893,1.35171,-1.32408,-1.72010,-0.10038,1.78820,0.00451
-3.94047,1.35148,-1.32423,-1.71958,-0.10075,1.78844,0.00451
-3.94201,1.35125,-1.32438,-1.71906,-0.10112,1.78867,0.00451
-3.94355,1.35109,-1.32448,-1.71870,-0.10138,1.78884,0.00450
-3.94510,1.35085,-1.32464,-1.71808,-0.10183,1.78909,0.00450
-3.94664,1.35061,-1.32480,-1.71748,-0.10228,1.78933,0.00450
-3.94818,1.35037,-1.32496,-1.71688,-0.10271,1.78957,0.00450
-3.94972,1.35014,-1.32512,-1.71630,-0.10314,1.78981,0.00450
-3.95126,1.34991,-1.32527,-1.71573,-0.10356,1.79004,0.00450
-3.95281,1.34968,-1.32542,-1.71516,-0.10397,1.79028,0.00450
-3.95435,1.34946,-1.32557,-1.71460,-0.10438,1.79050,0.00449
-3.95589,1.34924,-1.32572,-1.71406,-0.10478,1.79073,0.00449
-3.95743,1.34902,-1.32587,-1.71352,-0.10517,1.79095,0.00449
-3.95898,1.34881,-1.32601,-1.71299,-0.10555,1.79117,0.00449
-3.96052,1.34860,-1.32615,-1.71247,-0.10593,1.79138,0.00449
-3.96206,1.34844,-1.32627,-1.71206,-0.10623,1.79155,0.00449
-3.96360,1.34821,-1.32642,-1.71155,-0.10659,1.79178,0.00449
-3.96514,1.34819,-1.32643,-1.71149,-0.10663,1.79180,0.00449
-3.96669,1.34796,-1.32658,-1.71097,-0.10701,1.79203,0.00448
-3.96823,1.34774,-1.32673,-1.71045,-0.10738,1.79226,0.00448
-3.96977,1.34770,-1.32677,-1.71026,-0.10753,1.79231,0.00448
-3.97131,1.34773,-1.32676,-1.71023,-0.10758,1.79227,0.00448
-3.97286,1.34808,-1.32664,-1.70989,-0.10803,1.79194,0.00448
-3.97440,1.34842,-1.32652,-1.70955,-0.10849,1.79161,0.00448
-3.97594,1.34876,-1.32641,-1.70923,-0.10893,1.79128,0.00448
-3.97748,1.34910,-1.32630,-1.70890,-0.10936,1.79097,0.00448
-3.97903,1.34942,-1.32619,-1.70859,-0.10979,1.79065,0.00448
-3.98057,1.34975,-1.32608,-1.70828,-0.11021,1.79034,0.00449
-3.98211,1.35006,-1.32598,-1.70797,-0.11062,1.79004,0.00449
-3.98365,1.35026,-1.32591,-1.70779,-0.11087,1.78985,0.00449
-3.98519,1.35069,-1.32575,-1.70754,-0.11129,1.78943,0.00449
-3.98674,1.35111,-1.32560,-1.70728,-0.11170,1.78903,0.00449
-3.98828,1.35152,-1.32545,-1.70703,-0.11210,1.78863,0.00449
-3.98982,1.35193,-1.32530,-1.70679,-0.11250,1.78824,0.00449
-3.99136,1.35233,-1.32515,-1.70654,-0.11289,1.78785,0.00449
-3.99291,1.35273,-1.32501,-1.70631,-0.11327,1.78747,0.00449
-3.99445,1.35311,-1.32487,-1.70607,-0.11365,1.78709,0.00449
-3.99599,1.35339,-1.32477,-1.70592,-0.11391,1.78682,0.00449
-3.99753,1.35386,-1.32459,-1.70572,-0.11429,1.78636,0.00449
-3.99907,1.35433,-1.32441,-1.70553,-0.11466,1.78591,0.00449
-4.00062,1.35479,-1.32424,-1.70534,-0.11502,1.78547,0.00449
-4.00216,1.35524,-1.32406,-1.70515,-0.11538,1.78503,0.00450
-4.00370,1.35568,-1.32390,-1.70497,-0.11574,1.78460,0.00450
-4.00524,1.35612,-1.32373,-1.70479,-0.11608,1.78417,0.00450
-4.00679,1.35655,-1.32357,-1.70462,-0.11642,1.78375,0.00450
-4.00833,1.35669,-1.32352,-1.70456,-0.11653,1.78362,0.00450
-4.00987,1.35720,-1.32332,-1.70438,-0.11691,1.78312,0.00450
-4.01141,1.35771,-1.32312,-1.70420,-0.11729,1.78262,0.00450
-4.01295,1.35821,-1.32293,-1.70402,-0.11767,1.78213,0.00450
-4.01450,1.35870,-1.32274,-1.70385,-0.11803,1.78165,0.00450
-4.01604,1.35919,-1.32256,-1.70368,-0.11839,1.78118,0.00450
-4.01758,1.35967,-1.32238,-1.70351,-0.11874,1.78071,0.00450
-4.01912,1.36014,-1.32220,-1.70334,-0.11909,1.78025,0.00451
-4.02067,1.36060,-1.32202,-1.70318,-0.11943,1.77980,0.00451
-4.02221,1.36106,-1.32185,-1.70302,-0.11977,1.77935,0.00451
-4.02375,1.36151,-1.32168,-1.70287,-0.12009,1.77891,0.00451
-4.02529,1.36182,-1.32156,-1.70276,-0.12032,1.77861,0.00451
-4.02684,1.36231,-1.32138,-1.70262,-0.12065,1.77813,0.00451
-4.02838,1.36278,-1.32119,-1.70249,-0.12097,1.77766,0.00451
-4.02992,1.36325,-1.32101,-1.70236,-0.12128,1.77720,0.00451
-4.03146,1.36371,-1.32084,-1.70223,-0.12159,1.77675,0.00451
-4.03300,1.36386,-1.32078,-1.70219,-0.12169,1.77661,0.00451
-4.03455,1.36441,-1.32056,-1.70210,-0.12200,1.77607,0.00451
-4.03609,1.36495,-1.32035,-1.70200,-0.12231,1.77554,0.00452
-4.03763,1.36548,-1.32014,-1.70191,-0.12262,1.77502,0.00452
-4.03917,1.36600,-1.31994,-1.70182,-0.12292,1.77451,0.00452
-4.04072,1.36652,-1.31974,-1.70173,-0.12321,1.77400,0.00452
-4.04226,1.36703,-1.31954,-1.70164,-0.12350,1.77350,0.00452
-4.04380,1.36752,-1.31934,-1.70156,-0.12378,1.77301,0.00452
-4.04534,1.36802,-1.31915,-1.70147,-0.12406,1.77253,0.00452
-4.04688,1.36836,-1.31902,-1.70142,-0.12426,1.77219,0.00452
-4.04843,1.36891,-1.31880,-1.70133,-0.12456,1.77165,0.00452
-4.04997,1.36946,-1.31859,-1.70126,-0.12486,1.77111,0.00452
-4.05151,1.36999,-1.31838,-1.70118,-0.12515,1.77059,0.00453
-4.05305,1.37052,-1.31817,-1.70110,-0.12543,1.77007,0.00453
-4.05460,1.37103,-1.31797,-1.70103,-0.12571,1.76956,0.00453
-4.05614,1.37154,-1.31777,-1.70096,-0.12599,1.76906,0.00453
-4.05768,1.37204,-1.31757,-1.70088,-0.12626,1.76857,0.00453
-4.05922,1.37249,-1.31740,-1.70082,-0.12650,1.76813,0.00453
-4.06076,1.37300,-1.31720,-1.70076,-0.12676,1.76762,0.00453
-4.06231,1.37351,-1.31700,-1.70070,-0.12702,1.76713,0.00453
-4.06385,1.37378,-1.31689,-1.70068,-0.12716,1.76685,0.00453
-4.06539,1.37456,-1.31658,-1.70071,-0.12745,1.76609,0.00454
-4.06693,1.37533,-1.31626,-1.70074,-0.12774,1.76533,0.00454
-4.06848,1.37608,-1.31595,-1.70077,-0.12802,1.76459,0.00454
-4.07002,1.37683,-1.31565,-1.70079,-0.12830,1.76386,0.00454
-4.07156,1.37756,-1.31535,-1.70082,-0.12858,1.76314,0.00454
-4.07310,1.37828,-1.31506,-1.70085,-0.12885,1.76242,0.00455
-4.07465,1.37899,-1.31477,-1.70088,-0.12911,1.76172,0.00455
-4.07619,1.37969,-1.31449,-1.70090,-0.12937,1.76103,0.00455
-4.07773,1.38038,-1.31421,-1.70093,-0.12963,1.76035,0.00455
-4.07927,1.38106,-1.31394,-1.70096,-0.12988,1.75968,0.00455
-4.08081,1.38173,-1.31367,-1.70099,-0.13013,1.75902,0.00456
-4.08236,1.38238,-1.31340,-1.70101,-0.13037,1.75838,0.00456
-4.08390,1.38303,-1.31314,-1.70104,-0.13061,1.75773,0.00456
-4.08544,1.38367,-1.31289,-1.70106,-0.13084,1.75710,0.00456
-4.08698,1.38430,-1.31263,-1.70109,-0.13107,1.75648,0.00456
-4.08853,1.38492,-1.31239,-1.70112,-0.13130,1.75587,0.00456
-4.09007,1.38553,-1.31214,-1.70114,-0.13152,1.75527,0.00457
-4.09161,1.38613,-1.31190,-1.70117,-0.13174,1.75467,0.00457
-4.09315,1.38672,-1.31167,-1.70119,-0.13195,1.75409,0.00457
-4.09469,1.38730,-1.31144,-1.70122,-0.13217,1.75351,0.00457
-4.09624,1.38787,-1.31121,-1.70124,-0.13237,1.75295,0.00457
-4.09778,1.38844,-1.31098,-1.70126,-0.13258,1.75239,0.00457
-4.09932,1.38899,-1.31076,-1.70129,-0.13278,1.75184,0.00457
-4.10086,1.38954,-1.31055,-1.70131,-0.13298,1.75129,0.00458
-4.10241,1.39008,-1.31033,-1.70134,-0.13317,1.75076,0.00458
-4.10395,1.39035,-1.31023,-1.70135,-0.13326,1.75049,0.00458
-4.10549,1.39090,-1.31001,-1.70138,-0.13346,1.74995,0.00458
-4.10703,1.39144,-1.30979,-1.70141,-0.13365,1.74941,0.00458
-4.10857,1.39177,-1.30966,-1.70143,-0.13376,1.74908,0.00458
-4.11012,1.39240,-1.30942,-1.70144,-0.13400,1.74846,0.00458
-4.11166,1.39302,-1.30917,-1.70146,-0.13423,1.74785,0.00459
-4.11320,1.39362,-1.30893,-1.70147,-0.13446,1.74724,0.00459
-4.11474,1.39422,-1.30870,-1.70149,-0.13468,1.74665,0.00459
-4.11629,1.39481,-1.30847,-1.70150,-0.13490,1.74607,0.00459
-4.11783,1.39539,-1.30824,-1.70152,-0.13512,1.74549,0.00459
-4.11937,1.39596,-1.30802,-1.70154,-0.13533,1.74492,0.00459
-4.12091,1.39653,-1.30780,-1.70155,-0.13554,1.74437,0.00460
-4.12246,1.39708,-1.30758,-1.70157,-0.13574,1.74381,0.00460
-4.12400,1.39763,-1.30737,-1.70158,-0.13594,1.74327,0.00460
-4.12554,1.39816,-1.30716,-1.70160,-0.13614,1.74274,0.00460
-4.12708,1.39833,-1.30709,-1.70160,-0.13620,1.74258,0.00460
-4.12862,1.39888,-1.30688,-1.70162,-0.13640,1.74203,0.00460
-4.13017,1.39942,-1.30667,-1.70165,-0.13659,1.74149,0.00460
-4.13171,1.39977,-1.30653,-1.70167,-0.13671,1.74115,0.00460
-4.13325,1.40054,-1.30622,-1.70176,-0.13693,1.74038,0.00461
-4.13479,1.40130,-1.30592,-1.70185,-0.13715,1.73963,0.00461
-4.13634,1.40205,-1.30562,-1.70194,-0.13736,1.73889,0.00461
-4.13788,1.40279,-1.30533,-1.70202,-0.13757,1.73815,0.00461
-4.13942,1.40352,-1.30504,-1.70211,-0.13778,1.73743,0.00462
-4.14096,1.40423,-1.30476,-1.70219,-0.13798,1.73672,0.00462
-4.14250,1.40494,-1.30448,-1.70228,-0.13818,1.73602,0.00462
-4.14405,1.40563,-1.30420,-1.70236,-0.13838,1.73534,0.00462
-4.14559,1.40632,-1.30393,-1.70244,-0.13857,1.73466,0.00462
-4.14713,1.40699,-1.30367,-1.70252,-0.13876,1.73399,0.00463
-4.14867,1.40765,-1.30340,-1.70260,-0.13895,1.73333,0.00463
-4.15022,1.40831,-1.30315,-1.70268,-0.13913,1.73268,0.00463
-4.15176,1.40895,-1.30289,-1.70276,-0.13931,1.73204,0.00463
-4.15330,1.40958,-1.30265,-1.70283,-0.13949,1.73141,0.00463
-4.15484,1.41021,-1.30240,-1.70291,-0.13966,1.73079,0.00464
-4.15638,1.41082,-1.30216,-1.70298,-0.13984,1.73018,0.00464
-4.15793,1.41143,-1.30192,-1.70305,-0.14000,1.72958,0.00464
-4.15947,1.41203,-1.30169,-1.70312,-0.14017,1.72898,0.00464
-4.16101,1.41261,-1.30146,-1.70320,-0.14033,1.72840,0.00464
-4.16255,1.41319,-1.30123,-1.70327,-0.14049,1.72782,0.00464
-4.16410,1.41376,-1.30101,-1.70333,-0.14065,1.72725,0.00465
-4.16564,1.41432,-1.30079,-1.70340,-0.14080,1.72669,0.00465
-4.16718,1.41489,-1.30057,-1.70347,-0.14096,1.72613,0.00465
-4.16872,1.41558,-1.30030,-1.70358,-0.14113,1.72544,0.00465
-4.17027,1.41626,-1.30003,-1.70369,-0.14129,1.72477,0.00465
-4.17181,1.41694,-1.29977,-1.70379,-0.14146,1.72410,0.00466
-4.17335,1.41760,-1.29951,-1.70389,-0.14162,1.72344,0.00466
-4.17489,1.41825,-1.29926,-1.70399,-0.14177,1.72279,0.00466
-4.17643,1.41889,-1.29901,-1.70409,-0.14193,1.72216,0.00466
-4.17798,1.41952,-1.29876,-1.70419,-0.14208,1.72153,0.00466
-4.17952,1.42014,-1.29852,-1.70429,-0.14223,1.72091,0.00467
-4.18106,1.42075,-1.29828,-1.70438,-0.14238,1.72030,0.00467
-4.18260,1.42136,-1.29805,-1.70447,-0.14252,1.71970,0.00467
-4.18415,1.42195,-1.29782,-1.70457,-0.14267,1.71911,0.00467
-4.18569,1.42254,-1.29759,-1.70466,-0.14281,1.71852,0.00467
-4.18723,1.42311,-1.29737,-1.70475,-0.14294,1.71795,0.00468
-4.18877,1.42368,-1.29715,-1.70484,-0.14308,1.71738,0.00468
-4.19031,1.42424,-1.29693,-1.70492,-0.14321,1.71683,0.00468
-4.19186,1.42432,-1.29690,-1.70494,-0.14323,1.71675,0.00468
-4.19340,1.42509,-1.29660,-1.70508,-0.14339,1.71598,0.00468
-4.19494,1.42585,-1.29630,-1.70523,-0.14355,1.71523,0.00468
-4.19648,1.42660,-1.29601,-1.70537,-0.14370,1.71449,0.00469
-4.19803,1.42733,-1.29572,-1.70551,-0.14385,1.71375,0.00469
-4.19957,1.42806,-1.29544,-1.70564,-0.14400,1.71303,0.00469
-4.20111,1.42877,-1.29516,-1.70578,-0.14415,1.71232,0.00469
-4.20265,1.42948,-1.29489,-1.70591,-0.14430,1.71162,0.00470
-4.20419,1.43017,-1.29462,-1.70604,-0.14444,1.71093,0.00470
-4.20574,1.43086,-1.29436,-1.70617,-0.14458,1.71025,0.00470
-4.20728,1.43153,-1.29410,-1.70630,-0.14472,1.70958,0.00470
-4.20882,1.43219,-1.29384,-1.70642,-0.14485,1.70892,0.00471
-4.21036,1.43285,-1.29359,-1.70655,-0.14498,1.70827,0.00471
-4.21191,1.43349,-1.29334,-1.70667,-0.14512,1.70763,0.00471
-4.21345,1.43412,-1.29310,-1.70679,-0.14524,1.70699,0.00471
-4.21499,1.43475,-1.29286,-1.70690,-0.14537,1.70637,0.00471
-4.21653,1.43536,-1.29262,-1.70702,-0.14549,1.70576,0.00472
-4.21808,1.43597,-1.29239,-1.70713,-0.14562,1.70515,0.00472
-4.21962,1.43656,-1.29216,-1.70725,-0.14574,1.70456,0.00472
-4.22116,1.43715,-1.29193,-1.70736,-0.14586,1.70397,0.00472
-4.22270,1.43773,-1.29171,-1.70747,-0.14597,1.70340,0.00472
-4.22424,1.43830,-1.29149,-1.70758,-0.14609,1.70283,0.00473
-4.22579,1.43871,-1.29134,-1.70765,-0.14617,1.70242,0.00473
-4.22733,1.43941,-1.29107,-1.70780,-0.14630,1.70172,0.00473
-4.22887,1.44011,-1.29080,-1.70794,-0.14643,1.70103,0.00473
-4.23041,1.44079,-1.29054,-1.70808,-0.14655,1.70035,0.00474
-4.23196,1.44146,-1.29028,-1.70822,-0.14668,1.69967,0.00474
-4.23350,1.44213,-1.29003,-1.70835,-0.14680,1.69901,0.00474
-4.23504,1.44278,-1.28978,-1.70848,-0.14692,1.69836,0.00474
-4.23658,1.44342,-1.28953,-1.70862,-0.14704,1.69772,0.00474
-4.23812,1.44406,-1.28929,-1.70874,-0.14715,1.69709,0.00475
-4.23967,1.44468,-1.28905,-1.70887,-0.14727,1.69647,0.00475
-4.24121,1.44530,-1.28882,-1.70900,-0.14738,1.69585,0.00475
-4.24275,1.44590,-1.28859,-1.70912,-0.14749,1.69525,0.00475
-4.24429,1.44650,-1.28836,-1.70924,-0.14760,1.69465,0.00475
-4.24584,1.44709,-1.28814,-1.70936,-0.14771,1.69407,0.00476
-4.24738,1.44767,-1.28792,-1.70948,-0.14781,1.69349,0.00476
-4.24892,1.44824,-1.28770,-1.70960,-0.14791,1.69292,0.00476
-4.25046,1.44842,-1.28763,-1.70963,-0.14795,1.69273,0.00476
-4.25200,1.44916,-1.28736,-1.70975,-0.14811,1.69200,0.00476
-4.25355,1.44988,-1.28709,-1.70986,-0.14827,1.69128,0.00477
-4.25509,1.45059,-1.28683,-1.70997,-0.14843,1.69057,0.00477
-4.25663,1.45130,-1.28656,-1.71008,-0.14858,1.68987,0.00477
-4.25817,1.45199,-1.28631,-1.71019,-0.14874,1.68918,0.00477
-4.25972,1.45267,-1.28605,-1.71030,-0.14889,1.68850,0.00478
-4.26126,1.45334,-1.28581,-1.71040,-0.14903,1.68784,0.00478
-4.26280,1.45400,-1.28556,-1.71051,-0.14918,1.68718,0.00478
-4.26434,1.45465,-1.28532,-1.71061,-0.14932,1.68653,0.00478
-4.26589,1.45529,-1.28508,-1.71071,-0.14946,1.68589,0.00479
-4.26743,1.45593,-1.28485,-1.71081,-0.14959,1.68526,0.00479
-4.26897,1.45655,-1.28462,-1.71091,-0.14973,1.68464,0.00479
-4.27051,1.45716,-1.28439,-1.71101,-0.14986,1.68402,0.00479
-4.27205,1.45777,-1.28417,-1.71110,-0.14999,1.68342,0.00480
-4.27360,1.45836,-1.28395,-1.71120,-0.15012,1.68283,0.00480
-4.27514,1.45895,-1.28374,-1.71129,-0.15025,1.68224,0.00480
-4.27668,1.45952,-1.28353,-1.71138,-0.15037,1.68166,0.00480
-4.27822,1.46010,-1.28331,-1.71147,-0.15049,1.68109,0.00480
-4.27977,1.46074,-1.28308,-1.71158,-0.15062,1.68046,0.00481
-4.28131,1.46136,-1.28285,-1.71169,-0.15075,1.67983,0.00481
-4.28285,1.46198,-1.28262,-1.71179,-0.15088,1.67922,0.00481
-4.28439,1.46259,-1.28240,-1.71189,-0.15100,1.67861,0.00481
-4.28593,1.46318,-1.28218,-1.71200,-0.15112,1.67801,0.00481
-4.28748,1.46377,-1.28197,-1.71210,-0.15124,1.67742,0.00482
-4.28902,1.46435,-1.28175,-1.71219,-0.15136,1.67684,0.00482
-4.29056,1.46493,-1.28155,-1.71229,-0.15147,1.67627,0.00482
-4.29210,1.46499,-1.28152,-1.71230,-0.15148,1.67621,0.00482
-4.29365,1.46563,-1.28129,-1.71242,-0.15161,1.67557,0.00482
-4.29519,1.46626,-1.28106,-1.71253,-0.15173,1.67494,0.00483
-4.29673,1.46687,-1.28083,-1.71264,-0.15185,1.67433,0.00483
-4.29827,1.46748,-1.28061,-1.71275,-0.15196,1.67372,0.00483
-4.29981,1.46808,-1.28039,-1.71286,-0.15208,1.67312,0.00483
-4.30136,1.46868,-1.28018,-1.71296,-0.15219,1.67253,0.00483
-4.30290,1.46926,-1.27997,-1.71307,-0.15230,1.67195,0.00484
-4.30444,1.46983,-1.27976,-1.71317,-0.15241,1.67137,0.00484
-4.30598,1.46997,-1.27971,-1.71319,-0.15244,1.67123,0.00484
-4.30753,1.47082,-1.27941,-1.71329,-0.15264,1.67039,0.00484
-4.30907,1.47165,-1.27911,-1.71339,-0.15284,1.66957,0.00485
-4.31061,1.47246,-1.27882,-1.71349,-0.15303,1.66876,0.00485
-4.31215,1.47327,-1.27854,-1.71359,-0.15322,1.66796,0.00485
-4.31370,1.47406,-1.27826,-1.71368,-0.15341,1.66717,0.00485
-4.31524,1.47484,-1.27798,-1.71378,-0.15360,1.66639,0.00486
-4.31678,1.47561,-1.27771,-1.71387,-0.15378,1.66563,0.00486
-4.31832,1.47637,-1.27744,-1.71397,-0.15395,1.66487,0.00486
-4.31986,1.47712,-1.27718,-1.71406,-0.15413,1.66413,0.00487
-4.32141,1.47785,-1.27692,-1.71415,-0.15430,1.66340,0.00487
-4.32295,1.47858,-1.27667,-1.71424,-0.15447,1.66267,0.00487
-4.32449,1.47929,-1.27642,-1.71432,-0.15464,1.66196,0.00487
-4.32603,1.48000,-1.27617,-1.71441,-0.15480,1.66126,0.00488
-4.32758,1.48069,-1.27593,-1.71449,-0.15496,1.66057,0.00488
-4.32912,1.48137,-1.27569,-1.71458,-0.15512,1.65989,0.00488
-4.33066,1.48205,-1.27546,-1.71466,-0.15527,1.65922,0.00488
-4.33220,1.48271,-1.27522,-1.71474,-0.15543,1.65856,0.00489
-4.33374,1.48336,-1.27500,-1.71482,-0.15558,1.65791,0.00489
-4.33529,1.48400,-1.27477,-1.71490,-0.15572,1.65726,0.00489
-4.33683,1.48464,-1.27455,-1.71498,-0.15587,1.65663,0.00489
-4.33837,1.48526,-1.27434,-1.71506,-0.15601,1.65601,0.00490
-4.33991,1.48588,-1.27412,-1.71514,-0.15615,1.65539,0.00490
-4.34146,1.48648,-1.27391,-1.71521,-0.15629,1.65479,0.00490
-4.34300,1.48708,-1.27370,-1.71529,-0.15643,1.65419,0.00490
-4.34454,1.48767,-1.27350,-1.71536,-0.15656,1.65360,0.00491
-4.34608,1.48825,-1.27330,-1.71543,-0.15669,1.65302,0.00491
-4.34762,1.48854,-1.27320,-1.71547,-0.15676,1.65273,0.00491
-4.34917,1.48918,-1.27297,-1.71556,-0.15690,1.65209,0.00491
-4.35071,1.48982,-1.27276,-1.71564,-0.15703,1.65146,0.00491
-4.35225,1.49044,-1.27254,-1.71573,-0.15717,1.65084,0.00492
-4.35379,1.49105,-1.27233,-1.71582,-0.15730,1.65022,0.00492
-4.35534,1.49166,-1.27212,-1.71590,-0.15742,1.64962,0.00492
-4.35688,1.49225,-1.27191,-1.71598,-0.15755,1.64902,0.00492
-4.35842,1.49284,-1.27171,-1.71606,-0.15768,1.64843,0.00493
-4.35996,1.49342,-1.27151,-1.71614,-0.15780,1.64786,0.00493
-4.36151,1.49356,-1.27146,-1.71617,-0.15783,1.64771,0.00493
-4.36305,1.49441,-1.27117,-1.71631,-0.15798,1.64687,0.00493
-4.36459,1.49525,-1.27088,-1.71645,-0.15813,1.64604,0.00493
-4.36613,1.49607,-1.27060,-1.71658,-0.15828,1.64522,0.00494
-4.36767,1.49688,-1.27032,-1.71672,-0.15843,1.64441,0.00494
-4.36922,1.49768,-1.27004,-1.71685,-0.15858,1.64362,0.00494
-4.37076,1.49847,-1.26977,-1.71698,-0.15872,1.64284,0.00495
-4.37230,1.49924,-1.26951,-1.71711,-0.15886,1.64206,0.00495
-4.37384,1.50001,-1.26925,-1.71724,-0.15900,1.64130,0.00495
-4.37539,1.50076,-1.26899,-1.71737,-0.15914,1.64055,0.00496
-4.37693,1.50150,-1.26873,-1.71749,-0.15927,1.63981,0.00496
-4.37847,1.50223,-1.26849,-1.71761,-0.15940,1.63908,0.00496
-4.38001,1.50295,-1.26824,-1.71773,-0.15953,1.63837,0.00496
-4.38155,1.50366,-1.26800,-1.71785,-0.15966,1.63766,0.00497
-4.38310,1.50436,-1.26776,-1.71797,-0.15978,1.63696,0.00497
-4.38464,1.50505,-1.26753,-1.71808,-0.15991,1.63628,0.00497
-4.38618,1.50573,-1.26729,-1.71820,-0.16003,1.63560,0.00497
-4.38772,1.50640,-1.26707,-1.71831,-0.16015,1.63493,0.00498
-4.38927,1.50705,-1.26684,-1.71842,-0.16026,1.63427,0.00498
-4.39081,1.50770,-1.26662,-1.71853,-0.16038,1.63363,0.00498
-4.39235,1.50834,-1.26641,-1.71863,-0.16049,1.63299,0.00499
-4.39389,1.50897,-1.26619,-1.71874,-0.16060,1.63236,0.00499
-4.39543,1.50959,-1.26598,-1.71884,-0.16071,1.63174,0.00499
-4.39698,1.51020,-1.26578,-1.71895,-0.16082,1.63113,0.00499
-4.39852,1.51080,-1.26557,-1.71905,-0.16093,1.63052,0.00499
-4.40006,1.51140,-1.26537,-1.71915,-0.16103,1.62993,0.00500
-4.40160,1.51198,-1.26517,-1.71925,-0.16113,1.62934,0.00500
-4.40315,1.51210,-1.26513,-1.71926,-0.16116,1.62922,0.00500
-4.40469,1.51273,-1.26492,-1.71935,-0.16128,1.62860,0.00500
-4.40623,1.51335,-1.26472,-1.71944,-0.16141,1.62798,0.00500
-4.40777,1.51395,-1.26452,-1.71952,-0.16153,1.62738,0.00501
-4.40932,1.51455,-1.26432,-1.71960,-0.16165,1.62678,0.00501
-4.41086,1.51514,-1.26412,-1.71968,-0.16177,1.62619,0.00501
-4.41240,1.51562,-1.26396,-1.71975,-0.16186,1.62571,0.00501
-4.41394,1.51629,-1.26374,-1.71985,-0.16199,1.62504,0.00502
-4.41548,1.51696,-1.26352,-1.71995,-0.16211,1.62437,0.00502
-4.41703,1.51762,-1.26330,-1.72005,-0.16224,1.62371,0.00502
-4.41857,1.51826,-1.26308,-1.72015,-0.16236,1.62307,0.00502
-4.42011,1.51890,-1.26287,-1.72024,-0.16248,1.62243,0.00503
-4.42165,1.51953,-1.26267,-1.72034,-0.16259,1.62180,0.00503
-4.42320,1.52015,-1.26246,-1.72043,-0.16271,1.62119,0.00503
-4.42474,1.52076,-1.26226,-1.72052,-0.16282,1.62058,0.00503
-4.42628,1.52136,-1.26206,-1.72061,-0.16293,1.61998,0.00504
-4.42782,1.52195,-1.26186,-1.72070,-0.16304,1.61938,0.00504
-4.42936,1.52242,-1.26171,-1.72077,-0.16313,1.61891,0.00504
-4.43091,1.52302,-1.26151,-1.72086,-0.16324,1.61831,0.00504
-4.43245,1.52362,-1.26132,-1.72095,-0.16335,1.61772,0.00505
-4.43399,1.52414,-1.26114,-1.72104,-0.16344,1.61719,0.00505
-4.43553,1.52475,-1.26094,-1.72113,-0.16355,1.61659,0.00505
-4.43708,1.52534,-1.26075,-1.72122,-0.16366,1.61599,0.00505
-4.43862,1.52587,-1.26057,-1.72131,-0.16375,1.61547,0.00505
-4.44016,1.52647,-1.26038,-1.72140,-0.16385,1.61486,0.00506
-4.44170,1.52706,-1.26018,-1.72150,-0.16396,1.61427,0.00506
-4.44324,1.52753,-1.26003,-1.72157,-0.16404,1.61380,0.00506
-4.44479,1.52763,-1.26000,-1.72152,-0.16411,1.61370,0.00506
-4.44633,1.52744,-1.26012,-1.72094,-0.16458,1.61388,0.00506
-4.44787,1.52726,-1.26024,-1.72036,-0.16503,1.61405,0.00506
-4.44941,1.52708,-1.26035,-1.71979,-0.16548,1.61422,0.00506
-4.45096,1.52690,-1.26046,-1.71923,-0.16592,1.61439,0.00506
-4.45250,1.52672,-1.26057,-1.71868,-0.16636,1.61456,0.00505
-4.45404,1.52655,-1.26068,-1.71814,-0.16678,1.61472,0.00505
-4.45558,1.52637,-1.26079,-1.71761,-0.16720,1.61489,0.00505
-4.45713,1.52621,-1.26090,-1.71709,-0.16761,1.61505,0.00505
-4.45867,1.52604,-1.26101,-1.71658,-0.16801,1.61520,0.00505
-4.46021,1.52587,-1.26111,-1.71607,-0.16841,1.61536,0.00505
-4.46175,1.52582,-1.26115,-1.71591,-0.16853,1.61541,0.00505
-4.46329,1.52558,-1.26129,-1.71529,-0.16901,1.61564,0.00505
-4.46484,1.52535,-1.26143,-1.71468,-0.16947,1.61586,0.00504
-4.46638,1.52512,-1.26157,-1.71408,-0.16993,1.61609,0.00504
-4.46792,1.52489,-1.26170,-1.71349,-0.17038,1.61630,0.00504
-4.46946,1.52467,-1.26184,-1.71292,-0.17082,1.61652,0.00504
-4.47101,1.52445,-1.26197,-1.71235,-0.17125,1.61673,0.00504
-4.47255,1.52423,-1.26210,-1.71179,-0.17168,1.61694,0.00504
-4.47409,1.52402,-1.26223,-1.71123,-0.17209,1.61714,0.00503
-4.47563,1.52381,-1.26236,-1.71069,-0.17250,1.61735,0.00503
-4.47717,1.52360,-1.26248,-1.71016,-0.17291,1.61755,0.00503
-4.47872,1.52340,-1.26261,-1.70963,-0.17330,1.61774,0.00503
-4.48026,1.52320,-1.26273,-1.70912,-0.17369,1.61794,0.00503
-4.48180,1.52300,-1.26285,-1.70861,-0.17408,1.61813,0.00503
-4.48334,1.52294,-1.26289,-1.70846,-0.17419,1.61819,0.00503
-4.48489,1.52275,-1.26301,-1.70794,-0.17458,1.61838,0.00503
-4.48643,1.52256,-1.26313,-1.70743,-0.17497,1.61856,0.00502
-4.48797,1.52248,-1.26318,-1.70723,-0.17512,1.61864,0.00502
-4.48951,1.52226,-1.26331,-1.70670,-0.17552,1.61884,0.00502
-4.49105,1.52205,-1.26344,-1.70618,-0.17590,1.61905,0.00502
-4.49260,1.52185,-1.26357,-1.70568,-0.17628,1.61925,0.00502
-4.49414,1.52178,-1.26361,-1.70552,-0.17640,1.61931,0.00502
-4.49568,1.52156,-1.26374,-1.70500,-0.17678,1.61953,0.00502
-4.49722,1.52133,-1.26387,-1.70448,-0.17716,1.61975,0.00502
-4.49877,1.52111,-1.26401,-1.70398,-0.17753,1.61997,0.00501
-4.50031,1.52102,-1.26406,-1.70377,-0.17768,1.62006,0.00501
-4.50185,1.52075,-1.26421,-1.70322,-0.17808,1.62032,0.00501
-4.50339,1.52049,-1.26436,-1.70268,-0.17847,1.62058,0.00501
-4.50494,1.52023,-1.26451,-1.70215,-0.17885,1.62083,0.00501
-4.50648,1.51997,-1.26466,-1.70162,-0.17923,1.62108,0.00501
-4.50802,1.51972,-1.26480,-1.70111,-0.17959,1.62133,0.00500
-4.50956,1.51947,-1.26494,-1.70060,-0.17996,1.62157,0.00500
-4.51110,1.51932,-1.26503,-1.70030,-0.18017,1.62172,0.00500
-4.51265,1.51908,-1.26517,-1.69978,-0.18054,1.62196,0.00500
-4.51419,1.51884,-1.26531,-1.69928,-0.18091,1.62219,0.00500
-4.51573,1.51874,-1.26537,-1.69907,-0.18106,1.62229,0.00500
-4.51727,1.51846,-1.26553,-1.69852,-0.18144,1.62257,0.00500
-4.51882,1.51818,-1.26568,-1.69798,-0.18182,1.62284,0.00499
-4.52036,1.51790,-1.26584,-1.69745,-0.18220,1.62311,0.00499
-4.52190,1.51763,-1.26599,-1.69692,-0.18256,1.62338,0.00499
-4.52344,1.51736,-1.26614,-1.69641,-0.18293,1.62365,0.00499
-4.52498,1.51710,-1.26629,-1.69590,-0.18328,1.62391,0.00499
-4.52653,1.51688,-1.26642,-1.69549,-0.18357,1.62412,0.00499
-4.52807,1.51650,-1.26663,-1.69481,-0.18403,1.62450,0.00498
-4.52961,1.51612,-1.26683,-1.69415,-0.18449,1.62487,0.00498
-4.53115,1.51575,-1.26703,-1.69350,-0.18493,1.62524,0.00498
-4.53270,1.51538,-1.26723,-1.69286,-0.18537,1.62560,0.00498
-4.53424,1.51502,-1.26743,-1.69223,-0.18580,1.62596,0.00497
-4.53578,1.51467,-1.26762,-1.69161,-0.18622,1.62631,0.00497
-4.53732,1.51432,-1.26781,-1.69100,-0.18663,1.62665,0.00497
-4.53886,1.51397,-1.26800,-1.69040,-0.18704,1.62699,0.00497
-4.54041,1.51364,-1.26819,-1.68981,-0.18744,1.62733,0.00496
-4.54195,1.51330,-1.26838,-1.68923,-0.18783,1.62766,0.00496
-4.54349,1.51297,-1.26856,-1.68866,-0.18822,1.62799,0.00496
-4.54503,1.51265,-1.26874,-1.68810,-0.18860,1.62831,0.00496
-4.54658,1.51233,-1.26892,-1.68755,-0.18897,1.62863,0.00496
-4.54812,1.51201,-1.26909,-1.68700,-0.18934,1.62894,0.00495
-4.54966,1.51170,-1.26926,-1.68647,-0.18970,1.62925,0.00495
-4.55120,1.51140,-1.26943,-1.68594,-0.19005,1.62955,0.00495
-4.55275,1.51110,-1.26960,-1.68543,-0.19040,1.62985,0.00495
-4.55429,1.51080,-1.26977,-1.68492,-0.19074,1.63014,0.00495
-4.55583,1.51051,-1.26993,-1.68442,-0.19107,1.63043,0.00494
-4.55737,1.51035,-1.27002,-1.68415,-0.19125,1.63059,0.00494
-4.55891,1.50994,-1.27024,-1.68348,-0.19170,1.63100,0.00494
-4.56046,1.50953,-1.27046,-1.68282,-0.19213,1.63140,0.00494
-4.56200,1.50913,-1.27068,-1.68217,-0.19256,1.63180,0.00494
-4.56354,1.50874,-1.27089,-1.68153,-0.19298,1.63219,0.00493
-4.56508,1.50835,-1.27111,-1.68091,-0.19339,1.63257,0.00493
-4.56663,1.50797,-1.27132,-1.68029,-0.19380,1.63295,0.00493
-4.56817,1.50760,-1.27152,-1.67968,-0.19420,1.63332,0.00493
-4.56971,1.50723,-1.27173,-1.67908,-0.19459,1.63369,0.00492
-4.57125,1.50686,-1.27193,-1.67849,-0.19498,1.63406,0.00492
-4.57279,1.50650,-1.27212,-1.67791,-0.19535,1.63441,0.00492
-4.57434,1.50615,-1.27232,-1.67734,-0.19573,1.63477,0.00492
-4.57588,1.50580,-1.27251,-1.67678,-0.19609,1.63511,0.00492
-4.57742,1.50546,-1.27270,-1.67623,-0.19645,1.63546,0.00491
-4.57896,1.50512,-1.27289,-1.67569,-0.19680,1.63579,0.00491
-4.58051,1.50479,-1.27308,-1.67516,-0.19715,1.63613,0.00491
-4.58205,1.50446,-1.27326,-1.67463,-0.19749,1.63645,0.00491
-4.58359,1.50413,-1.27344,-1.67412,-0.19782,1.63678,0.00491
-4.58513,1.50381,-1.27362,-1.67361,-0.19815,1.63709,0.00490
-4.58667,1.50350,-1.27379,-1.67311,-0.19848,1.63741,0.00490
-4.58822,1.50328,-1.27392,-1.67275,-0.19871,1.63763,0.00490
-4.58976,1.50290,-1.27413,-1.67216,-0.19909,1.63801,0.00490
-4.59130,1.50252,-1.27434,-1.67158,-0.19946,1.63839,0.00489
-4.59284,1.50215,-1.27454,-1.67101,-0.19983,1.63876,0.00489
-4.59439,1.50179,-1.27474,-1.67044,-0.20019,1.63912,0.00489
-4.59593,1.50143,-1.27494,-1.66989,-0.20054,1.63948,0.00489
-4.59747,1.50107,-1.27514,-1.66934,-0.20089,1.63983,0.00489
-4.59901,1.50072,-1.27533,-1.66881,-0.20123,1.64018,0.00488
-4.60056,1.50038,-1.27552,-1.66828,-0.20156,1.64052,0.00488
-4.60210,1.50004,-1.27571,-1.66776,-0.20189,1.64086,0.00488
-4.60364,1.49971,-1.27589,-1.66725,-0.20222,1.64119,0.00488
-4.60518,1.49938,-1.27608,-1.66675,-0.20254,1.64152,0.00488
-4.60672,1.49906,-1.27626,-1.66625,-0.20285,1.64184,0.00487
-4.60827,1.49893,-1.27633,-1.66606,-0.20296,1.64197,0.00487
-4.60981,1.49826,-1.27667,-1.66519,-0.20349,1.64264,0.00487
-4.61135,1.49760,-1.27700,-1.66433,-0.20401,1.64329,0.00487
-4.61289,1.49696,-1.27734,-1.66349,-0.20452,1.64393,0.00486
-4.61444,1.49632,-1.27766,-1.66265,-0.20502,1.64457,0.00486
-4.61598,1.49569,-1.27799,-1.66184,-0.20551,1.64519,0.00485
-4.61752,1.49507,-1.27830,-1.66103,-0.20599,1.64581,0.00485
-4.61906,1.49446,-1.27862,-1.66024,-0.20647,1.64642,0.00485
-4.62060,1.49386,-1.27893,-1.65946,-0.20693,1.64701,0.00484
-4.62215,1.49327,-1.27924,-1.65869,-0.20739,1.64760,0.00484
-4.62369,1.49269,-1.27954,-1.65793,-0.20784,1.64818,0.00484
-4.62523,1.49211,-1.27984,-1.65719,-0.20828,1.64875,0.00483
-4.62677,1.49155,-1.28013,-1.65645,-0.20871,1.64932,0.00483
-4.62832,1.49099,-1.28042,-1.65573,-0.20914,1.64987,0.00483
-4.62986,1.49045,-1.28071,-1.65502,-0.20956,1.65042,0.00483
-4.63140,1.48991,-1.28100,-1.65433,-0.20997,1.65096,0.00482
-4.63294,1.48937,-1.28127,-1.65364,-0.21037,1.65149,0.00482
-4.63448,1.48885,-1.28155,-1.65296,-0.21077,1.65201,0.00482
-4.63603,1.48833,-1.28182,-1.65230,-0.21116,1.65253,0.00481
-4.63757,1.48783,-1.28209,-1.65164,-0.21155,1.65304,0.00481
-4.63911,1.48733,-1.28236,-1.65100,-0.21192,1.65354,0.00481
-4.64065,1.48683,-1.28262,-1.65036,-0.21229,1.65403,0.00480
-4.64220,1.48635,-1.28288,-1.64974,-0.21266,1.65451,0.00480
-4.64374,1.48587,-1.28313,-1.64913,-0.21301,1.65499,0.00480
-4.64528,1.48540,-1.28338,-1.64852,-0.21337,1.65546,0.00480
-4.64682,1.48493,-1.28363,-1.64793,-0.21371,1.65593,0.00479
-4.64837,1.48448,-1.28388,-1.64734,-0.21405,1.65639,0.00479
-4.64991,1.48403,-1.28412,-1.64677,-0.21438,1.65684,0.00479
-4.65145,1.48358,-1.28435,-1.64620,-0.21471,1.65728,0.00479
-4.65299,1.48315,-1.28459,-1.64564,-0.21503,1.65772,0.00478
-4.65453,1.48272,-1.28482,-1.64509,-0.21535,1.65815,0.00478
-4.65608,1.48229,-1.28505,-1.64455,-0.21566,1.65857,0.00478
-4.65762,1.48188,-1.28527,-1.64402,-0.21596,1.65899,0.00478
-4.65916,1.48147,-1.28550,-1.64350,-0.21626,1.65941,0.00477
-4.66070,1.48106,-1.28572,-1.64298,-0.21656,1.65981,0.00477
-4.66225,1.48066,-1.28593,-1.64248,-0.21685,1.66021,0.00477
-4.66379,1.48027,-1.28615,-1.64198,-0.21713,1.66061,0.00477
-4.66533,1.47988,-1.28636,-1.64149,-0.21741,1.66100,0.00476
-4.66687,1.47950,-1.28656,-1.64101,-0.21769,1.66138,0.00476
-4.66841,1.47913,-1.28677,-1.64053,-0.21796,1.66176,0.00476
-4.66996,1.47907,-1.28680,-1.64046,-0.21799,1.66181,0.00476
-4.67150,1.47856,-1.28707,-1.63981,-0.21837,1.66233,0.00476
-4.67304,1.47805,-1.28735,-1.63916,-0.21874,1.66284,0.00475
-4.67458,1.47754,-1.28762,-1.63852,-0.21911,1.66334,0.00475
-4.67613,1.47705,-1.28788,-1.63789,-0.21947,1.66383,0.00475
-4.67767,1.47656,-1.28815,-1.63728,-0.21982,1.66432,0.00474
-4.67921,1.47608,-1.28841,-1.63667,-0.22017,1.66480,0.00474
-4.68075,1.47561,-1.28866,-1.63607,-0.22051,1.66527,0.00474
-4.68229,1.47515,-1.28891,-1.63548,-0.22084,1.66574,0.00474
-4.68384,1.47469,-1.28916,-1.63490,-0.22117,1.66620,0.00473
-4.68538,1.47424,-1.28941,-1.63433,-0.22149,1.66665,0.00473
-4.68692,1.47379,-1.28965,-1.63377,-0.22181,1.66710,0.00473
-4.68846,1.47335,-1.28989,-1.63322,-0.22212,1.66754,0.00473
-4.69001,1.47292,-1.29012,-1.63268,-0.22243,1.66797,0.00472
-4.69155,1.47250,-1.29036,-1.63214,-0.22273,1.66840,0.00472
-4.69309,1.47208,-1.29059,-1.63162,-0.22303,1.66882,0.00472
-4.69463,1.47167,-1.29081,-1.63110,-0.22332,1.66923,0.00472
-4.69618,1.47126,-1.29103,-1.63059,-0.22360,1.66964,0.00471
-4.69772,1.47086,-1.29125,-1.63009,-0.22388,1.67004,0.00471
-4.69926,1.47047,-1.29147,-1.62959,-0.22416,1.67044,0.00471
-4.70080,1.47008,-1.29168,-1.62911,-0.22443,1.67083,0.00471
-4.70234,1.46970,-1.29190,-1.62863,-0.22470,1.67121,0.00470
-4.70389,1.46947,-1.29202,-1.62836,-0.22484,1.67144,0.00470
-4.70543,1.46870,-1.29240,-1.62760,-0.22522,1.67221,0.00470
-4.70697,1.46794,-1.29277,-1.62685,-0.22559,1.67297,0.00470
-4.70851,1.46719,-1.29314,-1.62611,-0.22596,1.67371,0.00469
-4.71006,1.46645,-1.29351,-1.62538,-0.22632,1.67445,0.00469
-4.71160,1.46572,-1.29387,-1.62466,-0.22667,1.67517,0.00468
-4.71314,1.46501,-1.29422,-1.62396,-0.22702,1.67588,0.00468
-4.71468,1.46431,-1.29457,-1.62326,-0.22736,1.67658,0.00468
-4.71622,1.46361,-1.29492,-1.62258,-0.22769,1.67728,0.00467
-4.71777,1.46293,-1.29526,-1.62191,-0.22802,1.67796,0.00467
-4.71931,1.46226,-1.29560,-1.62124,-0.22835,1.67863,0.00467
-4.72085,1.46160,-1.29593,-1.62059,-0.22867,1.67929,0.00466
-4.72239,1.46095,-1.29626,-1.61995,-0.22898,1.67994,0.00466
-4.72394,1.46031,-1.29658,-1.61931,-0.22928,1.68058,0.00466
-4.72548,1.45967,-1.29690,-1.61869,-0.22959,1.68121,0.00465
-4.72702,1.45905,-1.29721,-1.61808,-0.22988,1.68183,0.00465
-4.72856,1.45844,-1.29753,-1.61747,-0.23017,1.68244,0.00465
-4.73010,1.45784,-1.29783,-1.61688,-0.23046,1.68305,0.00464
-4.73165,1.45724,-1.29813,-1.61629,-0.23074,1.68364,0.00464
-4.73319,1.45666,-1.29843,-1.61572,-0.23102,1.68423,0.00464
-4.73473,1.45608,-1.29872,-1.61515,-0.23129,1.68480,0.00463
-4.73627,1.45552,-1.29901,-1.61459,-0.23156,1.68537,0.00463
-4.73782,1.45496,-1.29930,-1.61404,-0.23182,1.68593,0.00463
-4.73936,1.45441,-1.29958,-1.61350,-0.23208,1.68648,0.00462
-4.74090,1.45387,-1.29986,-1.61297,-0.23233,1.68702,0.00462
-4.74244,1.45333,-1.30013,-1.61245,-0.23258,1.68756,0.00462
-4.74399,1.45281,-1.30040,-1.61193,-0.23282,1.68808,0.00462
-4.74553,1.45229,-1.30067,-1.61142,-0.23306,1.68860,0.00461
-4.74707,1.45178,-1.30093,-1.61092,-0.23330,1.68911,0.00461
-4.74861,1.45128,-1.30119,-1.61043,-0.23353,1.68962,0.00461
-4.75015,1.45079,-1.30145,-1.60995,-0.23376,1.69011,0.00461
-4.75170,1.45030,-1.30170,-1.60947,-0.23399,1.69060,0.00460
-4.75324,1.44982,-1.30195,-1.60900,-0.23421,1.69108,0.00460
-4.75478,1.44935,-1.30219,-1.60854,-0.23442,1.69155,0.00460
-4.75632,1.44889,-1.30243,-1.60808,-0.23464,1.69202,0.00460
-4.75787,1.44843,-1.30267,-1.60764,-0.23484,1.69248,0.00459
-4.75941,1.44798,-1.30291,-1.60719,-0.23505,1.69293,0.00459
-4.76095,1.44754,-1.30314,-1.60676,-0.23525,1.69338,0.00459
-4.76249,1.44738,-1.30322,-1.60661,-0.23532,1.69353,0.00459
-4.76403,1.44673,-1.30355,-1.60600,-0.23560,1.69419,0.00458
-4.76558,1.44608,-1.30388,-1.60539,-0.23588,1.69483,0.00458
-4.76712,1.44544,-1.30420,-1.60479,-0.23615,1.69547,0.00458
-4.76866,1.44482,-1.30452,-1.60420,-0.23642,1.69609,0.00457
-4.77020,1.44420,-1.30483,-1.60362,-0.23668,1.69671,0.00457
-4.77175,1.44360,-1.30514,-1.60305,-0.23694,1.69732,0.00457
-4.77329,1.44300,-1.30544,-1.60249,-0.23720,1.69792,0.00456
-4.77483,1.44241,-1.30574,-1.60194,-0.23745,1.69850,0.00456
-4.77637,1.44183,-1.30604,-1.60140,-0.23769,1.69908,0.00456
-4.77791,1.44126,-1.30633,-1.60086,-0.23793,1.69966,0.00456
-4.77946,1.44070,-1.30662,-1.60033,-0.23817,1.70022,0.00455
-4.78100,1.44015,-1.30691,-1.59981,-0.23841,1.70077,0.00455
-4.78254,1.43960,-1.30719,-1.59930,-0.23863,1.70132,0.00455
-4.78408,1.43907,-1.30746,-1.59880,-0.23886,1.70186,0.00454
-4.78563,1.43854,-1.30774,-1.59830,-0.23908,1.70239,0.00454
-4.78717,1.43802,-1.30801,-1.59782,-0.23930,1.70291,0.00454
-4.78871,1.43751,-1.30827,-1.59734,-0.23951,1.70342,0.00454
-4.79025,1.43700,-1.30853,-1.59686,-0.23972,1.70393,0.00453
-4.79180,1.43651,-1.30879,-1.59640,-0.23993,1.70443,0.00453
-4.79334,1.43602,-1.30904,-1.59594,-0.24013,1.70492,0.00453
-4.79488,1.43554,-1.30929,-1.59549,-0.24033,1.70540,0.00453
-4.79642,1.43506,-1.30954,-1.59504,-0.24053,1.70588,0.00452
-4.79796,1.43460,-1.30978,-1.59461,-0.24072,1.70634,0.00452
-4.79951,1.43414,-1.31002,-1.59418,-0.24091,1.70681,0.00452
-4.80105,1.43368,-1.31026,-1.59375,-0.24110,1.70726,0.00452
-4.80259,1.43361,-1.31030,-1.59369,-0.24112,1.70734,0.00452
-4.80413,1.43287,-1.31067,-1.59306,-0.24138,1.70807,0.00451
-4.80568,1.43214,-1.31103,-1.59244,-0.24163,1.70880,0.00451
-4.80722,1.43143,-1.31139,-1.59183,-0.24188,1.70951,0.00450
-4.80876,1.43072,-1.31174,-1.59123,-0.24213,1.71022,0.00450
-4.81030,1.43003,-1.31209,-1.59064,-0.24237,1.71091,0.00450
-4.81184,1.42935,-1.31243,-1.59006,-0.24261,1.71159,0.00449
-4.81339,1.42868,-1.31277,-1.58949,-0.24284,1.71226,0.00449
-4.81493,1.42801,-1.31310,-1.58892,-0.24307,1.71292,0.00449
-4.81647,1.42736,-1.31343,-1.58837,-0.24329,1.71358,0.00448
-4.81801,1.42672,-1.31376,-1.58782,-0.24351,1.71422,0.00448
-4.81956,1.42609,-1.31407,-1.58728,-0.24373,1.71485,0.00448
-4.82110,1.42547,-1.31439,-1.58675,-0.24394,1.71547,0.00448
-4.82264,1.42486,-1.31470,-1.58623,-0.24415,1.71608,0.00447
-4.82418,1.42425,-1.31501,-1.58571,-0.24436,1.71669,0.00447
-4.82572,1.42366,-1.31531,-1.58520,-0.24456,1.71728,0.00447
-4.82727,1.42308,-1.31561,-1.58471,-0.24476,1.71787,0.00446
-4.82881,1.42250,-1.31590,-1.58421,-0.24496,1.71844,0.00446
-4.83035,1.42193,-1.31619,-1.58373,-0.24515,1.71901,0.00446
-4.83189,1.42138,-1.31648,-1.58326,-0.24534,1.71957,0.00445
-4.83344,1.42083,-1.31676,-1.58279,-0.24552,1.72012,0.00445
-4.83498,1.42029,-1.31704,-1.58232,-0.24571,1.72066,0.00445
-4.83652,1.41976,-1.31731,-1.58187,-0.24589,1.72120,0.00445
-4.83806,1.41923,-1.31758,-1.58142,-0.24606,1.72172,0.00444
-4.83961,1.41872,-1.31785,-1.58098,-0.24624,1.72224,0.00444
-4.84115,1.41821,-1.31811,-1.58055,-0.24641,1.72275,0.00444
-4.84269,1.41771,-1.31837,-1.58012,-0.24657,1.72325,0.00444
-4.84423,1.41722,-1.31862,-1.57970,-0.24674,1.72375,0.00443
-4.84577,1.41673,-1.31887,-1.57929,-0.24690,1.72423,0.00443
-4.84732,1.41626,-1.31912,-1.57888,-0.24706,1.72471,0.00443
-4.84886,1.41582,-1.31935,-1.57851,-0.24721,1.72515,0.00443
-4.85040,1.41524,-1.31965,-1.57801,-0.24740,1.72574,0.00442
-4.85194,1.41466,-1.31994,-1.57752,-0.24759,1.72631,0.00442
-4.85349,1.41410,-1.32023,-1.57704,-0.24778,1.72688,0.00442
-4.85503,1.41354,-1.32052,-1.57656,-0.24797,1.72744,0.00441
-4.85657,1.41299,-1.32080,-1.57610,-0.24815,1.72799,0.00441
-4.85811,1.41245,-1.32108,-1.57564,-0.24833,1.72853,0.00441
-4.85965,1.41192,-1.32136,-1.57518,-0.24850,1.72906,0.00441
-4.86120,1.41139,-1.32163,-1.57474,-0.24868,1.72959,0.00440
-4.86274,1.41088,-1.32190,-1.57430,-0.24885,1.73011,0.00440
-4.86428,1.41037,-1.32216,-1.57387,-0.24901,1.73062,0.00440
-4.86582,1.40987,-1.32242,-1.57344,-0.24918,1.73112,0.00440
-4.86737,1.40938,-1.32268,-1.57302,-0.24934,1.73161,0.00439
-4.86891,1.40890,-1.32293,-1.57261,-0.24950,1.73210,0.00439
-4.87045,1.40842,-1.32318,-1.57220,-0.24966,1.73258,0.00439
-4.87199,1.40799,-1.32341,-1.57183,-0.24980,1.73301,0.00439
-4.87353,1.40746,-1.32369,-1.57135,-0.25000,1.73355,0.00438
-4.87508,1.40693,-1.32397,-1.57087,-0.25019,1.73407,0.00438
-4.87662,1.40641,-1.32424,-1.57040,-0.25039,1.73459,0.00438
-4.87816,1.40590,-1.32451,-1.56994,-0.25057,1.73511,0.00438
-4.87970,1.40540,-1.32478,-1.56949,-0.25076,1.73561,0.00437
-4.88125,1.40491,-1.32504,-1.56904,-0.25094,1.73611,0.00437
-4.88279,1.40442,-1.32530,-1.56860,-0.25112,1.73659,0.00437
-4.88433,1.40394,-1.32556,-1.56817,-0.25130,1.73708,0.00437
-4.88587,1.40347,-1.32581,-1.56774,-0.25147,1.73755,0.00436
-4.88742,1.40300,-1.32606,-1.56732,-0.25164,1.73802,0.00436
-4.88896,1.40264,-1.32626,-1.56699,-0.25177,1.73839,0.00436
-4.89050,1.40216,-1.32651,-1.56657,-0.25194,1.73887,0.00436
-4.89204,1.40169,-1.32676,-1.56617,-0.25210,1.73934,0.00436
-4.89358,1.40149,-1.32686,-1.56599,-0.25216,1.73954,0.00435
-4.89513,1.40089,-1.32718,-1.56548,-0.25236,1.74014,0.00435
-4.89667,1.40030,-1.32749,-1.56498,-0.25255,1.74073,0.00435
-4.89821,1.39971,-1.32779,-1.56449,-0.25273,1.74132,0.00435
-4.89975,1.39914,-1.32809,-1.56400,-0.25292,1.74189,0.00434
-4.90130,1.39857,-1.32839,-1.56352,-0.25310,1.74246,0.00434
-4.90284,1.39802,-1.32868,-1.56305,-0.25327,1.74302,0.00434
-4.90438,1.39747,-1.32897,-1.56259,-0.25345,1.74357,0.00433
-4.90592,1.39693,-1.32925,-1.56213,-0.25362,1.74411,0.00433
-4.90746,1.39640,-1.32953,-1.56168,-0.25379,1.74464,0.00433
-4.90901,1.39587,-1.32981,-1.56124,-0.25396,1.74517,0.00433
-4.91055,1.39536,-1.33008,-1.56080,-0.25412,1.74568,0.00432
-4.91209,1.39485,-1.33034,-1.56037,-0.25428,1.74619,0.00432
-4.91363,1.39435,-1.33061,-1.55995,-0.25444,1.74669,0.00432
-4.91518,1.39386,-1.33087,-1.55953,-0.25459,1.74719,0.00432
-4.91672,1.39338,-1.33113,-1.55912,-0.25475,1.74767,0.00431
-4.91826,1.39290,-1.33138,-1.55872,-0.25489,1.74815,0.00431
-4.91980,1.39257,-1.33155,-1.55844,-0.25500,1.74848,0.00431
-4.92134,1.39208,-1.33181,-1.55801,-0.25516,1.74897,0.00431
-4.92289,1.39160,-1.33207,-1.55760,-0.25532,1.74945,0.00431
-4.92443,1.39113,-1.33232,-1.55719,-0.25548,1.74993,0.00430
-4.92597,1.39074,-1.33253,-1.55685,-0.25560,1.75032,0.00430
-4.92751,1.39012,-1.33286,-1.55631,-0.25581,1.75095,0.00430
-4.92906,1.38950,-1.33319,-1.55578,-0.25601,1.75156,0.00430
-4.93060,1.38890,-1.33351,-1.55525,-0.25621,1.75217,0.00429
-4.93214,1.38830,-1.33383,-1.55474,-0.25641,1.75277,0.00429
-4.93368,1.38771,-1.33414,-1.55423,-0.25660,1.75335,0.00429
-4.93523,1.38713,-1.33445,-1.55373,-0.25679,1.75393,0.00428
-4.93677,1.38656,-1.33475,-1.55324,-0.25697,1.75450,0.00428
-4.93831,1.38600,-1.33505,-1.55276,-0.25715,1.75507,0.00428
-4.93985,1.38545,-1.33535,-1.55228,-0.25733,1.75562,0.00428
-4.94139,1.38491,-1.33564,-1.55181,-0.25751,1.75616,0.00427
-4.94294,1.38437,-1.33593,-1.55135,-0.25768,1.75670,0.00427
-4.94448,1.38385,-1.33621,-1.55090,-0.25785,1.75723,0.00427
-4.94602,1.38333,-1.33649,-1.55045,-0.25802,1.75775,0.00427
-4.94756,1.38282,-1.33676,-1.55001,-0.25819,1.75826,0.00426
-4.94911,1.38232,-1.33703,-1.54957,-0.25835,1.75876,0.00426
-4.95065,1.38182,-1.33730,-1.54914,-0.25851,1.75926,0.00426
-4.95219,1.38134,-1.33756,-1.54872,-0.25866,1.75975,0.00426
-4.95373,1.38086,-1.33782,-1.54831,-0.25882,1.76023,0.00425
-4.95527,1.38039,-1.33808,-1.54790,-0.25897,1.76070,0.00425
-4.95682,1.38006,-1.33825,-1.54762,-0.25908,1.76103,0.00425
-4.95836,1.37958,-1.33852,-1.54719,-0.25924,1.76152,0.00425
-4.95990,1.37910,-1.33878,-1.54677,-0.25940,1.76199,0.00425
-4.96144,1.37864,-1.33903,-1.54635,-0.25956,1.76246,0.00424
-4.96299,1.37826,-1.33924,-1.54602,-0.25968,1.76284,0.00424
-4.96453,1.37776,-1.33951,-1.54558,-0.25985,1.76334,0.00424
-4.96607,1.37727,-1.33978,-1.54515,-0.26001,1.76384,0.00424
-4.96761,1.37678,-1.34004,-1.54472,-0.26017,1.76432,0.00423
-4.96915,1.37630,-1.34030,-1.54430,-0.26033,1.76481,0.00423
-4.97070,1.37583,-1.34056,-1.54389,-0.26048,1.76528,0.00423
-4.97224,1.37537,-1.34082,-1.54348,-0.26064,1.76575,0.00423
-4.97378,1.37489,-1.34108,-1.54307,-0.26078,1.76623,0.00422
-4.97532,1.37441,-1.34133,-1.54267,-0.26093,1.76670,0.00422
-4.97687,1.37418,-1.34146,-1.54247,-0.26100,1.76694,0.00422
-4.97841,1.37369,-1.34172,-1.54207,-0.26114,1.76743,0.00422
-4.97995,1.37321,-1.34198,-1.54167,-0.26127,1.76791,0.00422
-4.98149,1.37302,-1.34208,-1.54152,-0.26133,1.76810,0.00422
-4.98304,1.37256,-1.34234,-1.54111,-0.26148,1.76857,0.00421
-4.98458,1.37237,-1.34244,-1.54094,-0.26154,1.76876,0.00421
-4.98612,1.37189,-1.34270,-1.54054,-0.26168,1.76924,0.00421
-4.98766,1.37142,-1.34296,-1.54014,-0.26182,1.76971,0.00421
-4.98920,1.37123,-1.34306,-1.53998,-0.26188,1.76990,0.00421
-4.99075,1.37074,-1.34332,-1.53958,-0.26202,1.77039,0.00420
-4.99229,1.37026,-1.34358,-1.53919,-0.26215,1.77087,0.00420
-4.99383,1.37002,-1.34371,-1.53899,-0.26222,1.77111,0.00420
-4.99537,1.36956,-1.34397,-1.53858,-0.26237,1.77158,0.00420
-4.99692,1.36937,-1.34407,-1.53842,-0.26242,1.77177,0.00420
-4.99846,1.36889,-1.34433,-1.53801,-0.26257,1.77225,0.00420
-5.00000,1.36842,-1.34459,-1.53761,-0.26271,1.77273,0.00419
+0.00000,1.34442,-1.35484,-1.52422,-0.26587,1.79722,0.00407
+0.00249,1.34420,-1.35504,-1.52360,-0.26630,1.79744,0.00407
+0.00499,1.34398,-1.35523,-1.52298,-0.26671,1.79766,0.00406
+0.00748,1.34377,-1.35542,-1.52237,-0.26712,1.79788,0.00406
+0.00997,1.34355,-1.35561,-1.52178,-0.26752,1.79809,0.00406
+0.01247,1.34335,-1.35580,-1.52119,-0.26791,1.79830,0.00406
+0.01496,1.34314,-1.35599,-1.52061,-0.26830,1.79850,0.00406
+0.01745,1.34294,-1.35617,-1.52004,-0.26868,1.79871,0.00406
+0.01995,1.34274,-1.35635,-1.51948,-0.26906,1.79891,0.00406
+0.02244,1.34253,-1.35653,-1.51891,-0.26943,1.79911,0.00406
+0.02493,1.34224,-1.35677,-1.51822,-0.26988,1.79940,0.00406
+0.02742,1.34196,-1.35701,-1.51754,-0.27033,1.79968,0.00406
+0.02992,1.34169,-1.35724,-1.51686,-0.27076,1.79995,0.00406
+0.03241,1.34141,-1.35747,-1.51620,-0.27119,1.80022,0.00406
+0.03490,1.34114,-1.35769,-1.51555,-0.27161,1.80049,0.00405
+0.03740,1.34088,-1.35791,-1.51491,-0.27203,1.80076,0.00405
+0.03989,1.34062,-1.35813,-1.51428,-0.27243,1.80102,0.00405
+0.04238,1.34036,-1.35835,-1.51365,-0.27283,1.80127,0.00405
+0.04488,1.34011,-1.35856,-1.51304,-0.27322,1.80152,0.00405
+0.04737,1.33986,-1.35877,-1.51244,-0.27361,1.80177,0.00405
+0.04986,1.33962,-1.35898,-1.51185,-0.27399,1.80202,0.00405
+0.05236,1.33938,-1.35919,-1.51127,-0.27436,1.80226,0.00405
+0.05485,1.33914,-1.35939,-1.51069,-0.27473,1.80250,0.00404
+0.05734,1.33890,-1.35959,-1.51013,-0.27509,1.80273,0.00404
+0.05984,1.33867,-1.35978,-1.50958,-0.27545,1.80296,0.00404
+0.06233,1.33855,-1.35989,-1.50928,-0.27563,1.80309,0.00404
+0.06482,1.33821,-1.36016,-1.50856,-0.27608,1.80343,0.00404
+0.06731,1.33787,-1.36042,-1.50785,-0.27652,1.80376,0.00404
+0.06981,1.33755,-1.36069,-1.50715,-0.27695,1.80409,0.00404
+0.07230,1.33722,-1.36095,-1.50646,-0.27738,1.80441,0.00404
+0.07479,1.33690,-1.36120,-1.50578,-0.27780,1.80473,0.00403
+0.07729,1.33659,-1.36145,-1.50511,-0.27821,1.80504,0.00403
+0.07978,1.33628,-1.36170,-1.50445,-0.27861,1.80535,0.00403
+0.08227,1.33598,-1.36195,-1.50381,-0.27901,1.80566,0.00403
+0.08477,1.33568,-1.36219,-1.50317,-0.27940,1.80596,0.00403
+0.08726,1.33538,-1.36243,-1.50254,-0.27979,1.80625,0.00403
+0.08975,1.33509,-1.36266,-1.50193,-0.28017,1.80654,0.00402
+0.09225,1.33480,-1.36290,-1.50132,-0.28054,1.80683,0.00402
+0.09474,1.33452,-1.36312,-1.50072,-0.28090,1.80711,0.00402
+0.09723,1.33424,-1.36335,-1.50013,-0.28126,1.80739,0.00402
+0.09973,1.33397,-1.36357,-1.49955,-0.28162,1.80766,0.00402
+0.10222,1.33370,-1.36379,-1.49899,-0.28196,1.80793,0.00402
+0.10471,1.33344,-1.36401,-1.49842,-0.28231,1.80820,0.00401
+0.10721,1.33317,-1.36422,-1.49787,-0.28264,1.80846,0.00401
+0.10970,1.33309,-1.36429,-1.49769,-0.28275,1.80855,0.00401
+0.11219,1.33272,-1.36458,-1.49697,-0.28318,1.80892,0.00401
+0.11468,1.33235,-1.36486,-1.49626,-0.28361,1.80928,0.00401
+0.11718,1.33199,-1.36514,-1.49556,-0.28402,1.80964,0.00401
+0.11967,1.33164,-1.36542,-1.49487,-0.28443,1.80999,0.00401
+0.12216,1.33129,-1.36569,-1.49419,-0.28484,1.81034,0.00400
+0.12466,1.33095,-1.36596,-1.49352,-0.28523,1.81068,0.00400
+0.12715,1.33062,-1.36622,-1.49286,-0.28562,1.81102,0.00400
+0.12964,1.33028,-1.36648,-1.49222,-0.28600,1.81135,0.00400
+0.13214,1.32996,-1.36674,-1.49158,-0.28638,1.81168,0.00400
+0.13463,1.32964,-1.36700,-1.49095,-0.28675,1.81200,0.00399
+0.13712,1.32932,-1.36725,-1.49034,-0.28711,1.81232,0.00399
+0.13962,1.32901,-1.36749,-1.48973,-0.28747,1.81263,0.00399
+0.14211,1.32870,-1.36773,-1.48913,-0.28782,1.81294,0.00399
+0.14460,1.32840,-1.36797,-1.48855,-0.28817,1.81324,0.00399
+0.14710,1.32810,-1.36821,-1.48797,-0.28851,1.81354,0.00398
+0.14959,1.32781,-1.36844,-1.48740,-0.28884,1.81383,0.00398
+0.15208,1.32752,-1.36867,-1.48684,-0.28917,1.81412,0.00398
+0.15457,1.32724,-1.36890,-1.48629,-0.28950,1.81441,0.00398
+0.15707,1.32703,-1.36906,-1.48589,-0.28973,1.81461,0.00398
+0.15956,1.32667,-1.36934,-1.48522,-0.29011,1.81498,0.00398
+0.16205,1.32631,-1.36962,-1.48456,-0.29049,1.81534,0.00397
+0.16455,1.32595,-1.36990,-1.48391,-0.29087,1.81570,0.00397
+0.16704,1.32560,-1.37017,-1.48327,-0.29123,1.81605,0.00397
+0.16953,1.32525,-1.37044,-1.48264,-0.29160,1.81639,0.00397
+0.17203,1.32491,-1.37070,-1.48202,-0.29195,1.81673,0.00397
+0.17452,1.32458,-1.37096,-1.48141,-0.29230,1.81707,0.00396
+0.17701,1.32425,-1.37121,-1.48080,-0.29264,1.81740,0.00396
+0.17951,1.32393,-1.37147,-1.48021,-0.29298,1.81772,0.00396
+0.18200,1.32361,-1.37171,-1.47963,-0.29331,1.81804,0.00396
+0.18449,1.32329,-1.37196,-1.47906,-0.29364,1.81836,0.00396
+0.18699,1.32298,-1.37220,-1.47849,-0.29396,1.81867,0.00395
+0.18948,1.32268,-1.37244,-1.47794,-0.29428,1.81898,0.00395
+0.19197,1.32238,-1.37267,-1.47739,-0.29459,1.81928,0.00395
+0.19447,1.32222,-1.37280,-1.47710,-0.29475,1.81944,0.00395
+0.19696,1.32182,-1.37311,-1.47636,-0.29518,1.81984,0.00395
+0.19945,1.32142,-1.37342,-1.47563,-0.29559,1.82024,0.00394
+0.20194,1.32103,-1.37373,-1.47492,-0.29600,1.82064,0.00394
+0.20444,1.32064,-1.37403,-1.47421,-0.29640,1.82102,0.00394
+0.20693,1.32026,-1.37432,-1.47352,-0.29679,1.82140,0.00394
+0.20942,1.31988,-1.37462,-1.47284,-0.29718,1.82178,0.00394
+0.21192,1.31952,-1.37490,-1.47216,-0.29756,1.82215,0.00393
+0.21441,1.31915,-1.37519,-1.47150,-0.29794,1.82251,0.00393
+0.21690,1.31880,-1.37547,-1.47085,-0.29831,1.82287,0.00393
+0.21940,1.31844,-1.37574,-1.47021,-0.29867,1.82322,0.00393
+0.22189,1.31810,-1.37602,-1.46958,-0.29903,1.82357,0.00392
+0.22438,1.31776,-1.37628,-1.46896,-0.29938,1.82391,0.00392
+0.22688,1.31742,-1.37655,-1.46834,-0.29973,1.82425,0.00392
+0.22937,1.31709,-1.37681,-1.46774,-0.30007,1.82458,0.00392
+0.23186,1.31676,-1.37707,-1.46715,-0.30040,1.82491,0.00392
+0.23436,1.31644,-1.37732,-1.46657,-0.30073,1.82523,0.00391
+0.23685,1.31613,-1.37757,-1.46599,-0.30105,1.82555,0.00391
+0.23934,1.31582,-1.37782,-1.46543,-0.30137,1.82586,0.00391
+0.24183,1.31551,-1.37806,-1.46487,-0.30168,1.82617,0.00391
+0.24433,1.31521,-1.37830,-1.46432,-0.30199,1.82647,0.00391
+0.24682,1.31509,-1.37840,-1.46409,-0.30212,1.82660,0.00390
+0.24931,1.31473,-1.37869,-1.46341,-0.30251,1.82696,0.00390
+0.25181,1.31437,-1.37897,-1.46273,-0.30290,1.82732,0.00390
+0.25430,1.31402,-1.37926,-1.46207,-0.30328,1.82767,0.00390
+0.25679,1.31368,-1.37953,-1.46142,-0.30365,1.82802,0.00390
+0.25929,1.31334,-1.37981,-1.46077,-0.30402,1.82836,0.00389
+0.26178,1.31300,-1.38008,-1.46014,-0.30438,1.82869,0.00389
+0.26427,1.31268,-1.38034,-1.45952,-0.30473,1.82902,0.00389
+0.26677,1.31235,-1.38061,-1.45891,-0.30508,1.82935,0.00389
+0.26926,1.31204,-1.38086,-1.45830,-0.30543,1.82967,0.00388
+0.27175,1.31172,-1.38112,-1.45771,-0.30576,1.82999,0.00388
+0.27425,1.31141,-1.38137,-1.45712,-0.30610,1.83030,0.00388
+0.27674,1.31111,-1.38162,-1.45655,-0.30642,1.83060,0.00388
+0.27923,1.31081,-1.38186,-1.45598,-0.30674,1.83090,0.00388
+0.28173,1.31052,-1.38210,-1.45543,-0.30706,1.83120,0.00387
+0.28422,1.31024,-1.38233,-1.45491,-0.30735,1.83148,0.00387
+0.28671,1.30985,-1.38265,-1.45416,-0.30778,1.83187,0.00387
+0.28920,1.30946,-1.38296,-1.45342,-0.30820,1.83227,0.00387
+0.29170,1.30907,-1.38327,-1.45270,-0.30861,1.83265,0.00386
+0.29419,1.30869,-1.38358,-1.45198,-0.30901,1.83303,0.00386
+0.29668,1.30832,-1.38388,-1.45128,-0.30941,1.83341,0.00386
+0.29918,1.30795,-1.38418,-1.45059,-0.30980,1.83378,0.00386
+0.30167,1.30759,-1.38448,-1.44991,-0.31019,1.83414,0.00386
+0.30416,1.30724,-1.38477,-1.44924,-0.31057,1.83450,0.00385
+0.30666,1.30689,-1.38505,-1.44858,-0.31094,1.83485,0.00385
+0.30915,1.30654,-1.38533,-1.44793,-0.31131,1.83520,0.00385
+0.31164,1.30620,-1.38561,-1.44729,-0.31167,1.83554,0.00385
+0.31414,1.30587,-1.38589,-1.44666,-0.31202,1.83587,0.00384
+0.31663,1.30554,-1.38616,-1.44604,-0.31237,1.83620,0.00384
+0.31912,1.30522,-1.38642,-1.44543,-0.31271,1.83653,0.00384
+0.32162,1.30490,-1.38668,-1.44483,-0.31305,1.83685,0.00384
+0.32411,1.30458,-1.38694,-1.44423,-0.31338,1.83717,0.00384
+0.32660,1.30428,-1.38720,-1.44365,-0.31371,1.83748,0.00383
+0.32909,1.30397,-1.38745,-1.44308,-0.31403,1.83779,0.00383
+0.33159,1.30367,-1.38770,-1.44252,-0.31435,1.83809,0.00383
+0.33408,1.30338,-1.38794,-1.44196,-0.31466,1.83839,0.00383
+0.33657,1.30325,-1.38805,-1.44171,-0.31480,1.83852,0.00383
+0.33907,1.30285,-1.38838,-1.44090,-0.31527,1.83891,0.00382
+0.34156,1.30246,-1.38872,-1.44009,-0.31574,1.83931,0.00382
+0.34405,1.30208,-1.38905,-1.43930,-0.31620,1.83969,0.00382
+0.34655,1.30170,-1.38937,-1.43853,-0.31665,1.84008,0.00382
+0.34904,1.30133,-1.38969,-1.43776,-0.31709,1.84045,0.00381
+0.35153,1.30096,-1.39001,-1.43701,-0.31753,1.84082,0.00381
+0.35403,1.30060,-1.39032,-1.43626,-0.31796,1.84118,0.00381
+0.35652,1.30024,-1.39062,-1.43553,-0.31838,1.84154,0.00381
+0.35901,1.29989,-1.39093,-1.43481,-0.31879,1.84190,0.00380
+0.36151,1.29955,-1.39122,-1.43411,-0.31920,1.84224,0.00380
+0.36400,1.29921,-1.39152,-1.43341,-0.31960,1.84259,0.00380
+0.36649,1.29887,-1.39181,-1.43272,-0.32000,1.84292,0.00380
+0.36899,1.29854,-1.39209,-1.43205,-0.32039,1.84326,0.00379
+0.37148,1.29822,-1.39237,-1.43138,-0.32077,1.84358,0.00379
+0.37397,1.29790,-1.39265,-1.43073,-0.32115,1.84390,0.00379
+0.37646,1.29759,-1.39292,-1.43008,-0.32152,1.84422,0.00379
+0.37896,1.29728,-1.39319,-1.42945,-0.32188,1.84453,0.00379
+0.38145,1.29697,-1.39346,-1.42882,-0.32224,1.84484,0.00378
+0.38394,1.29667,-1.39372,-1.42821,-0.32259,1.84514,0.00378
+0.38644,1.29638,-1.39398,-1.42761,-0.32294,1.84544,0.00378
+0.38893,1.29609,-1.39423,-1.42701,-0.32328,1.84574,0.00378
+0.39142,1.29580,-1.39448,-1.42642,-0.32361,1.84603,0.00377
+0.39392,1.29552,-1.39473,-1.42585,-0.32394,1.84631,0.00377
+0.39641,1.29524,-1.39497,-1.42528,-0.32427,1.84659,0.00377
+0.39890,1.29507,-1.39513,-1.42492,-0.32447,1.84677,0.00377
+0.40140,1.29471,-1.39544,-1.42417,-0.32491,1.84713,0.00377
+0.40389,1.29436,-1.39575,-1.42342,-0.32534,1.84748,0.00376
+0.40638,1.29402,-1.39606,-1.42269,-0.32576,1.84783,0.00376
+0.40888,1.29367,-1.39636,-1.42197,-0.32618,1.84817,0.00376
+0.41137,1.29334,-1.39666,-1.42125,-0.32659,1.84851,0.00376
+0.41386,1.29301,-1.39696,-1.42056,-0.32700,1.84885,0.00375
+0.41636,1.29268,-1.39724,-1.41987,-0.32739,1.84917,0.00375
+0.41885,1.29236,-1.39753,-1.41919,-0.32779,1.84950,0.00375
+0.42134,1.29205,-1.39781,-1.41852,-0.32817,1.84982,0.00375
+0.42383,1.29174,-1.39809,-1.41786,-0.32855,1.85013,0.00375
+0.42633,1.29143,-1.39836,-1.41722,-0.32892,1.85044,0.00374
+0.42882,1.29113,-1.39863,-1.41658,-0.32929,1.85074,0.00374
+0.43131,1.29084,-1.39890,-1.41595,-0.32965,1.85104,0.00374
+0.43381,1.29054,-1.39916,-1.41534,-0.33000,1.85134,0.00374
+0.43630,1.29026,-1.39942,-1.41473,-0.33035,1.85163,0.00373
+0.43879,1.28998,-1.39967,-1.41413,-0.33069,1.85191,0.00373
+0.44129,1.28970,-1.39993,-1.41354,-0.33103,1.85219,0.00373
+0.44378,1.28942,-1.40017,-1.41296,-0.33136,1.85247,0.00373
+0.44627,1.28915,-1.40042,-1.41239,-0.33169,1.85274,0.00372
+0.44877,1.28908,-1.40048,-1.41225,-0.33177,1.85281,0.00372
+0.45126,1.28867,-1.40084,-1.41142,-0.33223,1.85323,0.00372
+0.45375,1.28826,-1.40119,-1.41060,-0.33269,1.85365,0.00372
+0.45625,1.28785,-1.40154,-1.40980,-0.33315,1.85405,0.00372
+0.45874,1.28745,-1.40189,-1.40901,-0.33359,1.85445,0.00371
+0.46123,1.28706,-1.40223,-1.40822,-0.33403,1.85485,0.00371
+0.46372,1.28667,-1.40256,-1.40746,-0.33446,1.85524,0.00371
+0.46622,1.28629,-1.40289,-1.40670,-0.33489,1.85562,0.00371
+0.46871,1.28592,-1.40322,-1.40595,-0.33531,1.85600,0.00370
+0.47120,1.28555,-1.40354,-1.40522,-0.33572,1.85637,0.00370
+0.47370,1.28519,-1.40386,-1.40450,-0.33612,1.85673,0.00370
+0.47619,1.28483,-1.40417,-1.40379,-0.33652,1.85709,0.00370
+0.47868,1.28448,-1.40448,-1.40309,-0.33691,1.85745,0.00369
+0.48118,1.28413,-1.40478,-1.40240,-0.33729,1.85780,0.00369
+0.48367,1.28379,-1.40508,-1.40172,-0.33767,1.85814,0.00369
+0.48616,1.28346,-1.40538,-1.40105,-0.33804,1.85848,0.00369
+0.48866,1.28313,-1.40567,-1.40039,-0.33841,1.85881,0.00368
+0.49115,1.28280,-1.40596,-1.39974,-0.33877,1.85914,0.00368
+0.49364,1.28248,-1.40624,-1.39911,-0.33912,1.85946,0.00368
+0.49614,1.28217,-1.40652,-1.39848,-0.33947,1.85978,0.00368
+0.49863,1.28186,-1.40679,-1.39786,-0.33982,1.86009,0.00367
+0.50112,1.28155,-1.40706,-1.39725,-0.34015,1.86040,0.00367
+0.50362,1.28125,-1.40733,-1.39665,-0.34049,1.86070,0.00367
+0.50611,1.28096,-1.40759,-1.39606,-0.34081,1.86100,0.00367
+0.50860,1.28067,-1.40785,-1.39548,-0.34113,1.86130,0.00366
+0.51109,1.28038,-1.40811,-1.39491,-0.34145,1.86159,0.00366
+0.51359,1.28020,-1.40826,-1.39456,-0.34165,1.86177,0.00366
+0.51608,1.27984,-1.40858,-1.39386,-0.34203,1.86214,0.00366
+0.51857,1.27948,-1.40889,-1.39317,-0.34240,1.86250,0.00365
+0.52107,1.27912,-1.40920,-1.39250,-0.34277,1.86286,0.00365
+0.52356,1.27877,-1.40950,-1.39183,-0.34313,1.86321,0.00365
+0.52605,1.27843,-1.40980,-1.39117,-0.34349,1.86356,0.00365
+0.52855,1.27809,-1.41009,-1.39053,-0.34384,1.86390,0.00364
+0.53104,1.27775,-1.41038,-1.38989,-0.34419,1.86424,0.00364
+0.53353,1.27743,-1.41067,-1.38926,-0.34453,1.86457,0.00364
+0.53603,1.27710,-1.41095,-1.38865,-0.34486,1.86489,0.00364
+0.53852,1.27678,-1.41123,-1.38804,-0.34519,1.86521,0.00363
+0.54101,1.27647,-1.41150,-1.38744,-0.34551,1.86553,0.00363
+0.54351,1.27616,-1.41177,-1.38685,-0.34583,1.86584,0.00363
+0.54600,1.27586,-1.41204,-1.38627,-0.34615,1.86615,0.00363
+0.54849,1.27556,-1.41230,-1.38570,-0.34646,1.86645,0.00363
+0.55098,1.27532,-1.41252,-1.38524,-0.34671,1.86670,0.00362
+0.55348,1.27494,-1.41284,-1.38454,-0.34708,1.86708,0.00362
+0.55597,1.27457,-1.41316,-1.38386,-0.34745,1.86745,0.00362
+0.55846,1.27420,-1.41347,-1.38318,-0.34781,1.86782,0.00362
+0.56096,1.27384,-1.41378,-1.38252,-0.34816,1.86818,0.00361
+0.56345,1.27349,-1.41408,-1.38186,-0.34851,1.86854,0.00361
+0.56594,1.27314,-1.41438,-1.38122,-0.34885,1.86889,0.00361
+0.56844,1.27280,-1.41468,-1.38058,-0.34919,1.86923,0.00361
+0.57093,1.27246,-1.41497,-1.37996,-0.34953,1.86957,0.00360
+0.57342,1.27213,-1.41526,-1.37934,-0.34985,1.86991,0.00360
+0.57592,1.27180,-1.41554,-1.37874,-0.35018,1.87024,0.00360
+0.57841,1.27148,-1.41582,-1.37814,-0.35049,1.87056,0.00360
+0.58090,1.27116,-1.41610,-1.37755,-0.35080,1.87088,0.00359
+0.58340,1.27085,-1.41637,-1.37697,-0.35111,1.87120,0.00359
+0.58589,1.27054,-1.41663,-1.37640,-0.35141,1.87151,0.00359
+0.58838,1.27026,-1.41688,-1.37588,-0.35169,1.87179,0.00359
+0.59088,1.26988,-1.41721,-1.37517,-0.35207,1.87218,0.00358
+0.59337,1.26950,-1.41754,-1.37446,-0.35245,1.87256,0.00358
+0.59586,1.26913,-1.41786,-1.37376,-0.35282,1.87293,0.00358
+0.59835,1.26876,-1.41818,-1.37308,-0.35319,1.87330,0.00358
+0.60085,1.26840,-1.41849,-1.37241,-0.35355,1.87366,0.00357
+0.60334,1.26805,-1.41880,-1.37174,-0.35390,1.87402,0.00357
+0.60583,1.26770,-1.41911,-1.37109,-0.35425,1.87437,0.00357
+0.60833,1.26735,-1.41941,-1.37045,-0.35459,1.87472,0.00357
+0.61082,1.26701,-1.41970,-1.36981,-0.35493,1.87506,0.00356
+0.61331,1.26668,-1.41999,-1.36919,-0.35526,1.87540,0.00356
+0.61581,1.26635,-1.42028,-1.36857,-0.35559,1.87573,0.00356
+0.61830,1.26603,-1.42056,-1.36797,-0.35591,1.87605,0.00356
+0.62079,1.26571,-1.42084,-1.36737,-0.35622,1.87637,0.00355
+0.62329,1.26540,-1.42112,-1.36679,-0.35653,1.87669,0.00355
+0.62578,1.26509,-1.42139,-1.36621,-0.35684,1.87700,0.00355
+0.62827,1.26479,-1.42166,-1.36564,-0.35714,1.87730,0.00355
+0.63077,1.26466,-1.42177,-1.36540,-0.35727,1.87744,0.00354
+0.63326,1.26421,-1.42215,-1.36463,-0.35766,1.87789,0.00354
+0.63575,1.26377,-1.42252,-1.36387,-0.35805,1.87833,0.00354
+0.63824,1.26333,-1.42288,-1.36312,-0.35843,1.87877,0.00354
+0.64074,1.26291,-1.42324,-1.36239,-0.35881,1.87920,0.00353
+0.64323,1.26249,-1.42359,-1.36167,-0.35918,1.87962,0.00353
+0.64572,1.26207,-1.42394,-1.36095,-0.35954,1.88003,0.00353
+0.64822,1.26167,-1.42428,-1.36025,-0.35990,1.88044,0.00353
+0.65071,1.26127,-1.42462,-1.35956,-0.36025,1.88084,0.00352
+0.65320,1.26087,-1.42495,-1.35888,-0.36059,1.88124,0.00352
+0.65570,1.26048,-1.42528,-1.35821,-0.36093,1.88163,0.00352
+0.65819,1.26010,-1.42560,-1.35755,-0.36127,1.88201,0.00351
+0.66068,1.25973,-1.42592,-1.35690,-0.36160,1.88239,0.00351
+0.66318,1.25936,-1.42624,-1.35626,-0.36192,1.88276,0.00351
+0.66567,1.25899,-1.42655,-1.35564,-0.36224,1.88313,0.00351
+0.66816,1.25864,-1.42685,-1.35502,-0.36256,1.88349,0.00350
+0.67066,1.25828,-1.42715,-1.35440,-0.36287,1.88384,0.00350
+0.67315,1.25794,-1.42745,-1.35380,-0.36317,1.88419,0.00350
+0.67564,1.25760,-1.42774,-1.35321,-0.36347,1.88454,0.00350
+0.67814,1.25726,-1.42803,-1.35263,-0.36377,1.88488,0.00349
+0.68063,1.25693,-1.42831,-1.35205,-0.36406,1.88521,0.00349
+0.68312,1.25660,-1.42859,-1.35149,-0.36435,1.88554,0.00349
+0.68561,1.25627,-1.42888,-1.35091,-0.36464,1.88587,0.00349
+0.68811,1.25583,-1.42925,-1.35013,-0.36504,1.88632,0.00348
+0.69060,1.25539,-1.42963,-1.34937,-0.36543,1.88676,0.00348
+0.69309,1.25496,-1.42999,-1.34862,-0.36581,1.88719,0.00348
+0.69559,1.25454,-1.43035,-1.34788,-0.36619,1.88761,0.00348
+0.69808,1.25413,-1.43071,-1.34715,-0.36656,1.88803,0.00347
+0.70057,1.25372,-1.43106,-1.34643,-0.36693,1.88844,0.00347
+0.70307,1.25331,-1.43141,-1.34572,-0.36729,1.88884,0.00347
+0.70556,1.25292,-1.43175,-1.34502,-0.36764,1.88924,0.00346
+0.70805,1.25253,-1.43208,-1.34434,-0.36799,1.88963,0.00346
+0.71055,1.25215,-1.43242,-1.34366,-0.36833,1.89002,0.00346
+0.71304,1.25177,-1.43274,-1.34300,-0.36867,1.89040,0.00346
+0.71553,1.25140,-1.43306,-1.34234,-0.36900,1.89077,0.00345
+0.71803,1.25103,-1.43338,-1.34169,-0.36933,1.89114,0.00345
+0.72052,1.25067,-1.43369,-1.34106,-0.36965,1.89150,0.00345
+0.72301,1.25032,-1.43400,-1.34043,-0.36997,1.89186,0.00345
+0.72550,1.24997,-1.43431,-1.33982,-0.37028,1.89221,0.00344
+0.72800,1.24963,-1.43460,-1.33921,-0.37059,1.89256,0.00344
+0.73049,1.24929,-1.43490,-1.33861,-0.37089,1.89290,0.00344
+0.73298,1.24896,-1.43519,-1.33802,-0.37119,1.89323,0.00344
+0.73548,1.24863,-1.43548,-1.33744,-0.37149,1.89356,0.00343
+0.73797,1.24831,-1.43576,-1.33687,-0.37177,1.89389,0.00343
+0.74046,1.24798,-1.43605,-1.33629,-0.37207,1.89422,0.00343
+0.74296,1.24756,-1.43641,-1.33554,-0.37245,1.89464,0.00343
+0.74545,1.24715,-1.43677,-1.33480,-0.37283,1.89505,0.00342
+0.74794,1.24675,-1.43713,-1.33407,-0.37321,1.89546,0.00342
+0.75044,1.24635,-1.43748,-1.33335,-0.37357,1.89586,0.00342
+0.75293,1.24596,-1.43782,-1.33264,-0.37394,1.89625,0.00341
+0.75542,1.24558,-1.43816,-1.33195,-0.37429,1.89664,0.00341
+0.75792,1.24520,-1.43849,-1.33126,-0.37464,1.89702,0.00341
+0.76041,1.24482,-1.43882,-1.33058,-0.37499,1.89739,0.00341
+0.76290,1.24446,-1.43915,-1.32992,-0.37533,1.89776,0.00340
+0.76540,1.24410,-1.43947,-1.32926,-0.37566,1.89813,0.00340
+0.76789,1.24374,-1.43979,-1.32862,-0.37599,1.89849,0.00340
+0.77038,1.24339,-1.44010,-1.32798,-0.37631,1.89884,0.00340
+0.77287,1.24305,-1.44040,-1.32736,-0.37663,1.89919,0.00339
+0.77537,1.24271,-1.44071,-1.32674,-0.37695,1.89953,0.00339
+0.77786,1.24237,-1.44100,-1.32613,-0.37725,1.89987,0.00339
+0.78035,1.24205,-1.44130,-1.32553,-0.37756,1.90020,0.00339
+0.78285,1.24172,-1.44159,-1.32495,-0.37786,1.90052,0.00338
+0.78534,1.24141,-1.44187,-1.32437,-0.37815,1.90084,0.00338
+0.78783,1.24109,-1.44215,-1.32379,-0.37844,1.90116,0.00338
+0.79033,1.24096,-1.44227,-1.32355,-0.37857,1.90130,0.00338
+0.79282,1.24055,-1.44264,-1.32279,-0.37896,1.90171,0.00338
+0.79531,1.24014,-1.44300,-1.32204,-0.37934,1.90211,0.00337
+0.79781,1.23975,-1.44336,-1.32131,-0.37972,1.90251,0.00337
+0.80030,1.23936,-1.44371,-1.32058,-0.38009,1.90291,0.00337
+0.80279,1.23897,-1.44406,-1.31987,-0.38046,1.90330,0.00336
+0.80529,1.23859,-1.44440,-1.31917,-0.38082,1.90368,0.00336
+0.80778,1.23822,-1.44474,-1.31847,-0.38117,1.90405,0.00336
+0.81027,1.23785,-1.44507,-1.31779,-0.38152,1.90442,0.00336
+0.81276,1.23749,-1.44540,-1.31712,-0.38186,1.90479,0.00335
+0.81526,1.23713,-1.44572,-1.31646,-0.38220,1.90514,0.00335
+0.81775,1.23678,-1.44604,-1.31581,-0.38253,1.90550,0.00335
+0.82024,1.23644,-1.44635,-1.31517,-0.38286,1.90584,0.00335
+0.82274,1.23610,-1.44666,-1.31453,-0.38318,1.90619,0.00334
+0.82523,1.23577,-1.44696,-1.31391,-0.38350,1.90652,0.00334
+0.82772,1.23544,-1.44726,-1.31330,-0.38381,1.90685,0.00334
+0.83022,1.23512,-1.44756,-1.31270,-0.38412,1.90718,0.00334
+0.83271,1.23480,-1.44785,-1.31210,-0.38442,1.90750,0.00333
+0.83520,1.23449,-1.44814,-1.31152,-0.38472,1.90782,0.00333
+0.83770,1.23418,-1.44842,-1.31094,-0.38502,1.90813,0.00333
+0.84019,1.23405,-1.44854,-1.31069,-0.38514,1.90826,0.00333
+0.84268,1.23364,-1.44891,-1.30995,-0.38552,1.90867,0.00333
+0.84518,1.23324,-1.44927,-1.30922,-0.38589,1.90907,0.00332
+0.84767,1.23285,-1.44962,-1.30850,-0.38625,1.90947,0.00332
+0.85016,1.23246,-1.44997,-1.30779,-0.38661,1.90986,0.00332
+0.85266,1.23208,-1.45032,-1.30709,-0.38696,1.91024,0.00331
+0.85515,1.23171,-1.45066,-1.30640,-0.38731,1.91062,0.00331
+0.85764,1.23134,-1.45099,-1.30572,-0.38766,1.91099,0.00331
+0.86013,1.23098,-1.45132,-1.30505,-0.38799,1.91135,0.00331
+0.86263,1.23062,-1.45165,-1.30439,-0.38832,1.91171,0.00330
+0.86512,1.23027,-1.45197,-1.30375,-0.38865,1.91207,0.00330
+0.86761,1.22992,-1.45228,-1.30311,-0.38897,1.91241,0.00330
+0.87011,1.22958,-1.45259,-1.30248,-0.38929,1.91276,0.00330
+0.87260,1.22925,-1.45290,-1.30186,-0.38960,1.91309,0.00329
+0.87509,1.22892,-1.45320,-1.30125,-0.38991,1.91343,0.00329
+0.87759,1.22860,-1.45350,-1.30065,-0.39021,1.91375,0.00329
+0.88008,1.22828,-1.45380,-1.30006,-0.39051,1.91408,0.00329
+0.88257,1.22796,-1.45408,-1.29948,-0.39080,1.91439,0.00328
+0.88507,1.22764,-1.45438,-1.29888,-0.39110,1.91472,0.00328
+0.88756,1.22724,-1.45475,-1.29814,-0.39147,1.91513,0.00328
+0.89005,1.22683,-1.45511,-1.29740,-0.39184,1.91553,0.00328
+0.89255,1.22644,-1.45547,-1.29668,-0.39220,1.91593,0.00327
+0.89504,1.22605,-1.45583,-1.29597,-0.39256,1.91632,0.00327
+0.89753,1.22567,-1.45618,-1.29527,-0.39291,1.91670,0.00327
+0.90002,1.22529,-1.45652,-1.29458,-0.39326,1.91708,0.00326
+0.90252,1.22492,-1.45686,-1.29390,-0.39360,1.91745,0.00326
+0.90501,1.22456,-1.45719,-1.29323,-0.39393,1.91782,0.00326
+0.90750,1.22420,-1.45752,-1.29257,-0.39426,1.91818,0.00326
+0.91000,1.22385,-1.45785,-1.29192,-0.39459,1.91854,0.00325
+0.91249,1.22350,-1.45817,-1.29128,-0.39491,1.91889,0.00325
+0.91498,1.22316,-1.45848,-1.29065,-0.39522,1.91923,0.00325
+0.91748,1.22282,-1.45879,-1.29002,-0.39553,1.91957,0.00325
+0.91997,1.22249,-1.45910,-1.28941,-0.39584,1.91991,0.00324
+0.92246,1.22216,-1.45940,-1.28881,-0.39614,1.92024,0.00324
+0.92496,1.22184,-1.45970,-1.28822,-0.39644,1.92056,0.00324
+0.92745,1.22153,-1.45999,-1.28763,-0.39673,1.92088,0.00324
+0.92994,1.22122,-1.46028,-1.28706,-0.39701,1.92119,0.00323
+0.93244,1.22118,-1.46032,-1.28698,-0.39705,1.92123,0.00323
+0.93493,1.22077,-1.46069,-1.28623,-0.39742,1.92164,0.00323
+0.93742,1.22037,-1.46106,-1.28550,-0.39779,1.92205,0.00323
+0.93992,1.21997,-1.46143,-1.28477,-0.39815,1.92244,0.00323
+0.94241,1.21958,-1.46178,-1.28406,-0.39851,1.92284,0.00322
+0.94490,1.21920,-1.46214,-1.28335,-0.39886,1.92322,0.00322
+0.94739,1.21882,-1.46248,-1.28266,-0.39920,1.92360,0.00322
+0.94989,1.21845,-1.46283,-1.28198,-0.39954,1.92397,0.00321
+0.95238,1.21809,-1.46317,-1.28130,-0.39987,1.92434,0.00321
+0.95487,1.21773,-1.46350,-1.28064,-0.40020,1.92470,0.00321
+0.95737,1.21738,-1.46383,-1.27999,-0.40053,1.92506,0.00321
+0.95986,1.21703,-1.46415,-1.27935,-0.40085,1.92541,0.00320
+0.96235,1.21669,-1.46447,-1.27871,-0.40116,1.92575,0.00320
+0.96485,1.21635,-1.46478,-1.27809,-0.40147,1.92609,0.00320
+0.96734,1.21602,-1.46509,-1.27747,-0.40177,1.92643,0.00320
+0.96983,1.21570,-1.46540,-1.27687,-0.40207,1.92675,0.00319
+0.97233,1.21537,-1.46570,-1.27627,-0.40237,1.92708,0.00319
+0.97482,1.21506,-1.46599,-1.27569,-0.40266,1.92740,0.00319
+0.97731,1.21475,-1.46629,-1.27511,-0.40295,1.92771,0.00319
+0.97981,1.21469,-1.46634,-1.27501,-0.40299,1.92776,0.00319
+0.98230,1.21416,-1.46682,-1.27405,-0.40347,1.92830,0.00318
+0.98479,1.21364,-1.46730,-1.27309,-0.40394,1.92882,0.00318
+0.98728,1.21313,-1.46777,-1.27216,-0.40440,1.92933,0.00318
+0.98978,1.21262,-1.46824,-1.27123,-0.40486,1.92984,0.00317
+0.99227,1.21213,-1.46869,-1.27032,-0.40531,1.93034,0.00317
+0.99476,1.21164,-1.46915,-1.26943,-0.40575,1.93083,0.00317
+0.99726,1.21116,-1.46959,-1.26855,-0.40618,1.93131,0.00317
+0.99975,1.21068,-1.47003,-1.26768,-0.40661,1.93179,0.00316
+1.00224,1.21022,-1.47046,-1.26682,-0.40703,1.93225,0.00316
+1.00474,1.20976,-1.47089,-1.26598,-0.40745,1.93271,0.00316
+1.00723,1.20931,-1.47131,-1.26514,-0.40786,1.93317,0.00315
+1.00972,1.20886,-1.47172,-1.26432,-0.40826,1.93361,0.00315
+1.01222,1.20843,-1.47213,-1.26352,-0.40866,1.93405,0.00315
+1.01471,1.20800,-1.47253,-1.26272,-0.40905,1.93448,0.00314
+1.01720,1.20757,-1.47293,-1.26194,-0.40943,1.93491,0.00314
+1.01970,1.20716,-1.47332,-1.26117,-0.40981,1.93533,0.00314
+1.02219,1.20675,-1.47371,-1.26041,-0.41019,1.93574,0.00314
+1.02468,1.20635,-1.47409,-1.25966,-0.41056,1.93614,0.00313
+1.02718,1.20595,-1.47446,-1.25892,-0.41092,1.93654,0.00313
+1.02967,1.20556,-1.47483,-1.25819,-0.41127,1.93694,0.00313
+1.03216,1.20518,-1.47520,-1.25748,-0.41163,1.93732,0.00312
+1.03465,1.20480,-1.47555,-1.25677,-0.41197,1.93770,0.00312
+1.03715,1.20443,-1.47591,-1.25608,-0.41231,1.93808,0.00312
+1.03964,1.20406,-1.47626,-1.25539,-0.41265,1.93845,0.00312
+1.04213,1.20370,-1.47660,-1.25472,-0.41298,1.93881,0.00311
+1.04463,1.20335,-1.47694,-1.25406,-0.41330,1.93916,0.00311
+1.04712,1.20300,-1.47727,-1.25340,-0.41363,1.93952,0.00311
+1.04961,1.20266,-1.47760,-1.25276,-0.41394,1.93986,0.00310
+1.05211,1.20232,-1.47792,-1.25212,-0.41425,1.94020,0.00310
+1.05460,1.20199,-1.47824,-1.25150,-0.41456,1.94054,0.00310
+1.05709,1.20167,-1.47856,-1.25088,-0.41486,1.94087,0.00310
+1.05959,1.20134,-1.47887,-1.25027,-0.41516,1.94119,0.00309
+1.06208,1.20103,-1.47917,-1.24968,-0.41545,1.94151,0.00309
+1.06457,1.20072,-1.47948,-1.24909,-0.41574,1.94183,0.00309
+1.06707,1.20053,-1.47966,-1.24873,-0.41591,1.94202,0.00309
+1.06956,1.20016,-1.48001,-1.24805,-0.41624,1.94239,0.00308
+1.07205,1.19981,-1.48035,-1.24739,-0.41656,1.94275,0.00308
+1.07455,1.19945,-1.48068,-1.24674,-0.41688,1.94310,0.00308
+1.07704,1.19911,-1.48101,-1.24610,-0.41719,1.94345,0.00308
+1.07953,1.19876,-1.48134,-1.24546,-0.41749,1.94380,0.00307
+1.08202,1.19843,-1.48166,-1.24484,-0.41780,1.94414,0.00307
+1.08452,1.19810,-1.48198,-1.24422,-0.41809,1.94447,0.00307
+1.08701,1.19777,-1.48229,-1.24362,-0.41839,1.94480,0.00307
+1.08950,1.19745,-1.48260,-1.24302,-0.41867,1.94512,0.00306
+1.09200,1.19714,-1.48291,-1.24244,-0.41896,1.94544,0.00306
+1.09449,1.19695,-1.48309,-1.24208,-0.41913,1.94563,0.00306
+1.09698,1.19660,-1.48343,-1.24139,-0.41948,1.94598,0.00306
+1.09948,1.19626,-1.48377,-1.24072,-0.41981,1.94632,0.00305
+1.10197,1.19593,-1.48410,-1.24005,-0.42014,1.94666,0.00305
+1.10446,1.19560,-1.48443,-1.23940,-0.42047,1.94699,0.00305
+1.10696,1.19527,-1.48475,-1.23875,-0.42079,1.94732,0.00305
+1.10945,1.19496,-1.48507,-1.23812,-0.42111,1.94764,0.00304
+1.11194,1.19464,-1.48539,-1.23749,-0.42142,1.94796,0.00304
+1.11444,1.19433,-1.48569,-1.23688,-0.42173,1.94827,0.00304
+1.11693,1.19403,-1.48600,-1.23627,-0.42203,1.94858,0.00303
+1.11942,1.19373,-1.48630,-1.23567,-0.42233,1.94888,0.00303
+1.12191,1.19355,-1.48648,-1.23531,-0.42251,1.94907,0.00303
+1.12441,1.19324,-1.48680,-1.23467,-0.42283,1.94938,0.00303
+1.12690,1.19293,-1.48711,-1.23404,-0.42315,1.94969,0.00303
+1.12939,1.19263,-1.48742,-1.23342,-0.42346,1.94999,0.00302
+1.13189,1.19234,-1.48772,-1.23281,-0.42377,1.95029,0.00302
+1.13438,1.19204,-1.48802,-1.23221,-0.42407,1.95059,0.00302
+1.13687,1.19190,-1.48817,-1.23190,-0.42423,1.95074,0.00302
+1.13937,1.19159,-1.48848,-1.23126,-0.42456,1.95105,0.00301
+1.14186,1.19129,-1.48879,-1.23062,-0.42488,1.95135,0.00301
+1.14435,1.19100,-1.48910,-1.23000,-0.42520,1.95165,0.00301
+1.14685,1.19071,-1.48940,-1.22938,-0.42551,1.95194,0.00301
+1.14934,1.19042,-1.48970,-1.22877,-0.42582,1.95223,0.00300
+1.15183,1.19028,-1.48985,-1.22846,-0.42598,1.95238,0.00300
+1.15433,1.18996,-1.49018,-1.22778,-0.42633,1.95270,0.00300
+1.15682,1.18965,-1.49051,-1.22711,-0.42668,1.95301,0.00300
+1.15931,1.18934,-1.49083,-1.22645,-0.42702,1.95333,0.00300
+1.16181,1.18904,-1.49115,-1.22580,-0.42735,1.95363,0.00299
+1.16430,1.18874,-1.49146,-1.22515,-0.42768,1.95393,0.00299
+1.16679,1.18845,-1.49177,-1.22452,-0.42800,1.95423,0.00299
+1.16928,1.18816,-1.49207,-1.22390,-0.42832,1.95452,0.00299
+1.17178,1.18787,-1.49237,-1.22328,-0.42864,1.95481,0.00298
+1.17427,1.18759,-1.49267,-1.22267,-0.42895,1.95510,0.00298
+1.17676,1.18730,-1.49298,-1.22202,-0.42929,1.95539,0.00298
+1.17926,1.18701,-1.49329,-1.22138,-0.42962,1.95569,0.00298
+1.18175,1.18672,-1.49360,-1.22074,-0.42995,1.95598,0.00297
+1.18424,1.18644,-1.49390,-1.22012,-0.43027,1.95626,0.00297
+1.18674,1.18616,-1.49420,-1.21951,-0.43059,1.95654,0.00297
+1.18923,1.18600,-1.49437,-1.21914,-0.43078,1.95671,0.00297
+1.19172,1.18573,-1.49467,-1.21852,-0.43111,1.95698,0.00296
+1.19422,1.18549,-1.49493,-1.21796,-0.43140,1.95722,0.00296
+1.19671,1.18523,-1.49523,-1.21733,-0.43173,1.95748,0.00296
+1.19920,1.18498,-1.49551,-1.21671,-0.43206,1.95774,0.00296
+1.20170,1.18495,-1.49552,-1.21674,-0.43202,1.95778,0.00296
+1.20419,1.18463,-1.49562,-1.21703,-0.43165,1.95810,0.00295
+1.20668,1.18431,-1.49571,-1.21732,-0.43128,1.95841,0.00295
+1.20917,1.18425,-1.49572,-1.21740,-0.43119,1.95847,0.00295
+1.21167,1.18391,-1.49578,-1.21787,-0.43067,1.95881,0.00294
+1.21416,1.18358,-1.49583,-1.21834,-0.43016,1.95913,0.00294
+1.21665,1.18326,-1.49588,-1.21881,-0.42966,1.95945,0.00294
+1.21915,1.18294,-1.49593,-1.21926,-0.42917,1.95977,0.00293
+1.22164,1.18263,-1.49598,-1.21971,-0.42868,1.96008,0.00293
+1.22413,1.18232,-1.49602,-1.22015,-0.42821,1.96039,0.00293
+1.22663,1.18202,-1.49607,-1.22058,-0.42774,1.96069,0.00292
+1.22912,1.18172,-1.49611,-1.22100,-0.42728,1.96098,0.00292
+1.23161,1.18143,-1.49616,-1.22142,-0.42683,1.96127,0.00292
+1.23411,1.18115,-1.49620,-1.22183,-0.42638,1.96156,0.00292
+1.23660,1.18087,-1.49624,-1.22224,-0.42594,1.96184,0.00291
+1.23909,1.18059,-1.49628,-1.22263,-0.42551,1.96211,0.00291
+1.24159,1.18032,-1.49632,-1.22302,-0.42509,1.96238,0.00291
+1.24408,1.18005,-1.49636,-1.22341,-0.42467,1.96265,0.00291
+1.24657,1.17979,-1.49640,-1.22379,-0.42426,1.96291,0.00290
+1.24907,1.17961,-1.49642,-1.22406,-0.42397,1.96309,0.00290
+1.25156,1.17930,-1.49645,-1.22457,-0.42345,1.96339,0.00290
+1.25405,1.17901,-1.49647,-1.22507,-0.42293,1.96368,0.00290
+1.25654,1.17872,-1.49649,-1.22556,-0.42243,1.96397,0.00289
+1.25904,1.17844,-1.49651,-1.22604,-0.42193,1.96425,0.00289
+1.26153,1.17816,-1.49653,-1.22652,-0.42144,1.96453,0.00289
+1.26402,1.17788,-1.49655,-1.22699,-0.42096,1.96480,0.00289
+1.26652,1.17761,-1.49657,-1.22745,-0.42049,1.96507,0.00289
+1.26901,1.17735,-1.49659,-1.22790,-0.42002,1.96534,0.00288
+1.27150,1.17708,-1.49661,-1.22834,-0.41956,1.96560,0.00288
+1.27400,1.17683,-1.49663,-1.22878,-0.41912,1.96585,0.00288
+1.27649,1.17658,-1.49665,-1.22921,-0.41867,1.96610,0.00288
+1.27898,1.17633,-1.49666,-1.22963,-0.41824,1.96635,0.00288
+1.28148,1.17609,-1.49668,-1.23005,-0.41781,1.96659,0.00287
+1.28397,1.17585,-1.49669,-1.23046,-0.41739,1.96683,0.00287
+1.28646,1.17575,-1.49670,-1.23064,-0.41722,1.96692,0.00287
+1.28896,1.17552,-1.49668,-1.23117,-0.41670,1.96716,0.00287
+1.29145,1.17528,-1.49666,-1.23170,-0.41620,1.96739,0.00287
+1.29394,1.17505,-1.49665,-1.23222,-0.41570,1.96762,0.00287
+1.29643,1.17483,-1.49663,-1.23273,-0.41521,1.96784,0.00287
+1.29893,1.17461,-1.49661,-1.23323,-0.41473,1.96806,0.00287
+1.30142,1.17439,-1.49659,-1.23373,-0.41426,1.96827,0.00286
+1.30391,1.17418,-1.49658,-1.23421,-0.41379,1.96848,0.00286
+1.30641,1.17397,-1.49656,-1.23469,-0.41334,1.96869,0.00286
+1.30890,1.17376,-1.49654,-1.23516,-0.41289,1.96890,0.00286
+1.31139,1.17356,-1.49652,-1.23563,-0.41245,1.96910,0.00286
+1.31389,1.17336,-1.49651,-1.23608,-0.41201,1.96930,0.00286
+1.31638,1.17330,-1.49650,-1.23622,-0.41188,1.96935,0.00286
+1.31887,1.17311,-1.49647,-1.23674,-0.41140,1.96955,0.00286
+1.32137,1.17292,-1.49643,-1.23724,-0.41093,1.96974,0.00286
+1.32386,1.17273,-1.49640,-1.23774,-0.41047,1.96993,0.00286
+1.32635,1.17254,-1.49637,-1.23823,-0.41002,1.97011,0.00286
+1.32885,1.17236,-1.49634,-1.23871,-0.40957,1.97029,0.00286
+1.33134,1.17218,-1.49630,-1.23919,-0.40913,1.97047,0.00286
+1.33383,1.17214,-1.49630,-1.23929,-0.40904,1.97051,0.00286
+1.33633,1.17197,-1.49625,-1.23982,-0.40856,1.97068,0.00285
+1.33882,1.17179,-1.49620,-1.24035,-0.40809,1.97086,0.00285
+1.34131,1.17162,-1.49615,-1.24086,-0.40762,1.97103,0.00285
+1.34380,1.17145,-1.49611,-1.24137,-0.40716,1.97119,0.00285
+1.34630,1.17129,-1.49606,-1.24187,-0.40671,1.97136,0.00285
+1.34879,1.17113,-1.49602,-1.24236,-0.40627,1.97152,0.00285
+1.35128,1.17110,-1.49601,-1.24246,-0.40618,1.97155,0.00285
+1.35378,1.17094,-1.49595,-1.24299,-0.40571,1.97171,0.00285
+1.35627,1.17078,-1.49590,-1.24350,-0.40525,1.97186,0.00285
+1.35876,1.17062,-1.49584,-1.24401,-0.40480,1.97202,0.00285
+1.36126,1.17047,-1.49579,-1.24452,-0.40435,1.97217,0.00285
+1.36375,1.17043,-1.49577,-1.24467,-0.40421,1.97221,0.00285
+1.36624,1.17028,-1.49570,-1.24526,-0.40371,1.97236,0.00285
+1.36874,1.17013,-1.49563,-1.24583,-0.40321,1.97251,0.00285
+1.37123,1.16998,-1.49556,-1.24639,-0.40272,1.97265,0.00285
+1.37372,1.16984,-1.49549,-1.24694,-0.40224,1.97279,0.00285
+1.37622,1.16970,-1.49542,-1.24749,-0.40177,1.97293,0.00285
+1.37871,1.16957,-1.49535,-1.24803,-0.40130,1.97306,0.00285
+1.38120,1.16943,-1.49528,-1.24855,-0.40085,1.97320,0.00285
+1.38369,1.16930,-1.49521,-1.24907,-0.40040,1.97333,0.00285
+1.38619,1.16923,-1.49518,-1.24934,-0.40016,1.97340,0.00285
+1.38868,1.16908,-1.49510,-1.24995,-0.39964,1.97355,0.00285
+1.39117,1.16893,-1.49502,-1.25055,-0.39912,1.97369,0.00285
+1.39367,1.16878,-1.49494,-1.25114,-0.39861,1.97384,0.00285
+1.39616,1.16864,-1.49487,-1.25172,-0.39811,1.97398,0.00285
+1.39865,1.16850,-1.49479,-1.25229,-0.39762,1.97412,0.00285
+1.40115,1.16836,-1.49472,-1.25285,-0.39713,1.97426,0.00285
+1.40364,1.16822,-1.49464,-1.25340,-0.39665,1.97439,0.00285
+1.40613,1.16809,-1.49457,-1.25394,-0.39618,1.97452,0.00285
+1.40863,1.16796,-1.49450,-1.25448,-0.39572,1.97465,0.00285
+1.41112,1.16783,-1.49443,-1.25500,-0.39527,1.97478,0.00285
+1.41361,1.16771,-1.49436,-1.25548,-0.39486,1.97490,0.00285
+1.41611,1.16756,-1.49428,-1.25612,-0.39431,1.97504,0.00285
+1.41860,1.16742,-1.49419,-1.25674,-0.39378,1.97518,0.00285
+1.42109,1.16727,-1.49411,-1.25735,-0.39325,1.97533,0.00286
+1.42359,1.16713,-1.49402,-1.25796,-0.39273,1.97546,0.00286
+1.42608,1.16700,-1.49394,-1.25855,-0.39222,1.97560,0.00286
+1.42857,1.16686,-1.49386,-1.25914,-0.39172,1.97573,0.00286
+1.43106,1.16673,-1.49378,-1.25971,-0.39123,1.97586,0.00286
+1.43356,1.16660,-1.49370,-1.26028,-0.39074,1.97599,0.00286
+1.43605,1.16647,-1.49362,-1.26083,-0.39026,1.97612,0.00286
+1.43854,1.16634,-1.49354,-1.26138,-0.38979,1.97624,0.00286
+1.44104,1.16622,-1.49347,-1.26192,-0.38933,1.97636,0.00286
+1.44353,1.16610,-1.49339,-1.26245,-0.38888,1.97648,0.00286
+1.44602,1.16600,-1.49333,-1.26288,-0.38851,1.97658,0.00286
+1.44852,1.16586,-1.49324,-1.26349,-0.38798,1.97672,0.00286
+1.45101,1.16572,-1.49316,-1.26410,-0.38746,1.97685,0.00286
+1.45350,1.16559,-1.49307,-1.26470,-0.38695,1.97698,0.00286
+1.45600,1.16545,-1.49299,-1.26528,-0.38645,1.97711,0.00286
+1.45849,1.16532,-1.49291,-1.26586,-0.38596,1.97724,0.00286
+1.46098,1.16519,-1.49283,-1.26643,-0.38547,1.97737,0.00286
+1.46348,1.16507,-1.49275,-1.26699,-0.38499,1.97749,0.00287
+1.46597,1.16495,-1.49267,-1.26754,-0.38452,1.97761,0.00287
+1.46846,1.16482,-1.49259,-1.26808,-0.38406,1.97773,0.00287
+1.47095,1.16470,-1.49252,-1.26861,-0.38360,1.97785,0.00287
+1.47345,1.16460,-1.49245,-1.26909,-0.38319,1.97795,0.00287
+1.47594,1.16446,-1.49236,-1.26971,-0.38266,1.97809,0.00287
+1.47843,1.16432,-1.49227,-1.27032,-0.38214,1.97822,0.00287
+1.48093,1.16419,-1.49219,-1.27091,-0.38163,1.97835,0.00287
+1.48342,1.16406,-1.49211,-1.27150,-0.38113,1.97848,0.00287
+1.48591,1.16393,-1.49202,-1.27208,-0.38063,1.97861,0.00287
+1.48841,1.16381,-1.49194,-1.27265,-0.38015,1.97873,0.00287
+1.49090,1.16368,-1.49186,-1.27321,-0.37967,1.97885,0.00287
+1.49339,1.16356,-1.49178,-1.27376,-0.37920,1.97897,0.00287
+1.49589,1.16344,-1.49170,-1.27430,-0.37873,1.97908,0.00288
+1.49838,1.16332,-1.49163,-1.27483,-0.37828,1.97920,0.00288
+1.50087,1.16322,-1.49156,-1.27531,-0.37787,1.97930,0.00288
+1.50337,1.16308,-1.49148,-1.27588,-0.37737,1.97943,0.00288
+1.50586,1.16295,-1.49140,-1.27644,-0.37689,1.97956,0.00288
+1.50835,1.16282,-1.49133,-1.27700,-0.37641,1.97969,0.00288
+1.51085,1.16269,-1.49125,-1.27754,-0.37594,1.97981,0.00288
+1.51334,1.16257,-1.49118,-1.27808,-0.37548,1.97994,0.00288
+1.51583,1.16245,-1.49111,-1.27861,-0.37502,1.98006,0.00288
+1.51832,1.16232,-1.49104,-1.27913,-0.37456,1.98018,0.00288
+1.52082,1.16218,-1.49095,-1.27975,-0.37404,1.98032,0.00289
+1.52331,1.16204,-1.49087,-1.28035,-0.37352,1.98045,0.00289
+1.52580,1.16191,-1.49079,-1.28094,-0.37300,1.98058,0.00289
+1.52830,1.16177,-1.49072,-1.28152,-0.37250,1.98072,0.00289
+1.53079,1.16164,-1.49064,-1.28209,-0.37201,1.98084,0.00289
+1.53328,1.16151,-1.49056,-1.28265,-0.37152,1.98097,0.00289
+1.53578,1.16138,-1.49048,-1.28321,-0.37104,1.98109,0.00289
+1.53827,1.16126,-1.49041,-1.28375,-0.37057,1.98121,0.00289
+1.54076,1.16114,-1.49034,-1.28429,-0.37011,1.98133,0.00289
+1.54326,1.16102,-1.49026,-1.28482,-0.36966,1.98145,0.00289
+1.54575,1.16091,-1.49020,-1.28529,-0.36925,1.98156,0.00290
+1.54824,1.16077,-1.49012,-1.28585,-0.36875,1.98169,0.00290
+1.55074,1.16064,-1.49005,-1.28641,-0.36827,1.98182,0.00290
+1.55323,1.16050,-1.48998,-1.28696,-0.36779,1.98195,0.00290
+1.55572,1.16037,-1.48991,-1.28750,-0.36732,1.98208,0.00290
+1.55821,1.16025,-1.48984,-1.28803,-0.36686,1.98220,0.00290
+1.56071,1.16012,-1.48977,-1.28855,-0.36640,1.98233,0.00290
+1.56320,1.16001,-1.48971,-1.28902,-0.36600,1.98244,0.00290
+1.56569,1.15986,-1.48965,-1.28956,-0.36552,1.98258,0.00290
+1.56819,1.15972,-1.48959,-1.29009,-0.36505,1.98271,0.00290
+1.57068,1.15959,-1.48953,-1.29061,-0.36459,1.98285,0.00291
+1.57317,1.15945,-1.48947,-1.29113,-0.36414,1.98298,0.00291
+1.57567,1.15933,-1.48941,-1.29159,-0.36373,1.98310,0.00291
+1.57816,1.15916,-1.48936,-1.29215,-0.36322,1.98327,0.00291
+1.58065,1.15899,-1.48931,-1.29271,-0.36271,1.98343,0.00291
+1.58315,1.15882,-1.48926,-1.29325,-0.36222,1.98360,0.00291
+1.58564,1.15866,-1.48921,-1.29379,-0.36173,1.98376,0.00291
+1.58813,1.15849,-1.48916,-1.29432,-0.36125,1.98391,0.00291
+1.59063,1.15834,-1.48911,-1.29484,-0.36078,1.98407,0.00291
+1.59312,1.15818,-1.48906,-1.29535,-0.36032,1.98422,0.00291
+1.59561,1.15803,-1.48901,-1.29586,-0.35986,1.98437,0.00292
+1.59811,1.15788,-1.48896,-1.29635,-0.35941,1.98451,0.00292
+1.60060,1.15780,-1.48894,-1.29660,-0.35919,1.98459,0.00292
+1.60309,1.15764,-1.48889,-1.29714,-0.35869,1.98475,0.00292
+1.60558,1.15747,-1.48884,-1.29767,-0.35821,1.98491,0.00292
+1.60808,1.15731,-1.48879,-1.29819,-0.35774,1.98507,0.00292
+1.61057,1.15715,-1.48875,-1.29870,-0.35727,1.98522,0.00292
+1.61306,1.15700,-1.48870,-1.29921,-0.35681,1.98538,0.00292
+1.61556,1.15684,-1.48865,-1.29970,-0.35636,1.98552,0.00292
+1.61805,1.15671,-1.48861,-1.30015,-0.35596,1.98566,0.00292
+1.62054,1.15656,-1.48856,-1.30067,-0.35549,1.98580,0.00293
+1.62304,1.15641,-1.48851,-1.30119,-0.35502,1.98594,0.00293
+1.62553,1.15627,-1.48845,-1.30169,-0.35457,1.98608,0.00293
+1.62802,1.15613,-1.48840,-1.30219,-0.35412,1.98622,0.00293
+1.63052,1.15607,-1.48838,-1.30239,-0.35394,1.98628,0.00293
+1.63301,1.15591,-1.48833,-1.30291,-0.35347,1.98643,0.00293
+1.63550,1.15576,-1.48829,-1.30342,-0.35300,1.98659,0.00293
+1.63800,1.15560,-1.48824,-1.30393,-0.35254,1.98673,0.00293
+1.64049,1.15545,-1.48820,-1.30442,-0.35209,1.98688,0.00293
+1.64298,1.15532,-1.48816,-1.30487,-0.35169,1.98702,0.00293
+1.64547,1.15513,-1.48812,-1.30539,-0.35119,1.98720,0.00294
+1.64797,1.15495,-1.48809,-1.30591,-0.35071,1.98738,0.00294
+1.65046,1.15476,-1.48806,-1.30641,-0.35023,1.98755,0.00294
+1.65295,1.15459,-1.48803,-1.30691,-0.34976,1.98773,0.00294
+1.65545,1.15441,-1.48800,-1.30740,-0.34930,1.98790,0.00294
+1.65794,1.15424,-1.48797,-1.30789,-0.34885,1.98806,0.00294
+1.66043,1.15408,-1.48793,-1.30836,-0.34841,1.98823,0.00294
+1.66293,1.15397,-1.48792,-1.30865,-0.34814,1.98833,0.00294
+1.66542,1.15377,-1.48790,-1.30915,-0.34765,1.98853,0.00294
+1.66791,1.15357,-1.48788,-1.30965,-0.34717,1.98872,0.00294
+1.67041,1.15337,-1.48786,-1.31014,-0.34669,1.98892,0.00294
+1.67290,1.15317,-1.48785,-1.31062,-0.34623,1.98911,0.00295
+1.67539,1.15298,-1.48783,-1.31110,-0.34577,1.98929,0.00295
+1.67789,1.15280,-1.48781,-1.31156,-0.34532,1.98948,0.00295
+1.68038,1.15261,-1.48779,-1.31202,-0.34488,1.98966,0.00295
+1.68287,1.15250,-1.48778,-1.31230,-0.34461,1.98977,0.00295
+1.68537,1.15228,-1.48777,-1.31281,-0.34411,1.98998,0.00295
+1.68786,1.15206,-1.48777,-1.31331,-0.34361,1.99020,0.00295
+1.69035,1.15185,-1.48776,-1.31381,-0.34312,1.99040,0.00295
+1.69284,1.15164,-1.48775,-1.31430,-0.34265,1.99061,0.00295
+1.69534,1.15143,-1.48774,-1.31478,-0.34217,1.99081,0.00295
+1.69783,1.15123,-1.48773,-1.31525,-0.34171,1.99101,0.00295
+1.70032,1.15103,-1.48772,-1.31571,-0.34126,1.99120,0.00295
+1.70282,1.15084,-1.48771,-1.31616,-0.34081,1.99139,0.00296
+1.70531,1.15064,-1.48770,-1.31661,-0.34037,1.99158,0.00296
+1.70780,1.15053,-1.48769,-1.31689,-0.34010,1.99170,0.00296
+1.71030,1.15028,-1.48770,-1.31740,-0.33958,1.99194,0.00296
+1.71279,1.15003,-1.48771,-1.31790,-0.33907,1.99218,0.00296
+1.71528,1.14979,-1.48772,-1.31840,-0.33857,1.99242,0.00296
+1.71778,1.14956,-1.48772,-1.31888,-0.33807,1.99265,0.00296
+1.72027,1.14932,-1.48773,-1.31936,-0.33758,1.99287,0.00296
+1.72276,1.14910,-1.48774,-1.31984,-0.33711,1.99310,0.00296
+1.72526,1.14887,-1.48774,-1.32030,-0.33664,1.99332,0.00296
+1.72775,1.14865,-1.48775,-1.32075,-0.33617,1.99353,0.00296
+1.73024,1.14844,-1.48775,-1.32120,-0.33572,1.99374,0.00296
+1.73273,1.14822,-1.48775,-1.32164,-0.33527,1.99395,0.00296
+1.73523,1.14802,-1.48776,-1.32208,-0.33484,1.99416,0.00297
+1.73772,1.14781,-1.48776,-1.32250,-0.33440,1.99436,0.00297
+1.74021,1.14778,-1.48777,-1.32255,-0.33435,1.99438,0.00297
+1.74271,1.14752,-1.48779,-1.32302,-0.33385,1.99464,0.00297
+1.74520,1.14726,-1.48782,-1.32349,-0.33336,1.99489,0.00297
+1.74769,1.14701,-1.48784,-1.32394,-0.33288,1.99514,0.00297
+1.75019,1.14676,-1.48786,-1.32439,-0.33241,1.99538,0.00297
+1.75268,1.14652,-1.48789,-1.32483,-0.33194,1.99562,0.00297
+1.75517,1.14628,-1.48791,-1.32527,-0.33148,1.99586,0.00297
+1.75767,1.14604,-1.48793,-1.32570,-0.33103,1.99609,0.00297
+1.76016,1.14581,-1.48795,-1.32612,-0.33059,1.99632,0.00297
+1.76265,1.14558,-1.48797,-1.32653,-0.33015,1.99654,0.00297
+1.76515,1.14536,-1.48799,-1.32693,-0.32973,1.99676,0.00297
+1.76764,1.14526,-1.48800,-1.32710,-0.32955,1.99686,0.00297
+1.77013,1.14498,-1.48804,-1.32757,-0.32904,1.99713,0.00297
+1.77263,1.14470,-1.48808,-1.32804,-0.32854,1.99740,0.00298
+1.77512,1.14443,-1.48811,-1.32849,-0.32804,1.99767,0.00298
+1.77761,1.14417,-1.48815,-1.32894,-0.32756,1.99793,0.00298
+1.78010,1.14391,-1.48819,-1.32938,-0.32708,1.99819,0.00298
+1.78260,1.14365,-1.48822,-1.32982,-0.32661,1.99844,0.00298
+1.78509,1.14340,-1.48825,-1.33024,-0.32615,1.99869,0.00298
+1.78758,1.14315,-1.48828,-1.33066,-0.32570,1.99893,0.00298
+1.79008,1.14290,-1.48832,-1.33107,-0.32525,1.99917,0.00298
+1.79257,1.14267,-1.48835,-1.33148,-0.32482,1.99940,0.00298
+1.79506,1.14243,-1.48838,-1.33188,-0.32439,1.99963,0.00298
+1.79756,1.14220,-1.48841,-1.33227,-0.32396,1.99986,0.00298
+1.80005,1.14215,-1.48841,-1.33235,-0.32387,1.99991,0.00298
+1.80254,1.14188,-1.48845,-1.33280,-0.32339,2.00017,0.00298
+1.80504,1.14162,-1.48849,-1.33324,-0.32291,2.00043,0.00298
+1.80753,1.14136,-1.48853,-1.33367,-0.32244,2.00069,0.00298
+1.81002,1.14110,-1.48856,-1.33410,-0.32197,2.00094,0.00298
+1.81252,1.14085,-1.48860,-1.33452,-0.32152,2.00118,0.00299
+1.81501,1.14061,-1.48863,-1.33493,-0.32107,2.00142,0.00299
+1.81750,1.14037,-1.48866,-1.33533,-0.32063,2.00166,0.00299
+1.82000,1.14013,-1.48870,-1.33573,-0.32020,2.00189,0.00299
+1.82249,1.13990,-1.48873,-1.33612,-0.31977,2.00212,0.00299
+1.82498,1.13975,-1.48875,-1.33636,-0.31951,2.00226,0.00299
+1.82747,1.13944,-1.48881,-1.33680,-0.31900,2.00257,0.00299
+1.82997,1.13914,-1.48888,-1.33724,-0.31850,2.00286,0.00299
+1.83246,1.13885,-1.48894,-1.33767,-0.31801,2.00316,0.00299
+1.83495,1.13855,-1.48900,-1.33809,-0.31753,2.00344,0.00299
+1.83745,1.13827,-1.48906,-1.33850,-0.31706,2.00372,0.00299
+1.83994,1.13798,-1.48911,-1.33891,-0.31659,2.00400,0.00299
+1.84243,1.13771,-1.48917,-1.33931,-0.31613,2.00427,0.00299
+1.84493,1.13744,-1.48922,-1.33971,-0.31568,2.00454,0.00299
+1.84742,1.13717,-1.48928,-1.34009,-0.31524,2.00480,0.00299
+1.84991,1.13691,-1.48933,-1.34047,-0.31480,2.00506,0.00299
+1.85241,1.13665,-1.48938,-1.34085,-0.31438,2.00532,0.00299
+1.85490,1.13639,-1.48943,-1.34122,-0.31395,2.00557,0.00300
+1.85739,1.13614,-1.48948,-1.34158,-0.31354,2.00581,0.00300
+1.85989,1.13612,-1.48949,-1.34162,-0.31349,2.00584,0.00300
+1.86238,1.13583,-1.48955,-1.34202,-0.31303,2.00612,0.00300
+1.86487,1.13555,-1.48961,-1.34241,-0.31258,2.00640,0.00300
+1.86736,1.13527,-1.48967,-1.34279,-0.31213,2.00667,0.00300
+1.86986,1.13500,-1.48973,-1.34317,-0.31170,2.00693,0.00300
+1.87235,1.13474,-1.48979,-1.34354,-0.31126,2.00719,0.00300
+1.87484,1.13448,-1.48985,-1.34390,-0.31084,2.00745,0.00300
+1.87734,1.13422,-1.48991,-1.34426,-0.31042,2.00770,0.00300
+1.87983,1.13399,-1.48996,-1.34458,-0.31005,2.00793,0.00300
+1.88232,1.13372,-1.49002,-1.34494,-0.30963,2.00819,0.00300
+1.88482,1.13346,-1.49008,-1.34529,-0.30922,2.00845,0.00300
+1.88731,1.13320,-1.49014,-1.34563,-0.30881,2.00871,0.00300
+1.88980,1.13317,-1.49015,-1.34567,-0.30876,2.00874,0.00300
+1.89230,1.13288,-1.49022,-1.34605,-0.30831,2.00903,0.00300
+1.89479,1.13259,-1.49030,-1.34642,-0.30786,2.00931,0.00300
+1.89728,1.13230,-1.49037,-1.34679,-0.30742,2.00959,0.00300
+1.89978,1.13202,-1.49044,-1.34715,-0.30698,2.00987,0.00301
+1.90227,1.13175,-1.49051,-1.34751,-0.30656,2.01014,0.00301
+1.90476,1.13148,-1.49057,-1.34786,-0.30614,2.01041,0.00301
+1.90726,1.13121,-1.49064,-1.34820,-0.30573,2.01067,0.00301
+1.90975,1.13097,-1.49070,-1.34851,-0.30536,2.01090,0.00301
+1.91224,1.13070,-1.49076,-1.34889,-0.30491,2.01117,0.00301
+1.91473,1.13042,-1.49083,-1.34927,-0.30446,2.01144,0.00301
+1.91723,1.13016,-1.49089,-1.34964,-0.30403,2.01171,0.00301
+1.91972,1.12989,-1.49095,-1.35001,-0.30360,2.01197,0.00301
+1.92221,1.12963,-1.49101,-1.35037,-0.30318,2.01222,0.00301
+1.92471,1.12938,-1.49107,-1.35072,-0.30276,2.01247,0.00301
+1.92720,1.12923,-1.49111,-1.35093,-0.30251,2.01262,0.00301
+1.92969,1.12896,-1.49117,-1.35131,-0.30208,2.01289,0.00301
+1.93219,1.12869,-1.49123,-1.35167,-0.30164,2.01315,0.00301
+1.93468,1.12844,-1.49130,-1.35204,-0.30122,2.01340,0.00301
+1.93717,1.12818,-1.49135,-1.35239,-0.30080,2.01365,0.00301
+1.93967,1.12793,-1.49141,-1.35275,-0.30039,2.01390,0.00301
+1.94216,1.12766,-1.49147,-1.35314,-0.29993,2.01416,0.00301
+1.94465,1.12740,-1.49153,-1.35353,-0.29948,2.01442,0.00302
+1.94715,1.12715,-1.49159,-1.35392,-0.29904,2.01467,0.00302
+1.94964,1.12689,-1.49165,-1.35429,-0.29860,2.01492,0.00302
+1.95213,1.12664,-1.49170,-1.35466,-0.29818,2.01517,0.00302
+1.95462,1.12640,-1.49175,-1.35503,-0.29776,2.01541,0.00302
+1.95712,1.12623,-1.49179,-1.35528,-0.29747,2.01558,0.00302
+1.95961,1.12595,-1.49186,-1.35565,-0.29702,2.01585,0.00302
+1.96210,1.12568,-1.49193,-1.35602,-0.29658,2.01612,0.00302
+1.96460,1.12541,-1.49200,-1.35638,-0.29615,2.01638,0.00302
+1.96709,1.12515,-1.49207,-1.35673,-0.29573,2.01664,0.00302
+1.96958,1.12489,-1.49214,-1.35708,-0.29531,2.01689,0.00302
+1.97208,1.12464,-1.49220,-1.35742,-0.29490,2.01714,0.00302
+1.97457,1.12461,-1.49221,-1.35747,-0.29485,2.01717,0.00302
+1.97706,1.12432,-1.49228,-1.35788,-0.29436,2.01746,0.00302
+1.97956,1.12404,-1.49235,-1.35830,-0.29388,2.01774,0.00302
+1.98205,1.12376,-1.49242,-1.35870,-0.29340,2.01801,0.00302
+1.98454,1.12348,-1.49249,-1.35910,-0.29294,2.01828,0.00302
+1.98704,1.12321,-1.49255,-1.35949,-0.29248,2.01855,0.00302
+1.98953,1.12295,-1.49262,-1.35987,-0.29203,2.01881,0.00302
+1.99202,1.12269,-1.49268,-1.36025,-0.29158,2.01907,0.00302
+1.99452,1.12243,-1.49275,-1.36062,-0.29115,2.01932,0.00302
+1.99701,1.12218,-1.49281,-1.36099,-0.29072,2.01957,0.00302
+1.99950,1.12193,-1.49287,-1.36135,-0.29030,2.01981,0.00303
+2.00199,1.12169,-1.49293,-1.36170,-0.28989,2.02005,0.00303
+2.00449,1.12166,-1.49293,-1.36174,-0.28984,2.02008,0.00303
+2.00698,1.12140,-1.49300,-1.36211,-0.28940,2.02033,0.00303
+2.00947,1.12115,-1.49306,-1.36248,-0.28897,2.02058,0.00303
+2.01197,1.12090,-1.49312,-1.36285,-0.28854,2.02083,0.00303
+2.01446,1.12065,-1.49318,-1.36321,-0.28812,2.02107,0.00303
+2.01695,1.12044,-1.49323,-1.36353,-0.28775,2.02128,0.00303
+2.01945,1.12020,-1.49329,-1.36389,-0.28732,2.02152,0.00303
+2.02194,1.11997,-1.49334,-1.36426,-0.28690,2.02175,0.00303
+2.02443,1.11974,-1.49339,-1.36463,-0.28648,2.02198,0.00303
+2.02693,1.11953,-1.49343,-1.36497,-0.28610,2.02218,0.00303
+2.02942,1.11931,-1.49347,-1.36535,-0.28567,2.02240,0.00303
+2.03191,1.11909,-1.49352,-1.36573,-0.28525,2.02261,0.00303
+2.03441,1.11887,-1.49356,-1.36612,-0.28481,2.02282,0.00303
+2.03690,1.11866,-1.49360,-1.36651,-0.28439,2.02304,0.00303
+2.03939,1.11839,-1.49367,-1.36685,-0.28396,2.02330,0.00303
+2.04188,1.11813,-1.49375,-1.36719,-0.28355,2.02356,0.00303
+2.04438,1.11787,-1.49382,-1.36753,-0.28314,2.02381,0.00304
+2.04687,1.11772,-1.49387,-1.36768,-0.28293,2.02396,0.00304
+2.04936,1.11722,-1.49412,-1.36786,-0.28250,2.02445,0.00304
+2.05186,1.11673,-1.49436,-1.36804,-0.28208,2.02494,0.00303
+2.05435,1.11625,-1.49460,-1.36821,-0.28167,2.02541,0.00303
+2.05684,1.11577,-1.49483,-1.36838,-0.28127,2.02588,0.00303
+2.05934,1.11531,-1.49506,-1.36855,-0.28087,2.02634,0.00303
+2.06183,1.11485,-1.49528,-1.36871,-0.28048,2.02679,0.00303
+2.06432,1.11440,-1.49550,-1.36887,-0.28009,2.02723,0.00303
+2.06682,1.11396,-1.49572,-1.36903,-0.27972,2.02767,0.00303
+2.06931,1.11352,-1.49593,-1.36918,-0.27935,2.02810,0.00303
+2.07180,1.11310,-1.49614,-1.36933,-0.27898,2.02852,0.00303
+2.07430,1.11268,-1.49635,-1.36948,-0.27863,2.02893,0.00303
+2.07679,1.11227,-1.49655,-1.36963,-0.27827,2.02934,0.00303
+2.07928,1.11186,-1.49675,-1.36977,-0.27793,2.02974,0.00303
+2.08178,1.11146,-1.49695,-1.36991,-0.27759,2.03013,0.00303
+2.08427,1.11107,-1.49714,-1.37005,-0.27726,2.03052,0.00303
+2.08676,1.11069,-1.49733,-1.37018,-0.27693,2.03090,0.00303
+2.08925,1.11031,-1.49751,-1.37031,-0.27661,2.03127,0.00303
+2.09175,1.10994,-1.49770,-1.37044,-0.27630,2.03164,0.00303
+2.09424,1.10958,-1.49788,-1.37054,-0.27601,2.03199,0.00303
+2.09673,1.10894,-1.49826,-1.37049,-0.27568,2.03263,0.00303
+2.09923,1.10830,-1.49863,-1.37045,-0.27535,2.03326,0.00303
+2.10172,1.10768,-1.49900,-1.37040,-0.27502,2.03387,0.00303
+2.10421,1.10707,-1.49936,-1.37036,-0.27470,2.03447,0.00303
+2.10671,1.10647,-1.49971,-1.37031,-0.27439,2.03507,0.00303
+2.10920,1.10588,-1.50006,-1.37027,-0.27409,2.03565,0.00303
+2.11169,1.10530,-1.50040,-1.37022,-0.27379,2.03622,0.00303
+2.11419,1.10473,-1.50074,-1.37018,-0.27349,2.03679,0.00303
+2.11668,1.10417,-1.50107,-1.37013,-0.27320,2.03734,0.00303
+2.11917,1.10362,-1.50140,-1.37008,-0.27292,2.03789,0.00303
+2.12167,1.10308,-1.50172,-1.37004,-0.27264,2.03842,0.00303
+2.12416,1.10255,-1.50203,-1.36999,-0.27236,2.03895,0.00303
+2.12665,1.10202,-1.50234,-1.36995,-0.27210,2.03946,0.00303
+2.12914,1.10151,-1.50265,-1.36990,-0.27183,2.03997,0.00303
+2.13164,1.10101,-1.50295,-1.36986,-0.27157,2.04047,0.00303
+2.13413,1.10051,-1.50324,-1.36981,-0.27132,2.04096,0.00303
+2.13662,1.10002,-1.50353,-1.36977,-0.27107,2.04144,0.00303
+2.13912,1.09955,-1.50382,-1.36972,-0.27083,2.04192,0.00303
+2.14161,1.09907,-1.50410,-1.36968,-0.27059,2.04239,0.00303
+2.14410,1.09861,-1.50437,-1.36963,-0.27035,2.04284,0.00303
+2.14660,1.09816,-1.50464,-1.36959,-0.27012,2.04330,0.00303
+2.14909,1.09771,-1.50491,-1.36955,-0.26989,2.04374,0.00303
+2.15158,1.09727,-1.50517,-1.36950,-0.26967,2.04417,0.00303
+2.15408,1.09684,-1.50543,-1.36946,-0.26945,2.04460,0.00303
+2.15657,1.09642,-1.50568,-1.36942,-0.26924,2.04502,0.00303
+2.15906,1.09600,-1.50593,-1.36937,-0.26903,2.04544,0.00303
+2.16156,1.09578,-1.50606,-1.36934,-0.26892,2.04565,0.00303
+2.16405,1.09525,-1.50640,-1.36922,-0.26871,2.04619,0.00303
+2.16654,1.09472,-1.50674,-1.36910,-0.26849,2.04671,0.00303
+2.16904,1.09420,-1.50706,-1.36898,-0.26828,2.04722,0.00303
+2.17153,1.09369,-1.50738,-1.36886,-0.26807,2.04773,0.00303
+2.17402,1.09319,-1.50770,-1.36874,-0.26787,2.04823,0.00303
+2.17651,1.09270,-1.50801,-1.36862,-0.26767,2.04871,0.00302
+2.17901,1.09222,-1.50832,-1.36851,-0.26748,2.04919,0.00302
+2.18150,1.09174,-1.50862,-1.36839,-0.26729,2.04967,0.00302
+2.18399,1.09128,-1.50892,-1.36828,-0.26710,2.05013,0.00302
+2.18649,1.09082,-1.50921,-1.36817,-0.26692,2.05059,0.00302
+2.18898,1.09037,-1.50949,-1.36806,-0.26674,2.05103,0.00302
+2.19147,1.08992,-1.50978,-1.36795,-0.26656,2.05147,0.00302
+2.19397,1.08949,-1.51005,-1.36784,-0.26639,2.05191,0.00302
+2.19646,1.08906,-1.51032,-1.36773,-0.26622,2.05233,0.00302
+2.19895,1.08863,-1.51060,-1.36762,-0.26605,2.05276,0.00302
+2.20145,1.08813,-1.51093,-1.36746,-0.26588,2.05326,0.00302
+2.20394,1.08763,-1.51126,-1.36730,-0.26571,2.05376,0.00302
+2.20643,1.08714,-1.51158,-1.36714,-0.26554,2.05424,0.00302
+2.20893,1.08666,-1.51189,-1.36698,-0.26538,2.05472,0.00302
+2.21142,1.08619,-1.51221,-1.36683,-0.26522,2.05519,0.00302
+2.21391,1.08572,-1.51251,-1.36668,-0.26506,2.05565,0.00302
+2.21640,1.08527,-1.51281,-1.36652,-0.26491,2.05611,0.00302
+2.21890,1.08482,-1.51311,-1.36638,-0.26476,2.05655,0.00302
+2.22139,1.08438,-1.51340,-1.36623,-0.26461,2.05699,0.00302
+2.22388,1.08395,-1.51368,-1.36608,-0.26447,2.05742,0.00302
+2.22638,1.08352,-1.51396,-1.36594,-0.26433,2.05784,0.00302
+2.22887,1.08335,-1.51408,-1.36588,-0.26427,2.05802,0.00302
+2.23136,1.08286,-1.51441,-1.36569,-0.26412,2.05851,0.00302
+2.23386,1.08238,-1.51473,-1.36551,-0.26398,2.05898,0.00302
+2.23635,1.08191,-1.51505,-1.36532,-0.26384,2.05945,0.00302
+2.23884,1.08144,-1.51537,-1.36514,-0.26370,2.05991,0.00302
+2.24134,1.08099,-1.51568,-1.36497,-0.26357,2.06037,0.00302
+2.24383,1.08054,-1.51598,-1.36479,-0.26344,2.06081,0.00302
+2.24632,1.08010,-1.51628,-1.36462,-0.26331,2.06125,0.00302
+2.24882,1.07967,-1.51657,-1.36444,-0.26318,2.06168,0.00302
+2.25131,1.07924,-1.51686,-1.36428,-0.26306,2.06211,0.00302
+2.25380,1.07906,-1.51698,-1.36420,-0.26301,2.06229,0.00302
+2.25630,1.07856,-1.51733,-1.36398,-0.26288,2.06279,0.00302
+2.25879,1.07806,-1.51768,-1.36376,-0.26275,2.06328,0.00302
+2.26128,1.07757,-1.51802,-1.36354,-0.26263,2.06377,0.00302
+2.26377,1.07709,-1.51835,-1.36332,-0.26251,2.06425,0.00302
+2.26627,1.07662,-1.51868,-1.36311,-0.26239,2.06472,0.00302
+2.26876,1.07615,-1.51900,-1.36290,-0.26227,2.06518,0.00302
+2.27125,1.07570,-1.51932,-1.36269,-0.26216,2.06564,0.00302
+2.27375,1.07525,-1.51963,-1.36249,-0.26205,2.06609,0.00302
+2.27624,1.07481,-1.51994,-1.36228,-0.26194,2.06653,0.00302
+2.27873,1.07437,-1.52024,-1.36209,-0.26183,2.06696,0.00302
+2.28123,1.07395,-1.52054,-1.36189,-0.26173,2.06738,0.00302
+2.28372,1.07365,-1.52075,-1.36175,-0.26165,2.06768,0.00302
+2.28621,1.07314,-1.52111,-1.36150,-0.26154,2.06819,0.00301
+2.28871,1.07265,-1.52146,-1.36125,-0.26144,2.06868,0.00301
+2.29120,1.07216,-1.52181,-1.36100,-0.26133,2.06917,0.00301
+2.29369,1.07168,-1.52215,-1.36076,-0.26123,2.06964,0.00301
+2.29619,1.07121,-1.52249,-1.36052,-0.26113,2.07011,0.00301
+2.29868,1.07075,-1.52282,-1.36029,-0.26103,2.07057,0.00301
+2.30117,1.07029,-1.52314,-1.36006,-0.26093,2.07102,0.00301
+2.30366,1.06985,-1.52346,-1.35983,-0.26084,2.07147,0.00301
+2.30616,1.06941,-1.52377,-1.35960,-0.26074,2.07191,0.00301
+2.30865,1.06898,-1.52408,-1.35938,-0.26065,2.07234,0.00301
+2.31114,1.06855,-1.52439,-1.35916,-0.26057,2.07276,0.00301
+2.31364,1.06825,-1.52460,-1.35900,-0.26051,2.07306,0.00301
+2.31613,1.06773,-1.52499,-1.35870,-0.26043,2.07358,0.00301
+2.31862,1.06722,-1.52536,-1.35839,-0.26035,2.07409,0.00301
+2.32112,1.06672,-1.52573,-1.35809,-0.26028,2.07459,0.00301
+2.32361,1.06623,-1.52609,-1.35780,-0.26020,2.07508,0.00301
+2.32610,1.06574,-1.52645,-1.35751,-0.26013,2.07556,0.00301
+2.32860,1.06527,-1.52680,-1.35723,-0.26006,2.07604,0.00301
+2.33109,1.06480,-1.52715,-1.35694,-0.26000,2.07650,0.00301
+2.33358,1.06434,-1.52749,-1.35667,-0.25993,2.07696,0.00300
+2.33608,1.06389,-1.52782,-1.35639,-0.25987,2.07741,0.00300
+2.33857,1.06344,-1.52815,-1.35612,-0.25980,2.07786,0.00300
+2.34106,1.06301,-1.52848,-1.35586,-0.25974,2.07829,0.00300
+2.34356,1.06258,-1.52880,-1.35559,-0.25968,2.07872,0.00300
+2.34605,1.06216,-1.52911,-1.35534,-0.25962,2.07914,0.00300
+2.34854,1.06178,-1.52939,-1.35510,-0.25957,2.07952,0.00300
+2.35103,1.06130,-1.52975,-1.35480,-0.25951,2.08000,0.00300
+2.35353,1.06083,-1.53011,-1.35451,-0.25945,2.08047,0.00300
+2.35602,1.06036,-1.53045,-1.35421,-0.25939,2.08093,0.00300
+2.35851,1.05991,-1.53080,-1.35393,-0.25933,2.08139,0.00300
+2.36101,1.05946,-1.53113,-1.35364,-0.25928,2.08183,0.00300
+2.36350,1.05902,-1.53146,-1.35336,-0.25922,2.08227,0.00300
+2.36599,1.05859,-1.53179,-1.35309,-0.25917,2.08270,0.00300
+2.36849,1.05817,-1.53211,-1.35282,-0.25912,2.08313,0.00300
+2.37098,1.05775,-1.53242,-1.35255,-0.25907,2.08355,0.00300
+2.37347,1.05744,-1.53266,-1.35235,-0.25903,2.08385,0.00300
+2.37597,1.05688,-1.53309,-1.35196,-0.25898,2.08441,0.00300
+2.37846,1.05632,-1.53352,-1.35157,-0.25894,2.08497,0.00299
+2.38095,1.05578,-1.53394,-1.35119,-0.25890,2.08551,0.00299
+2.38345,1.05524,-1.53436,-1.35081,-0.25885,2.08604,0.00299
+2.38594,1.05472,-1.53476,-1.35044,-0.25881,2.08657,0.00299
+2.38843,1.05420,-1.53517,-1.35008,-0.25877,2.08708,0.00299
+2.39092,1.05369,-1.53556,-1.34972,-0.25874,2.08759,0.00299
+2.39342,1.05319,-1.53595,-1.34936,-0.25870,2.08809,0.00299
+2.39591,1.05270,-1.53633,-1.34901,-0.25866,2.08858,0.00299
+2.39840,1.05222,-1.53671,-1.34867,-0.25863,2.08906,0.00299
+2.40090,1.05174,-1.53708,-1.34833,-0.25860,2.08954,0.00299
+2.40339,1.05128,-1.53744,-1.34799,-0.25856,2.09000,0.00299
+2.40588,1.05082,-1.53780,-1.34766,-0.25853,2.09046,0.00298
+2.40838,1.05037,-1.53815,-1.34734,-0.25850,2.09091,0.00298
+2.41087,1.04993,-1.53850,-1.34702,-0.25847,2.09135,0.00298
+2.41336,1.04949,-1.53884,-1.34670,-0.25845,2.09179,0.00298
+2.41586,1.04906,-1.53917,-1.34639,-0.25842,2.09221,0.00298
+2.41835,1.04864,-1.53950,-1.34608,-0.25839,2.09263,0.00298
+2.42084,1.04823,-1.53983,-1.34578,-0.25837,2.09305,0.00298
+2.42334,1.04782,-1.54015,-1.34548,-0.25834,2.09346,0.00298
+2.42583,1.04735,-1.54052,-1.34514,-0.25832,2.09393,0.00298
+2.42832,1.04689,-1.54089,-1.34480,-0.25829,2.09439,0.00298
+2.43082,1.04644,-1.54124,-1.34446,-0.25826,2.09484,0.00298
+2.43331,1.04599,-1.54160,-1.34414,-0.25823,2.09528,0.00298
+2.43580,1.04556,-1.54194,-1.34381,-0.25821,2.09572,0.00298
+2.43829,1.04513,-1.54228,-1.34349,-0.25818,2.09615,0.00297
+2.44079,1.04470,-1.54262,-1.34318,-0.25816,2.09657,0.00297
+2.44328,1.04429,-1.54295,-1.34287,-0.25814,2.09699,0.00297
+2.44577,1.04388,-1.54327,-1.34256,-0.25812,2.09740,0.00297
+2.44827,1.04359,-1.54350,-1.34234,-0.25810,2.09769,0.00297
+2.45076,1.04313,-1.54388,-1.34200,-0.25807,2.09815,0.00297
+2.45325,1.04267,-1.54424,-1.34165,-0.25805,2.09861,0.00297
+2.45575,1.04222,-1.54460,-1.34131,-0.25802,2.09906,0.00297
+2.45824,1.04178,-1.54496,-1.34098,-0.25800,2.09950,0.00297
+2.46073,1.04134,-1.54531,-1.34065,-0.25798,2.09994,0.00297
+2.46323,1.04092,-1.54565,-1.34033,-0.25796,2.10036,0.00297
+2.46572,1.04050,-1.54599,-1.34001,-0.25794,2.10078,0.00297
+2.46821,1.04008,-1.54632,-1.33969,-0.25792,2.10120,0.00296
+2.47071,1.03968,-1.54665,-1.33938,-0.25790,2.10160,0.00296
+2.47320,1.03935,-1.54691,-1.33913,-0.25788,2.10193,0.00296
+2.47569,1.03889,-1.54728,-1.33878,-0.25786,2.10239,0.00296
+2.47818,1.03844,-1.54765,-1.33843,-0.25784,2.10284,0.00296
+2.48068,1.03799,-1.54801,-1.33809,-0.25782,2.10329,0.00296
+2.48317,1.03755,-1.54837,-1.33775,-0.25780,2.10373,0.00296
+2.48566,1.03712,-1.54872,-1.33742,-0.25778,2.10416,0.00296
+2.48816,1.03670,-1.54906,-1.33709,-0.25776,2.10458,0.00296
+2.49065,1.03628,-1.54940,-1.33677,-0.25774,2.10500,0.00296
+2.49314,1.03587,-1.54973,-1.33645,-0.25772,2.10541,0.00296
+2.49564,1.03547,-1.55006,-1.33614,-0.25771,2.10581,0.00295
+2.49813,1.03518,-1.55029,-1.33592,-0.25769,2.10610,0.00295
+2.50062,1.03472,-1.55067,-1.33556,-0.25767,2.10656,0.00295
+2.50312,1.03427,-1.55104,-1.33521,-0.25765,2.10701,0.00295
+2.50561,1.03383,-1.55140,-1.33486,-0.25763,2.10745,0.00295
+2.50810,1.03339,-1.55176,-1.33452,-0.25762,2.10789,0.00295
+2.51060,1.03296,-1.55211,-1.33418,-0.25760,2.10832,0.00295
+2.51309,1.03254,-1.55246,-1.33385,-0.25758,2.10874,0.00295
+2.51558,1.03213,-1.55280,-1.33352,-0.25757,2.10915,0.00295
+2.51808,1.03172,-1.55313,-1.33320,-0.25755,2.10956,0.00295
+2.52057,1.03132,-1.55346,-1.33288,-0.25754,2.10996,0.00295
+2.52306,1.03104,-1.55370,-1.33266,-0.25753,2.11024,0.00294
+2.52555,1.03057,-1.55409,-1.33229,-0.25751,2.11072,0.00294
+2.52805,1.03010,-1.55447,-1.33192,-0.25749,2.11118,0.00294
+2.53054,1.02964,-1.55485,-1.33155,-0.25747,2.11164,0.00294
+2.53303,1.02919,-1.55523,-1.33120,-0.25745,2.11209,0.00294
+2.53553,1.02875,-1.55559,-1.33084,-0.25744,2.11253,0.00294
+2.53802,1.02832,-1.55595,-1.33050,-0.25742,2.11297,0.00294
+2.54051,1.02789,-1.55631,-1.33015,-0.25741,2.11339,0.00294
+2.54301,1.02747,-1.55666,-1.32982,-0.25739,2.11381,0.00294
+2.54550,1.02706,-1.55700,-1.32948,-0.25738,2.11423,0.00293
+2.54799,1.02665,-1.55734,-1.32916,-0.25737,2.11463,0.00293
+2.55049,1.02626,-1.55767,-1.32883,-0.25736,2.11503,0.00293
+2.55298,1.02589,-1.55797,-1.32854,-0.25735,2.11539,0.00293
+2.55547,1.02542,-1.55836,-1.32818,-0.25731,2.11586,0.00293
+2.55797,1.02496,-1.55875,-1.32783,-0.25728,2.11632,0.00293
+2.56046,1.02451,-1.55913,-1.32748,-0.25725,2.11678,0.00293
+2.56295,1.02406,-1.55950,-1.32714,-0.25722,2.11722,0.00293
+2.56545,1.02362,-1.55986,-1.32680,-0.25719,2.11766,0.00292
+2.56794,1.02319,-1.56022,-1.32647,-0.25716,2.11809,0.00292
+2.57043,1.02276,-1.56058,-1.32614,-0.25713,2.11852,0.00292
+2.57292,1.02235,-1.56093,-1.32582,-0.25710,2.11894,0.00292
+2.57542,1.02194,-1.56127,-1.32550,-0.25708,2.11934,0.00292
+2.57791,1.02154,-1.56161,-1.32518,-0.25706,2.11975,0.00292
+2.58040,1.02114,-1.56194,-1.32487,-0.25703,2.12014,0.00292
+2.58290,1.02081,-1.56222,-1.32461,-0.25701,2.12048,0.00292
+2.58539,1.02022,-1.56271,-1.32418,-0.25696,2.12106,0.00291
+2.58788,1.01965,-1.56319,-1.32375,-0.25690,2.12163,0.00291
+2.59038,1.01908,-1.56367,-1.32332,-0.25685,2.12220,0.00291
+2.59287,1.01852,-1.56413,-1.32290,-0.25680,2.12275,0.00291
+2.59536,1.01797,-1.56459,-1.32249,-0.25675,2.12330,0.00291
+2.59786,1.01744,-1.56505,-1.32208,-0.25670,2.12383,0.00291
+2.60035,1.01691,-1.56549,-1.32168,-0.25666,2.12436,0.00290
+2.60284,1.01639,-1.56593,-1.32128,-0.25662,2.12488,0.00290
+2.60534,1.01588,-1.56636,-1.32089,-0.25657,2.12539,0.00290
+2.60783,1.01538,-1.56679,-1.32051,-0.25653,2.12589,0.00290
+2.61032,1.01489,-1.56720,-1.32013,-0.25649,2.12638,0.00290
+2.61281,1.01440,-1.56761,-1.31975,-0.25646,2.12686,0.00290
+2.61531,1.01393,-1.56802,-1.31939,-0.25642,2.12733,0.00289
+2.61780,1.01346,-1.56841,-1.31902,-0.25638,2.12780,0.00289
+2.62029,1.01301,-1.56880,-1.31867,-0.25635,2.12826,0.00289
+2.62279,1.01256,-1.56919,-1.31831,-0.25632,2.12871,0.00289
+2.62528,1.01211,-1.56956,-1.31796,-0.25629,2.12915,0.00289
+2.62777,1.01168,-1.56994,-1.31762,-0.25626,2.12959,0.00289
+2.63027,1.01125,-1.57030,-1.31728,-0.25623,2.13001,0.00289
+2.63276,1.01083,-1.57066,-1.31695,-0.25620,2.13043,0.00289
+2.63525,1.01042,-1.57101,-1.31662,-0.25617,2.13085,0.00288
+2.63775,1.01001,-1.57136,-1.31630,-0.25615,2.13125,0.00288
+2.64024,1.00962,-1.57170,-1.31598,-0.25612,2.13165,0.00288
+2.64273,1.00923,-1.57204,-1.31567,-0.25610,2.13204,0.00288
+2.64523,1.00884,-1.57237,-1.31536,-0.25607,2.13243,0.00288
+2.64772,1.00876,-1.57244,-1.31529,-0.25607,2.13251,0.00288
+2.65021,1.00832,-1.57282,-1.31493,-0.25604,2.13296,0.00288
+2.65271,1.00788,-1.57320,-1.31458,-0.25602,2.13339,0.00288
+2.65520,1.00745,-1.57357,-1.31423,-0.25599,2.13382,0.00288
+2.65769,1.00703,-1.57393,-1.31389,-0.25597,2.13424,0.00287
+2.66018,1.00662,-1.57429,-1.31356,-0.25595,2.13465,0.00287
+2.66268,1.00621,-1.57464,-1.31322,-0.25593,2.13506,0.00287
+2.66517,1.00581,-1.57499,-1.31290,-0.25591,2.13546,0.00287
+2.66766,1.00542,-1.57533,-1.31257,-0.25589,2.13585,0.00287
+2.67016,1.00504,-1.57567,-1.31226,-0.25587,2.13624,0.00287
+2.67265,1.00476,-1.57590,-1.31203,-0.25585,2.13651,0.00287
+2.67514,1.00431,-1.57630,-1.31167,-0.25581,2.13697,0.00287
+2.67764,1.00386,-1.57669,-1.31132,-0.25577,2.13742,0.00287
+2.68013,1.00342,-1.57707,-1.31098,-0.25574,2.13786,0.00286
+2.68262,1.00298,-1.57745,-1.31063,-0.25570,2.13829,0.00286
+2.68512,1.00256,-1.57782,-1.31030,-0.25566,2.13872,0.00286
+2.68761,1.00214,-1.57818,-1.30997,-0.25563,2.13914,0.00286
+2.69010,1.00173,-1.57854,-1.30964,-0.25560,2.13955,0.00286
+2.69260,1.00132,-1.57889,-1.30932,-0.25557,2.13995,0.00286
+2.69509,1.00093,-1.57924,-1.30900,-0.25554,2.14035,0.00286
+2.69758,1.00054,-1.57958,-1.30869,-0.25551,2.14074,0.00286
+2.70007,1.00015,-1.57992,-1.30838,-0.25548,2.14113,0.00285
+2.70257,0.99985,-1.58018,-1.30813,-0.25546,2.14143,0.00285
+2.70506,0.99943,-1.58055,-1.30779,-0.25543,2.14185,0.00285
+2.70755,0.99901,-1.58092,-1.30745,-0.25540,2.14227,0.00285
+2.71005,0.99861,-1.58127,-1.30712,-0.25537,2.14267,0.00285
+2.71254,0.99821,-1.58162,-1.30680,-0.25534,2.14307,0.00285
+2.71503,0.99782,-1.58197,-1.30648,-0.25532,2.14347,0.00285
+2.71753,0.99743,-1.58231,-1.30616,-0.25530,2.14385,0.00285
+2.72002,0.99705,-1.58264,-1.30585,-0.25527,2.14423,0.00284
+2.72251,0.99693,-1.58275,-1.30575,-0.25527,2.14435,0.00284
+2.72501,0.99650,-1.58313,-1.30539,-0.25524,2.14479,0.00284
+2.72750,0.99607,-1.58351,-1.30503,-0.25521,2.14521,0.00284
+2.72999,0.99565,-1.58389,-1.30468,-0.25519,2.14564,0.00284
+2.73249,0.99524,-1.58425,-1.30434,-0.25517,2.14605,0.00284
+2.73498,0.99483,-1.58461,-1.30400,-0.25514,2.14645,0.00284
+2.73747,0.99443,-1.58497,-1.30366,-0.25512,2.14685,0.00284
+2.73997,0.99404,-1.58532,-1.30333,-0.25510,2.14725,0.00284
+2.74246,0.99365,-1.58566,-1.30300,-0.25508,2.14763,0.00283
+2.74495,0.99328,-1.58600,-1.30268,-0.25507,2.14801,0.00283
+2.74744,0.99301,-1.58624,-1.30246,-0.25505,2.14828,0.00283
+2.74994,0.99261,-1.58659,-1.30214,-0.25502,2.14868,0.00283
+2.75243,0.99222,-1.58694,-1.30183,-0.25498,2.14907,0.00283
+2.75492,0.99183,-1.58728,-1.30152,-0.25495,2.14946,0.00283
+2.75742,0.99145,-1.58762,-1.30121,-0.25491,2.14984,0.00283
+2.75991,0.99107,-1.58796,-1.30090,-0.25488,2.15022,0.00283
+2.76240,0.99064,-1.58834,-1.30055,-0.25485,2.15065,0.00283
+2.76490,0.99022,-1.58872,-1.30020,-0.25481,2.15107,0.00282
+2.76739,0.98980,-1.58910,-1.29986,-0.25478,2.15149,0.00282
+2.76988,0.98939,-1.58946,-1.29952,-0.25475,2.15190,0.00282
+2.77238,0.98899,-1.58982,-1.29919,-0.25472,2.15230,0.00282
+2.77487,0.98859,-1.59018,-1.29886,-0.25469,2.15270,0.00282
+2.77736,0.98821,-1.59053,-1.29854,-0.25467,2.15309,0.00282
+2.77986,0.98782,-1.59087,-1.29822,-0.25464,2.15347,0.00282
+2.78235,0.98745,-1.59121,-1.29791,-0.25462,2.15384,0.00282
+2.78484,0.98722,-1.59141,-1.29772,-0.25460,2.15407,0.00281
+2.78733,0.98679,-1.59180,-1.29736,-0.25457,2.15450,0.00281
+2.78983,0.98637,-1.59218,-1.29700,-0.25455,2.15492,0.00281
+2.79232,0.98596,-1.59256,-1.29665,-0.25452,2.15534,0.00281
+2.79481,0.98555,-1.59292,-1.29630,-0.25450,2.15574,0.00281
+2.79731,0.98515,-1.59329,-1.29596,-0.25447,2.15614,0.00281
+2.79980,0.98476,-1.59364,-1.29563,-0.25445,2.15654,0.00281
+2.80229,0.98437,-1.59399,-1.29530,-0.25443,2.15692,0.00281
+2.80479,0.98399,-1.59434,-1.29497,-0.25441,2.15730,0.00280
+2.80728,0.98362,-1.59468,-1.29465,-0.25439,2.15768,0.00280
+2.80977,0.98339,-1.59489,-1.29445,-0.25438,2.15790,0.00280
+2.81227,0.98297,-1.59528,-1.29408,-0.25436,2.15833,0.00280
+2.81476,0.98255,-1.59566,-1.29372,-0.25434,2.15875,0.00280
+2.81725,0.98214,-1.59604,-1.29336,-0.25432,2.15916,0.00280
+2.81975,0.98173,-1.59641,-1.29301,-0.25430,2.15956,0.00280
+2.82224,0.98133,-1.59677,-1.29266,-0.25428,2.15996,0.00280
+2.82473,0.98094,-1.59713,-1.29231,-0.25427,2.16035,0.00280
+2.82723,0.98056,-1.59748,-1.29197,-0.25425,2.16074,0.00279
+2.82972,0.98018,-1.59783,-1.29164,-0.25424,2.16111,0.00279
+2.83221,0.97981,-1.59817,-1.29131,-0.25422,2.16148,0.00279
+2.83470,0.97958,-1.59839,-1.29110,-0.25422,2.16172,0.00279
+2.83720,0.97906,-1.59887,-1.29064,-0.25419,2.16224,0.00279
+2.83969,0.97855,-1.59934,-1.29019,-0.25417,2.16275,0.00279
+2.84218,0.97805,-1.59980,-1.28974,-0.25416,2.16325,0.00279
+2.84468,0.97755,-1.60026,-1.28930,-0.25414,2.16374,0.00278
+2.84717,0.97707,-1.60071,-1.28887,-0.25412,2.16422,0.00278
+2.84966,0.97659,-1.60115,-1.28844,-0.25411,2.16470,0.00278
+2.85216,0.97613,-1.60159,-1.28801,-0.25409,2.16516,0.00278
+2.85465,0.97567,-1.60202,-1.28760,-0.25408,2.16562,0.00278
+2.85714,0.97522,-1.60244,-1.28719,-0.25407,2.16607,0.00278
+2.85964,0.97477,-1.60285,-1.28678,-0.25406,2.16652,0.00278
+2.86213,0.97434,-1.60326,-1.28639,-0.25405,2.16695,0.00277
+2.86462,0.97391,-1.60366,-1.28599,-0.25404,2.16738,0.00277
+2.86712,0.97349,-1.60405,-1.28561,-0.25403,2.16780,0.00277
+2.86961,0.97308,-1.60444,-1.28522,-0.25402,2.16821,0.00277
+2.87210,0.97267,-1.60482,-1.28485,-0.25402,2.16862,0.00277
+2.87459,0.97227,-1.60519,-1.28448,-0.25401,2.16901,0.00277
+2.87709,0.97188,-1.60556,-1.28411,-0.25400,2.16941,0.00277
+2.87958,0.97150,-1.60593,-1.28375,-0.25400,2.16979,0.00277
+2.88207,0.97112,-1.60628,-1.28340,-0.25400,2.17017,0.00277
+2.88457,0.97075,-1.60663,-1.28305,-0.25399,2.17054,0.00276
+2.88706,0.97039,-1.60698,-1.28270,-0.25399,2.17091,0.00276
+2.88955,0.97013,-1.60722,-1.28246,-0.25399,2.17116,0.00276
+2.89205,0.96971,-1.60762,-1.28207,-0.25399,2.17158,0.00276
+2.89454,0.96930,-1.60801,-1.28168,-0.25398,2.17199,0.00276
+2.89703,0.96890,-1.60839,-1.28130,-0.25398,2.17239,0.00276
+2.89953,0.96851,-1.60876,-1.28093,-0.25398,2.17279,0.00276
+2.90202,0.96812,-1.60913,-1.28055,-0.25398,2.17318,0.00276
+2.90451,0.96774,-1.60950,-1.28019,-0.25398,2.17356,0.00276
+2.90701,0.96736,-1.60986,-1.27983,-0.25398,2.17394,0.00275
+2.90950,0.96699,-1.61021,-1.27948,-0.25398,2.17430,0.00275
+2.91199,0.96663,-1.61055,-1.27913,-0.25398,2.17467,0.00275
+2.91449,0.96641,-1.61077,-1.27891,-0.25398,2.17489,0.00275
+2.91698,0.96593,-1.61123,-1.27845,-0.25398,2.17537,0.00275
+2.91947,0.96546,-1.61168,-1.27801,-0.25398,2.17584,0.00275
+2.92196,0.96500,-1.61212,-1.27756,-0.25398,2.17630,0.00275
+2.92446,0.96455,-1.61255,-1.27713,-0.25397,2.17675,0.00275
+2.92695,0.96410,-1.61298,-1.27670,-0.25398,2.17719,0.00274
+2.92944,0.96367,-1.61340,-1.27628,-0.25398,2.17763,0.00274
+2.93194,0.96324,-1.61381,-1.27586,-0.25398,2.17806,0.00274
+2.93443,0.96282,-1.61422,-1.27545,-0.25398,2.17848,0.00274
+2.93692,0.96240,-1.61462,-1.27504,-0.25398,2.17889,0.00274
+2.93942,0.96200,-1.61501,-1.27464,-0.25399,2.17930,0.00274
+2.94191,0.96160,-1.61540,-1.27425,-0.25399,2.17970,0.00274
+2.94440,0.96121,-1.61578,-1.27386,-0.25400,2.18009,0.00274
+2.94690,0.96082,-1.61615,-1.27348,-0.25401,2.18048,0.00273
+2.94939,0.96044,-1.61652,-1.27311,-0.25401,2.18086,0.00273
+2.95188,0.96007,-1.61689,-1.27273,-0.25402,2.18123,0.00273
+2.95438,0.95971,-1.61724,-1.27237,-0.25403,2.18160,0.00273
+2.95687,0.95935,-1.61759,-1.27201,-0.25404,2.18196,0.00273
+2.95936,0.95903,-1.61791,-1.27169,-0.25404,2.18228,0.00273
+2.96185,0.95865,-1.61828,-1.27131,-0.25405,2.18266,0.00273
+2.96435,0.95828,-1.61864,-1.27093,-0.25406,2.18303,0.00273
+2.96684,0.95791,-1.61900,-1.27057,-0.25407,2.18339,0.00273
+2.96933,0.95756,-1.61935,-1.27020,-0.25408,2.18375,0.00272
+2.97183,0.95720,-1.61969,-1.26985,-0.25409,2.18411,0.00272
+2.97432,0.95717,-1.61973,-1.26981,-0.25409,2.18414,0.00272
+2.97681,0.95679,-1.62010,-1.26943,-0.25410,2.18452,0.00272
+2.97931,0.95642,-1.62046,-1.26905,-0.25411,2.18489,0.00272
+2.98180,0.95606,-1.62082,-1.26868,-0.25412,2.18526,0.00272
+2.98429,0.95570,-1.62117,-1.26832,-0.25413,2.18561,0.00272
+2.98679,0.95535,-1.62152,-1.26796,-0.25414,2.18597,0.00272
+2.98928,0.95497,-1.62189,-1.26757,-0.25415,2.18634,0.00272
+2.99177,0.95460,-1.62226,-1.26720,-0.25416,2.18671,0.00272
+2.99427,0.95424,-1.62262,-1.26682,-0.25418,2.18708,0.00271
+2.99676,0.95388,-1.62297,-1.26646,-0.25419,2.18743,0.00271
+2.99925,0.95353,-1.62332,-1.26610,-0.25420,2.18778,0.00271
+3.00175,0.95318,-1.62367,-1.26573,-0.25421,2.18814,0.00271
+3.00424,0.95282,-1.62402,-1.26536,-0.25423,2.18850,0.00271
+3.00673,0.95261,-1.62423,-1.26514,-0.25424,2.18871,0.00271
+3.00922,0.95225,-1.62459,-1.26477,-0.25425,2.18907,0.00271
+3.01172,0.95190,-1.62494,-1.26441,-0.25426,2.18942,0.00271
+3.01421,0.95173,-1.62511,-1.26423,-0.25427,2.18959,0.00271
+3.01670,0.95137,-1.62547,-1.26385,-0.25428,2.18995,0.00271
+3.01920,0.95102,-1.62582,-1.26349,-0.25430,2.19031,0.00271
+3.02169,0.95081,-1.62603,-1.26327,-0.25431,2.19052,0.00270
+3.02418,0.95045,-1.62639,-1.26290,-0.25432,2.19087,0.00270
+3.02668,0.95010,-1.62674,-1.26253,-0.25433,2.19122,0.00270
+3.02917,0.94989,-1.62695,-1.26231,-0.25434,2.19143,0.00270
+3.03166,0.94954,-1.62731,-1.26194,-0.25436,2.19179,0.00270
+3.03416,0.94919,-1.62766,-1.26157,-0.25437,2.19214,0.00270
+3.03665,0.94901,-1.62783,-1.26138,-0.25438,2.19232,0.00270
+3.03914,0.94866,-1.62819,-1.26101,-0.25440,2.19267,0.00270
+3.04164,0.94831,-1.62854,-1.26064,-0.25441,2.19302,0.00270
+3.04413,0.94810,-1.62875,-1.26043,-0.25442,2.19323,0.00270
+3.04662,0.94811,-1.62874,-1.26049,-0.25437,2.19323,0.00270
+3.04911,0.94817,-1.62860,-1.26108,-0.25393,2.19317,0.00269
+3.05161,0.94822,-1.62848,-1.26155,-0.25357,2.19312,0.00269
+3.05410,0.94834,-1.62828,-1.26224,-0.25309,2.19301,0.00269
+3.05659,0.94845,-1.62808,-1.26292,-0.25262,2.19290,0.00269
+3.05909,0.94857,-1.62788,-1.26359,-0.25216,2.19279,0.00269
+3.06158,0.94868,-1.62769,-1.26425,-0.25170,2.19269,0.00268
+3.06407,0.94879,-1.62749,-1.26489,-0.25125,2.19258,0.00268
+3.06657,0.94890,-1.62730,-1.26553,-0.25081,2.19248,0.00268
+3.06906,0.94900,-1.62712,-1.26616,-0.25037,2.19238,0.00268
+3.07155,0.94911,-1.62693,-1.26677,-0.24994,2.19228,0.00268
+3.07405,0.94921,-1.62675,-1.26738,-0.24952,2.19218,0.00268
+3.07654,0.94925,-1.62669,-1.26757,-0.24939,2.19214,0.00268
+3.07903,0.94941,-1.62645,-1.26826,-0.24895,2.19198,0.00268
+3.08153,0.94957,-1.62621,-1.26895,-0.24851,2.19183,0.00267
+3.08402,0.94973,-1.62597,-1.26962,-0.24808,2.19168,0.00267
+3.08651,0.94988,-1.62574,-1.27028,-0.24766,2.19153,0.00267
+3.08901,0.95004,-1.62551,-1.27093,-0.24724,2.19138,0.00267
+3.09150,0.95018,-1.62528,-1.27157,-0.24683,2.19123,0.00267
+3.09399,0.95033,-1.62506,-1.27220,-0.24642,2.19109,0.00267
+3.09648,0.95048,-1.62484,-1.27282,-0.24603,2.19095,0.00267
+3.09898,0.95054,-1.62474,-1.27309,-0.24586,2.19089,0.00267
+3.10147,0.95078,-1.62443,-1.27386,-0.24541,2.19066,0.00267
+3.10396,0.95100,-1.62412,-1.27462,-0.24496,2.19044,0.00267
+3.10646,0.95123,-1.62381,-1.27537,-0.24452,2.19022,0.00267
+3.10895,0.95145,-1.62351,-1.27611,-0.24408,2.19000,0.00267
+3.11144,0.95167,-1.62321,-1.27684,-0.24366,2.18979,0.00267
+3.11394,0.95188,-1.62292,-1.27756,-0.24324,2.18958,0.00267
+3.11643,0.95209,-1.62263,-1.27826,-0.24282,2.18937,0.00267
+3.11892,0.95230,-1.62235,-1.27895,-0.24242,2.18917,0.00267
+3.12142,0.95250,-1.62207,-1.27964,-0.24202,2.18897,0.00267
+3.12391,0.95270,-1.62180,-1.28031,-0.24162,2.18877,0.00267
+3.12640,0.95290,-1.62152,-1.28097,-0.24124,2.18858,0.00267
+3.12890,0.95309,-1.62126,-1.28162,-0.24085,2.18838,0.00267
+3.13139,0.95328,-1.62100,-1.28226,-0.24048,2.18820,0.00267
+3.13388,0.95347,-1.62074,-1.28289,-0.24011,2.18801,0.00267
+3.13637,0.95366,-1.62048,-1.28351,-0.23975,2.18783,0.00267
+3.13887,0.95372,-1.62040,-1.28371,-0.23963,2.18777,0.00267
+3.14136,0.95398,-1.62007,-1.28445,-0.23923,2.18751,0.00267
+3.14385,0.95423,-1.61974,-1.28518,-0.23883,2.18726,0.00267
+3.14635,0.95448,-1.61942,-1.28589,-0.23844,2.18702,0.00267
+3.14884,0.95472,-1.61910,-1.28660,-0.23805,2.18678,0.00268
+3.15133,0.95496,-1.61879,-1.28729,-0.23767,2.18654,0.00268
+3.15383,0.95520,-1.61848,-1.28798,-0.23729,2.18630,0.00268
+3.15632,0.95543,-1.61818,-1.28865,-0.23693,2.18607,0.00268
+3.15881,0.95566,-1.61788,-1.28931,-0.23656,2.18585,0.00268
+3.16131,0.95589,-1.61759,-1.28996,-0.23621,2.18562,0.00268
+3.16380,0.95611,-1.61730,-1.29060,-0.23586,2.18540,0.00268
+3.16629,0.95633,-1.61701,-1.29124,-0.23551,2.18519,0.00268
+3.16879,0.95654,-1.61673,-1.29186,-0.23517,2.18497,0.00268
+3.17128,0.95676,-1.61645,-1.29248,-0.23483,2.18476,0.00268
+3.17377,0.95706,-1.61608,-1.29323,-0.23445,2.18446,0.00269
+3.17627,0.95736,-1.61572,-1.29397,-0.23408,2.18417,0.00269
+3.17876,0.95765,-1.61536,-1.29469,-0.23371,2.18388,0.00269
+3.18125,0.95793,-1.61501,-1.29541,-0.23335,2.18360,0.00269
+3.18374,0.95821,-1.61466,-1.29611,-0.23300,2.18332,0.00269
+3.18624,0.95849,-1.61432,-1.29680,-0.23265,2.18304,0.00269
+3.18873,0.95876,-1.61399,-1.29748,-0.23231,2.18277,0.00269
+3.19122,0.95903,-1.61366,-1.29815,-0.23197,2.18251,0.00270
+3.19372,0.95929,-1.61333,-1.29881,-0.23164,2.18225,0.00270
+3.19621,0.95955,-1.61301,-1.29945,-0.23131,2.18199,0.00270
+3.19870,0.95981,-1.61270,-1.30009,-0.23098,2.18174,0.00270
+3.20120,0.96006,-1.61239,-1.30072,-0.23067,2.18149,0.00270
+3.20369,0.96030,-1.61208,-1.30134,-0.23035,2.18124,0.00270
+3.20618,0.96055,-1.61178,-1.30195,-0.23005,2.18100,0.00271
+3.20868,0.96078,-1.61149,-1.30254,-0.22974,2.18076,0.00271
+3.21117,0.96081,-1.61145,-1.30261,-0.22971,2.18073,0.00271
+3.21366,0.96109,-1.61112,-1.30326,-0.22940,2.18046,0.00271
+3.21616,0.96137,-1.61078,-1.30390,-0.22909,2.18018,0.00271
+3.21865,0.96164,-1.61046,-1.30453,-0.22879,2.17991,0.00271
+3.22114,0.96191,-1.61013,-1.30515,-0.22849,2.17964,0.00271
+3.22364,0.96217,-1.60982,-1.30576,-0.22820,2.17938,0.00272
+3.22613,0.96243,-1.60951,-1.30636,-0.22791,2.17912,0.00272
+3.22862,0.96268,-1.60920,-1.30696,-0.22762,2.17887,0.00272
+3.23111,0.96279,-1.60907,-1.30720,-0.22751,2.17876,0.00272
+3.23361,0.96308,-1.60872,-1.30786,-0.22720,2.17847,0.00272
+3.23610,0.96337,-1.60838,-1.30851,-0.22689,2.17818,0.00272
+3.23859,0.96366,-1.60804,-1.30915,-0.22659,2.17790,0.00273
+3.24109,0.96394,-1.60771,-1.30978,-0.22629,2.17762,0.00273
+3.24358,0.96422,-1.60738,-1.31040,-0.22600,2.17734,0.00273
+3.24607,0.96449,-1.60706,-1.31101,-0.22571,2.17707,0.00273
+3.24857,0.96476,-1.60674,-1.31161,-0.22543,2.17680,0.00273
+3.25106,0.96502,-1.60643,-1.31220,-0.22515,2.17654,0.00274
+3.25355,0.96528,-1.60612,-1.31279,-0.22487,2.17628,0.00274
+3.25605,0.96558,-1.60577,-1.31343,-0.22459,2.17598,0.00274
+3.25854,0.96588,-1.60542,-1.31405,-0.22431,2.17568,0.00274
+3.26103,0.96617,-1.60508,-1.31467,-0.22403,2.17539,0.00274
+3.26353,0.96646,-1.60475,-1.31527,-0.22376,2.17511,0.00275
+3.26602,0.96674,-1.60442,-1.31587,-0.22349,2.17482,0.00275
+3.26851,0.96702,-1.60410,-1.31645,-0.22323,2.17455,0.00275
+3.27100,0.96729,-1.60378,-1.31703,-0.22297,2.17427,0.00275
+3.27350,0.96746,-1.60359,-1.31738,-0.22281,2.17411,0.00275
+3.27599,0.96779,-1.60321,-1.31804,-0.22252,2.17378,0.00275
+3.27848,0.96811,-1.60285,-1.31869,-0.22224,2.17346,0.00276
+3.28098,0.96843,-1.60248,-1.31933,-0.22197,2.17314,0.00276
+3.28347,0.96874,-1.60213,-1.31996,-0.22170,2.17283,0.00276
+3.28596,0.96905,-1.60178,-1.32057,-0.22143,2.17252,0.00276
+3.28846,0.96935,-1.60143,-1.32118,-0.22116,2.17222,0.00277
+3.29095,0.96965,-1.60109,-1.32178,-0.22090,2.17192,0.00277
+3.29344,0.96994,-1.60076,-1.32237,-0.22065,2.17163,0.00277
+3.29594,0.97023,-1.60043,-1.32295,-0.22040,2.17134,0.00277
+3.29843,0.97051,-1.60011,-1.32352,-0.22015,2.17106,0.00277
+3.30092,0.97078,-1.59980,-1.32405,-0.21993,2.17079,0.00278
+3.30342,0.97123,-1.59932,-1.32481,-0.21964,2.17034,0.00278
+3.30591,0.97167,-1.59884,-1.32557,-0.21936,2.16990,0.00278
+3.30840,0.97210,-1.59838,-1.32631,-0.21909,2.16947,0.00278
+3.31090,0.97253,-1.59792,-1.32705,-0.21882,2.16905,0.00279
+3.31339,0.97295,-1.59746,-1.32777,-0.21855,2.16863,0.00279
+3.31588,0.97336,-1.59702,-1.32847,-0.21829,2.16822,0.00279
+3.31837,0.97376,-1.59658,-1.32917,-0.21803,2.16781,0.00279
+3.32087,0.97416,-1.59615,-1.32986,-0.21777,2.16742,0.00280
+3.32336,0.97456,-1.59572,-1.33053,-0.21752,2.16702,0.00280
+3.32585,0.97494,-1.59530,-1.33120,-0.21728,2.16664,0.00280
+3.32835,0.97532,-1.59489,-1.33185,-0.21703,2.16626,0.00280
+3.33084,0.97570,-1.59449,-1.33249,-0.21679,2.16588,0.00281
+3.33333,0.97607,-1.59409,-1.33313,-0.21656,2.16552,0.00281
+3.33583,0.97643,-1.59370,-1.33375,-0.21632,2.16515,0.00281
+3.33832,0.97678,-1.59332,-1.33436,-0.21610,2.16480,0.00281
+3.34081,0.97714,-1.59294,-1.33497,-0.21587,2.16445,0.00282
+3.34331,0.97748,-1.59257,-1.33556,-0.21565,2.16410,0.00282
+3.34580,0.97782,-1.59220,-1.33615,-0.21543,2.16376,0.00282
+3.34829,0.97815,-1.59184,-1.33672,-0.21521,2.16343,0.00282
+3.35079,0.97848,-1.59149,-1.33729,-0.21500,2.16310,0.00283
+3.35328,0.97881,-1.59114,-1.33784,-0.21479,2.16278,0.00283
+3.35577,0.97912,-1.59080,-1.33839,-0.21459,2.16246,0.00283
+3.35826,0.97944,-1.59046,-1.33893,-0.21439,2.16214,0.00283
+3.36076,0.97974,-1.59013,-1.33946,-0.21419,2.16184,0.00283
+3.36325,0.97984,-1.59002,-1.33963,-0.21412,2.16173,0.00284
+3.36574,0.98024,-1.58960,-1.34027,-0.21390,2.16134,0.00284
+3.36824,0.98063,-1.58919,-1.34090,-0.21368,2.16095,0.00284
+3.37073,0.98101,-1.58879,-1.34153,-0.21346,2.16056,0.00284
+3.37322,0.98139,-1.58839,-1.34214,-0.21325,2.16019,0.00284
+3.37572,0.98176,-1.58800,-1.34274,-0.21303,2.15981,0.00285
+3.37821,0.98213,-1.58761,-1.34333,-0.21283,2.15945,0.00285
+3.38070,0.98249,-1.58723,-1.34392,-0.21262,2.15909,0.00285
+3.38320,0.98284,-1.58686,-1.34449,-0.21242,2.15873,0.00285
+3.38569,0.98319,-1.58649,-1.34506,-0.21222,2.15839,0.00286
+3.38818,0.98353,-1.58613,-1.34561,-0.21202,2.15804,0.00286
+3.39068,0.98387,-1.58578,-1.34616,-0.21183,2.15771,0.00286
+3.39317,0.98420,-1.58543,-1.34670,-0.21164,2.15737,0.00286
+3.39566,0.98453,-1.58509,-1.34723,-0.21145,2.15705,0.00287
+3.39816,0.98485,-1.58475,-1.34775,-0.21127,2.15672,0.00287
+3.40065,0.98514,-1.58444,-1.34822,-0.21110,2.15643,0.00287
+3.40314,0.98557,-1.58401,-1.34887,-0.21090,2.15600,0.00287
+3.40563,0.98598,-1.58358,-1.34950,-0.21069,2.15559,0.00288
+3.40813,0.98639,-1.58316,-1.35012,-0.21049,2.15518,0.00288
+3.41062,0.98680,-1.58274,-1.35073,-0.21029,2.15478,0.00288
+3.41311,0.98719,-1.58234,-1.35133,-0.21010,2.15438,0.00288
+3.41561,0.98758,-1.58194,-1.35192,-0.20991,2.15399,0.00288
+3.41810,0.98797,-1.58154,-1.35251,-0.20972,2.15360,0.00289
+3.42059,0.98835,-1.58116,-1.35308,-0.20953,2.15323,0.00289
+3.42309,0.98872,-1.58078,-1.35364,-0.20935,2.15285,0.00289
+3.42558,0.98908,-1.58040,-1.35420,-0.20917,2.15249,0.00289
+3.42807,0.98944,-1.58003,-1.35474,-0.20899,2.15213,0.00290
+3.43057,0.98980,-1.57967,-1.35528,-0.20882,2.15177,0.00290
+3.43306,0.99015,-1.57931,-1.35581,-0.20864,2.15142,0.00290
+3.43555,0.99049,-1.57896,-1.35633,-0.20847,2.15108,0.00290
+3.43805,0.99082,-1.57862,-1.35684,-0.20830,2.15074,0.00291
+3.44054,0.99116,-1.57828,-1.35735,-0.20814,2.15041,0.00291
+3.44303,0.99146,-1.57797,-1.35780,-0.20799,2.15010,0.00291
+3.44552,0.99188,-1.57755,-1.35841,-0.20780,2.14969,0.00291
+3.44802,0.99229,-1.57713,-1.35901,-0.20762,2.14927,0.00291
+3.45051,0.99269,-1.57673,-1.35961,-0.20743,2.14887,0.00292
+3.45300,0.99309,-1.57633,-1.36019,-0.20725,2.14847,0.00292
+3.45550,0.99349,-1.57593,-1.36076,-0.20708,2.14808,0.00292
+3.45799,0.99387,-1.57554,-1.36132,-0.20690,2.14769,0.00292
+3.46048,0.99425,-1.57516,-1.36187,-0.20673,2.14731,0.00293
+3.46298,0.99462,-1.57479,-1.36242,-0.20656,2.14694,0.00293
+3.46547,0.99499,-1.57442,-1.36296,-0.20639,2.14657,0.00293
+3.46796,0.99535,-1.57406,-1.36348,-0.20623,2.14621,0.00293
+3.47046,0.99571,-1.57370,-1.36400,-0.20606,2.14585,0.00293
+3.47295,0.99606,-1.57335,-1.36451,-0.20590,2.14550,0.00294
+3.47544,0.99640,-1.57300,-1.36501,-0.20575,2.14515,0.00294
+3.47794,0.99674,-1.57266,-1.36551,-0.20559,2.14481,0.00294
+3.48043,0.99708,-1.57232,-1.36601,-0.20544,2.14447,0.00294
+3.48292,0.99751,-1.57190,-1.36661,-0.20526,2.14405,0.00295
+3.48542,0.99793,-1.57149,-1.36720,-0.20508,2.14363,0.00295
+3.48791,0.99834,-1.57108,-1.36778,-0.20491,2.14321,0.00295
+3.49040,0.99874,-1.57068,-1.36835,-0.20474,2.14281,0.00295
+3.49289,0.99914,-1.57029,-1.36891,-0.20457,2.14241,0.00295
+3.49539,0.99954,-1.56990,-1.36946,-0.20440,2.14202,0.00296
+3.49788,0.99992,-1.56952,-1.37001,-0.20424,2.14163,0.00296
+3.50037,1.00030,-1.56915,-1.37054,-0.20408,2.14125,0.00296
+3.50287,1.00067,-1.56878,-1.37107,-0.20392,2.14087,0.00296
+3.50536,1.00104,-1.56841,-1.37159,-0.20376,2.14051,0.00297
+3.50785,1.00140,-1.56806,-1.37210,-0.20361,2.14014,0.00297
+3.51035,1.00176,-1.56771,-1.37260,-0.20346,2.13979,0.00297
+3.51284,1.00211,-1.56736,-1.37309,-0.20331,2.13944,0.00297
+3.51533,1.00245,-1.56703,-1.37358,-0.20316,2.13909,0.00297
+3.51783,1.00277,-1.56672,-1.37402,-0.20303,2.13878,0.00298
+3.52032,1.00317,-1.56633,-1.37456,-0.20288,2.13838,0.00298
+3.52281,1.00356,-1.56595,-1.37510,-0.20272,2.13798,0.00298
+3.52531,1.00395,-1.56557,-1.37562,-0.20257,2.13759,0.00298
+3.52780,1.00433,-1.56520,-1.37614,-0.20242,2.13721,0.00298
+3.53029,1.00470,-1.56484,-1.37665,-0.20228,2.13684,0.00299
+3.53278,1.00507,-1.56448,-1.37715,-0.20213,2.13647,0.00299
+3.53528,1.00543,-1.56413,-1.37765,-0.20199,2.13610,0.00299
+3.53777,1.00579,-1.56378,-1.37813,-0.20185,2.13575,0.00299
+3.54026,1.00614,-1.56344,-1.37861,-0.20171,2.13539,0.00299
+3.54276,1.00648,-1.56311,-1.37908,-0.20158,2.13505,0.00300
+3.54525,1.00656,-1.56304,-1.37918,-0.20155,2.13497,0.00300
+3.54774,1.00695,-1.56266,-1.37970,-0.20140,2.13459,0.00300
+3.55024,1.00733,-1.56229,-1.38022,-0.20126,2.13420,0.00300
+3.55273,1.00770,-1.56193,-1.38072,-0.20111,2.13383,0.00300
+3.55522,1.00807,-1.56158,-1.38122,-0.20097,2.13346,0.00300
+3.55772,1.00844,-1.56123,-1.38171,-0.20083,2.13309,0.00301
+3.56021,1.00879,-1.56088,-1.38219,-0.20070,2.13273,0.00301
+3.56270,1.00915,-1.56054,-1.38266,-0.20056,2.13238,0.00301
+3.56520,1.00947,-1.56024,-1.38309,-0.20044,2.13206,0.00301
+3.56769,1.00989,-1.55983,-1.38366,-0.20028,2.13163,0.00301
+3.57018,1.01031,-1.55943,-1.38421,-0.20013,2.13121,0.00302
+3.57268,1.01072,-1.55904,-1.38476,-0.19997,2.13080,0.00302
+3.57517,1.01112,-1.55866,-1.38529,-0.19982,2.13040,0.00302
+3.57766,1.01152,-1.55828,-1.38582,-0.19967,2.13000,0.00302
+3.58015,1.01191,-1.55791,-1.38634,-0.19952,2.12961,0.00302
+3.58265,1.01229,-1.55754,-1.38686,-0.19938,2.12922,0.00303
+3.58514,1.01267,-1.55718,-1.38736,-0.19923,2.12884,0.00303
+3.58763,1.01304,-1.55683,-1.38786,-0.19909,2.12847,0.00303
+3.59013,1.01341,-1.55648,-1.38834,-0.19895,2.12810,0.00303
+3.59262,1.01377,-1.55614,-1.38882,-0.19882,2.12774,0.00303
+3.59511,1.01413,-1.55580,-1.38930,-0.19868,2.12739,0.00304
+3.59761,1.01448,-1.55546,-1.38977,-0.19855,2.12703,0.00304
+3.60010,1.01487,-1.55509,-1.39026,-0.19842,2.12664,0.00304
+3.60259,1.01526,-1.55473,-1.39075,-0.19830,2.12625,0.00304
+3.60509,1.01564,-1.55437,-1.39123,-0.19817,2.12587,0.00304
+3.60758,1.01602,-1.55402,-1.39170,-0.19805,2.12549,0.00305
+3.61007,1.01639,-1.55368,-1.39217,-0.19793,2.12512,0.00305
+3.61257,1.01675,-1.55334,-1.39263,-0.19781,2.12475,0.00305
+3.61506,1.01711,-1.55300,-1.39308,-0.19770,2.12440,0.00305
+3.61755,1.01718,-1.55293,-1.39317,-0.19767,2.12432,0.00305
+3.62004,1.01758,-1.55256,-1.39368,-0.19754,2.12392,0.00305
+3.62254,1.01798,-1.55219,-1.39417,-0.19742,2.12352,0.00306
+3.62503,1.01836,-1.55183,-1.39465,-0.19729,2.12314,0.00306
+3.62752,1.01875,-1.55148,-1.39513,-0.19717,2.12275,0.00306
+3.63002,1.01912,-1.55113,-1.39560,-0.19705,2.12238,0.00306
+3.63251,1.01949,-1.55078,-1.39606,-0.19693,2.12201,0.00306
+3.63500,1.01985,-1.55045,-1.39652,-0.19682,2.12164,0.00307
+3.63750,1.02018,-1.55014,-1.39693,-0.19671,2.12131,0.00307
+3.63999,1.02060,-1.54975,-1.39746,-0.19657,2.12089,0.00307
+3.64248,1.02101,-1.54937,-1.39799,-0.19643,2.12048,0.00307
+3.64498,1.02142,-1.54899,-1.39850,-0.19629,2.12007,0.00307
+3.64747,1.02182,-1.54862,-1.39901,-0.19615,2.11967,0.00307
+3.64996,1.02221,-1.54826,-1.39951,-0.19602,2.11928,0.00308
+3.65246,1.02260,-1.54790,-1.40000,-0.19588,2.11889,0.00308
+3.65495,1.02298,-1.54755,-1.40048,-0.19575,2.11851,0.00308
+3.65744,1.02335,-1.54721,-1.40096,-0.19563,2.11813,0.00308
+3.65994,1.02372,-1.54686,-1.40142,-0.19550,2.11776,0.00308
+3.66243,1.02408,-1.54653,-1.40188,-0.19537,2.11740,0.00309
+3.66492,1.02441,-1.54623,-1.40230,-0.19526,2.11707,0.00309
+3.66741,1.02483,-1.54584,-1.40282,-0.19513,2.11665,0.00309
+3.66991,1.02524,-1.54547,-1.40332,-0.19500,2.11624,0.00309
+3.67240,1.02565,-1.54510,-1.40383,-0.19487,2.11583,0.00309
+3.67489,1.02605,-1.54473,-1.40432,-0.19474,2.11543,0.00309
+3.67739,1.02644,-1.54437,-1.40480,-0.19462,2.11504,0.00310
+3.67988,1.02683,-1.54402,-1.40528,-0.19449,2.11465,0.00310
+3.68237,1.02721,-1.54367,-1.40575,-0.19437,2.11427,0.00310
+3.68487,1.02758,-1.54333,-1.40621,-0.19425,2.11389,0.00310
+3.68736,1.02795,-1.54299,-1.40667,-0.19413,2.11352,0.00310
+3.68985,1.02831,-1.54266,-1.40711,-0.19402,2.11316,0.00311
+3.69235,1.02835,-1.54263,-1.40716,-0.19400,2.11312,0.00311
+3.69484,1.02876,-1.54226,-1.40766,-0.19388,2.11271,0.00311
+3.69733,1.02916,-1.54189,-1.40815,-0.19375,2.11231,0.00311
+3.69983,1.02956,-1.54154,-1.40863,-0.19363,2.11192,0.00311
+3.70232,1.02994,-1.54119,-1.40911,-0.19351,2.11153,0.00311
+3.70481,1.03032,-1.54084,-1.40957,-0.19339,2.11115,0.00311
+3.70730,1.03070,-1.54050,-1.41003,-0.19327,2.11077,0.00312
+3.70980,1.03107,-1.54017,-1.41048,-0.19315,2.11040,0.00312
+3.71229,1.03144,-1.53983,-1.41093,-0.19304,2.11003,0.00312
+3.71478,1.03188,-1.53943,-1.41145,-0.19291,2.10958,0.00312
+3.71728,1.03232,-1.53904,-1.41197,-0.19279,2.10915,0.00312
+3.71977,1.03275,-1.53866,-1.41247,-0.19267,2.10872,0.00313
+3.72226,1.03317,-1.53828,-1.41297,-0.19256,2.10829,0.00313
+3.72476,1.03359,-1.53791,-1.41345,-0.19244,2.10788,0.00313
+3.72725,1.03399,-1.53755,-1.41393,-0.19233,2.10747,0.00313
+3.72974,1.03440,-1.53719,-1.41441,-0.19221,2.10707,0.00313
+3.73224,1.03479,-1.53683,-1.41487,-0.19210,2.10667,0.00314
+3.73473,1.03518,-1.53649,-1.41533,-0.19199,2.10628,0.00314
+3.73722,1.03556,-1.53614,-1.41578,-0.19188,2.10589,0.00314
+3.73972,1.03594,-1.53581,-1.41622,-0.19178,2.10552,0.00314
+3.74221,1.03631,-1.53548,-1.41666,-0.19167,2.10514,0.00314
+3.74470,1.03643,-1.53538,-1.41679,-0.19164,2.10503,0.00314
+3.74720,1.03682,-1.53503,-1.41724,-0.19154,2.10463,0.00314
+3.74969,1.03721,-1.53468,-1.41768,-0.19145,2.10424,0.00315
+3.75218,1.03760,-1.53434,-1.41812,-0.19135,2.10385,0.00315
+3.75467,1.03798,-1.53401,-1.41855,-0.19125,2.10347,0.00315
+3.75717,1.03832,-1.53371,-1.41893,-0.19117,2.10313,0.00315
+3.75966,1.03870,-1.53337,-1.41936,-0.19108,2.10275,0.00315
+3.76215,1.03908,-1.53304,-1.41979,-0.19099,2.10237,0.00316
+3.76465,1.03931,-1.53284,-1.42004,-0.19094,2.10214,0.00316
+3.76714,1.03969,-1.53250,-1.42046,-0.19085,2.10176,0.00316
+3.76963,1.04007,-1.53217,-1.42088,-0.19076,2.10137,0.00316
+3.77213,1.04026,-1.53200,-1.42109,-0.19072,2.10118,0.00316
+3.77462,1.04065,-1.53166,-1.42151,-0.19064,2.10080,0.00316
+3.77711,1.04103,-1.53133,-1.42192,-0.19056,2.10041,0.00316
+3.77961,1.04126,-1.53113,-1.42217,-0.19051,2.10018,0.00317
+3.78210,1.04165,-1.53080,-1.42259,-0.19043,2.09979,0.00317
+3.78459,1.04203,-1.53046,-1.42299,-0.19036,2.09941,0.00317
+3.78709,1.04223,-1.53030,-1.42320,-0.19032,2.09922,0.00317
+3.78958,1.04263,-1.52994,-1.42364,-0.19023,2.09881,0.00317
+3.79207,1.04304,-1.52959,-1.42408,-0.19014,2.09840,0.00317
+3.79456,1.04343,-1.52925,-1.42451,-0.19006,2.09801,0.00318
+3.79706,1.04382,-1.52891,-1.42493,-0.18997,2.09762,0.00318
+3.79955,1.04421,-1.52858,-1.42535,-0.18989,2.09723,0.00318
+3.80204,1.04443,-1.52838,-1.42560,-0.18984,2.09700,0.00318
+3.80454,1.04482,-1.52804,-1.42602,-0.18976,2.09661,0.00318
+3.80703,1.04521,-1.52771,-1.42643,-0.18968,2.09623,0.00318
+3.80952,1.04544,-1.52751,-1.42667,-0.18963,2.09600,0.00319
+3.81202,1.04583,-1.52718,-1.42709,-0.18956,2.09560,0.00319
+3.81451,1.04622,-1.52685,-1.42749,-0.18948,2.09522,0.00319
+3.81700,1.04641,-1.52668,-1.42769,-0.18945,2.09502,0.00319
+3.81950,1.04680,-1.52634,-1.42810,-0.18937,2.09463,0.00319
+3.82199,1.04719,-1.52601,-1.42851,-0.18930,2.09424,0.00319
+3.82448,1.04743,-1.52581,-1.42875,-0.18926,2.09400,0.00319
+3.82698,1.04784,-1.52546,-1.42919,-0.18918,2.09359,0.00320
+3.82947,1.04824,-1.52511,-1.42962,-0.18910,2.09318,0.00320
+3.83196,1.04864,-1.52477,-1.43004,-0.18902,2.09278,0.00320
+3.83446,1.04904,-1.52443,-1.43046,-0.18894,2.09239,0.00320
+3.83695,1.04942,-1.52410,-1.43087,-0.18886,2.09200,0.00320
+3.83944,1.04962,-1.52394,-1.43108,-0.18882,2.09181,0.00320
+3.84193,1.05005,-1.52357,-1.43155,-0.18871,2.09138,0.00321
+3.84443,1.05047,-1.52321,-1.43202,-0.18861,2.09095,0.00321
+3.84692,1.05089,-1.52285,-1.43248,-0.18850,2.09054,0.00321
+3.84941,1.05130,-1.52250,-1.43293,-0.18840,2.09013,0.00321
+3.85191,1.05170,-1.52215,-1.43338,-0.18830,2.08972,0.00321
+3.85440,1.05210,-1.52182,-1.43382,-0.18820,2.08932,0.00321
+3.85689,1.05249,-1.52148,-1.43425,-0.18810,2.08893,0.00322
+3.85939,1.05287,-1.52115,-1.43467,-0.18801,2.08855,0.00322
+3.86188,1.05310,-1.52096,-1.43493,-0.18795,2.08832,0.00322
+3.86437,1.05351,-1.52061,-1.43537,-0.18786,2.08791,0.00322
+3.86687,1.05391,-1.52027,-1.43580,-0.18777,2.08750,0.00322
+3.86936,1.05431,-1.51993,-1.43622,-0.18768,2.08711,0.00322
+3.87185,1.05470,-1.51960,-1.43664,-0.18760,2.08672,0.00322
+3.87435,1.05509,-1.51928,-1.43705,-0.18751,2.08633,0.00323
+3.87684,1.05548,-1.51894,-1.43747,-0.18743,2.08593,0.00323
+3.87933,1.05587,-1.51861,-1.43788,-0.18735,2.08554,0.00323
+3.88182,1.05607,-1.51845,-1.43809,-0.18731,2.08535,0.00323
+3.88432,1.05648,-1.51810,-1.43851,-0.18723,2.08493,0.00323
+3.88681,1.05689,-1.51776,-1.43893,-0.18716,2.08452,0.00323
+3.88930,1.05729,-1.51742,-1.43934,-0.18709,2.08412,0.00324
+3.89180,1.05769,-1.51709,-1.43974,-0.18701,2.08372,0.00324
+3.89429,1.05808,-1.51676,-1.44014,-0.18694,2.08333,0.00324
+3.89678,1.05835,-1.51654,-1.44044,-0.18687,2.08306,0.00324
+3.89928,1.05872,-1.51621,-1.44093,-0.18671,2.08269,0.00324
+3.90177,1.05909,-1.51589,-1.44140,-0.18656,2.08231,0.00324
+3.90426,1.05946,-1.51558,-1.44187,-0.18641,2.08195,0.00324
+3.90676,1.05956,-1.51548,-1.44204,-0.18634,2.08184,0.00324
+3.90925,1.05991,-1.51514,-1.44279,-0.18593,2.08149,0.00324
+3.91174,1.06026,-1.51481,-1.44353,-0.18553,2.08114,0.00324
+3.91424,1.06060,-1.51448,-1.44425,-0.18514,2.08079,0.00324
+3.91673,1.06093,-1.51416,-1.44497,-0.18475,2.08046,0.00324
+3.91922,1.06126,-1.51384,-1.44567,-0.18437,2.08012,0.00324
+3.92172,1.06158,-1.51353,-1.44636,-0.18399,2.07980,0.00324
+3.92421,1.06190,-1.51323,-1.44704,-0.18362,2.07948,0.00324
+3.92670,1.06221,-1.51292,-1.44771,-0.18326,2.07916,0.00324
+3.92919,1.06252,-1.51263,-1.44837,-0.18290,2.07885,0.00324
+3.93169,1.06282,-1.51234,-1.44902,-0.18255,2.07854,0.00324
+3.93418,1.06312,-1.51205,-1.44965,-0.18221,2.07824,0.00324
+3.93667,1.06342,-1.51176,-1.45028,-0.18187,2.07794,0.00324
+3.93917,1.06371,-1.51149,-1.45090,-0.18153,2.07765,0.00324
+3.94166,1.06399,-1.51121,-1.45150,-0.18121,2.07736,0.00324
+3.94415,1.06427,-1.51094,-1.45210,-0.18088,2.07707,0.00324
+3.94665,1.06455,-1.51068,-1.45268,-0.18057,2.07679,0.00324
+3.94914,1.06482,-1.51042,-1.45326,-0.18025,2.07652,0.00325
+3.95163,1.06508,-1.51016,-1.45383,-0.17995,2.07625,0.00325
+3.95413,1.06535,-1.50991,-1.45439,-0.17964,2.07598,0.00325
+3.95662,1.06537,-1.50988,-1.45447,-0.17959,2.07596,0.00325
+3.95911,1.06560,-1.50962,-1.45527,-0.17905,2.07572,0.00325
+3.96161,1.06583,-1.50936,-1.45607,-0.17852,2.07548,0.00324
+3.96410,1.06606,-1.50911,-1.45685,-0.17799,2.07525,0.00324
+3.96659,1.06628,-1.50886,-1.45762,-0.17748,2.07502,0.00324
+3.96909,1.06650,-1.50862,-1.45837,-0.17698,2.07479,0.00324
+3.97158,1.06672,-1.50838,-1.45911,-0.17648,2.07457,0.00324
+3.97407,1.06693,-1.50814,-1.45984,-0.17599,2.07435,0.00324
+3.97656,1.06714,-1.50791,-1.46056,-0.17551,2.07414,0.00324
+3.97906,1.06735,-1.50768,-1.46127,-0.17504,2.07392,0.00324
+3.98155,1.06755,-1.50745,-1.46196,-0.17457,2.07371,0.00324
+3.98404,1.06775,-1.50723,-1.46264,-0.17412,2.07351,0.00324
+3.98654,1.06795,-1.50701,-1.46332,-0.17367,2.07331,0.00324
+3.98903,1.06814,-1.50679,-1.46398,-0.17323,2.07311,0.00324
+3.99152,1.06833,-1.50658,-1.46463,-0.17279,2.07291,0.00324
+3.99402,1.06852,-1.50637,-1.46527,-0.17237,2.07272,0.00324
+3.99651,1.06870,-1.50617,-1.46590,-0.17195,2.07253,0.00324
+3.99900,1.06889,-1.50596,-1.46651,-0.17153,2.07234,0.00324
+4.00150,1.06907,-1.50576,-1.46712,-0.17113,2.07215,0.00324
+4.00399,1.06924,-1.50557,-1.46772,-0.17073,2.07197,0.00324
+4.00648,1.06942,-1.50537,-1.46831,-0.17034,2.07179,0.00324
+4.00898,1.06959,-1.50518,-1.46889,-0.16995,2.07161,0.00324
+4.01147,1.06975,-1.50499,-1.46947,-0.16956,2.07144,0.00324
+4.01396,1.06990,-1.50481,-1.47019,-0.16903,2.07129,0.00324
+4.01645,1.07004,-1.50462,-1.47090,-0.16851,2.07114,0.00324
+4.01895,1.07018,-1.50444,-1.47160,-0.16799,2.07100,0.00324
+4.02144,1.07031,-1.50427,-1.47228,-0.16749,2.07085,0.00324
+4.02393,1.07045,-1.50409,-1.47296,-0.16699,2.07071,0.00324
+4.02643,1.07058,-1.50392,-1.47362,-0.16651,2.07057,0.00324
+4.02892,1.07071,-1.50375,-1.47427,-0.16603,2.07044,0.00324
+4.03141,1.07084,-1.50358,-1.47491,-0.16556,2.07030,0.00324
+4.03391,1.07097,-1.50341,-1.47554,-0.16510,2.07017,0.00324
+4.03640,1.07109,-1.50325,-1.47616,-0.16464,2.07003,0.00324
+4.03889,1.07122,-1.50309,-1.47677,-0.16419,2.06991,0.00324
+4.04139,1.07134,-1.50293,-1.47737,-0.16375,2.06978,0.00324
+4.04388,1.07146,-1.50278,-1.47796,-0.16332,2.06965,0.00324
+4.04637,1.07158,-1.50263,-1.47854,-0.16290,2.06953,0.00324
+4.04887,1.07169,-1.50248,-1.47911,-0.16248,2.06941,0.00324
+4.05136,1.07181,-1.50233,-1.47967,-0.16207,2.06928,0.00324
+4.05385,1.07184,-1.50228,-1.47985,-0.16193,2.06925,0.00324
+4.05635,1.07193,-1.50214,-1.48054,-0.16139,2.06915,0.00324
+4.05884,1.07202,-1.50200,-1.48122,-0.16086,2.06906,0.00324
+4.06133,1.07211,-1.50186,-1.48189,-0.16033,2.06896,0.00324
+4.06382,1.07219,-1.50172,-1.48254,-0.15982,2.06887,0.00324
+4.06632,1.07228,-1.50158,-1.48319,-0.15931,2.06878,0.00324
+4.06881,1.07236,-1.50145,-1.48382,-0.15881,2.06869,0.00324
+4.07130,1.07245,-1.50132,-1.48445,-0.15833,2.06860,0.00324
+4.07380,1.07253,-1.50119,-1.48506,-0.15784,2.06851,0.00324
+4.07629,1.07261,-1.50106,-1.48566,-0.15737,2.06842,0.00324
+4.07878,1.07269,-1.50093,-1.48625,-0.15691,2.06833,0.00324
+4.08128,1.07277,-1.50081,-1.48684,-0.15645,2.06825,0.00325
+4.08377,1.07284,-1.50069,-1.48741,-0.15600,2.06817,0.00325
+4.08626,1.07292,-1.50056,-1.48797,-0.15556,2.06808,0.00325
+4.08876,1.07300,-1.50044,-1.48853,-0.15513,2.06800,0.00325
+4.09125,1.07307,-1.50033,-1.48907,-0.15470,2.06792,0.00325
+4.09374,1.07307,-1.50032,-1.48914,-0.15464,2.06792,0.00325
+4.09624,1.07313,-1.50020,-1.48980,-0.15410,2.06786,0.00325
+4.09873,1.07318,-1.50009,-1.49044,-0.15357,2.06780,0.00325
+4.10122,1.07323,-1.49998,-1.49108,-0.15305,2.06774,0.00325
+4.10371,1.07328,-1.49988,-1.49170,-0.15253,2.06769,0.00325
+4.10621,1.07333,-1.49977,-1.49231,-0.15203,2.06763,0.00325
+4.10870,1.07337,-1.49967,-1.49292,-0.15153,2.06758,0.00325
+4.11119,1.07342,-1.49956,-1.49351,-0.15104,2.06752,0.00325
+4.11369,1.07347,-1.49946,-1.49409,-0.15056,2.06747,0.00325
+4.11618,1.07352,-1.49936,-1.49467,-0.15009,2.06741,0.00325
+4.11867,1.07356,-1.49926,-1.49523,-0.14963,2.06736,0.00325
+4.12117,1.07361,-1.49917,-1.49578,-0.14917,2.06731,0.00325
+4.12366,1.07365,-1.49907,-1.49633,-0.14872,2.06726,0.00325
+4.12615,1.07370,-1.49898,-1.49687,-0.14828,2.06721,0.00325
+4.12865,1.07373,-1.49891,-1.49725,-0.14797,2.06717,0.00325
+4.13114,1.07377,-1.49881,-1.49786,-0.14745,2.06713,0.00325
+4.13363,1.07381,-1.49871,-1.49847,-0.14695,2.06708,0.00325
+4.13613,1.07385,-1.49862,-1.49906,-0.14645,2.06703,0.00325
+4.13862,1.07389,-1.49852,-1.49965,-0.14596,2.06699,0.00325
+4.14111,1.07393,-1.49843,-1.50022,-0.14548,2.06694,0.00325
+4.14361,1.07397,-1.49834,-1.50079,-0.14501,2.06690,0.00325
+4.14610,1.07401,-1.49824,-1.50134,-0.14454,2.06685,0.00325
+4.14859,1.07404,-1.49815,-1.50189,-0.14409,2.06681,0.00325
+4.15108,1.07408,-1.49807,-1.50243,-0.14364,2.06676,0.00325
+4.15358,1.07412,-1.49798,-1.50296,-0.14320,2.06672,0.00325
+4.15607,1.07414,-1.49793,-1.50323,-0.14297,2.06670,0.00325
+4.15856,1.07417,-1.49784,-1.50386,-0.14244,2.06666,0.00325
+4.16106,1.07420,-1.49775,-1.50448,-0.14191,2.06662,0.00326
+4.16355,1.07424,-1.49766,-1.50508,-0.14140,2.06658,0.00326
+4.16604,1.07427,-1.49757,-1.50568,-0.14089,2.06654,0.00326
+4.16854,1.07430,-1.49748,-1.50627,-0.14039,2.06650,0.00326
+4.17103,1.07433,-1.49739,-1.50685,-0.13990,2.06647,0.00326
+4.17352,1.07437,-1.49730,-1.50742,-0.13942,2.06643,0.00326
+4.17602,1.07440,-1.49722,-1.50797,-0.13895,2.06639,0.00326
+4.17851,1.07443,-1.49714,-1.50852,-0.13848,2.06635,0.00326
+4.18100,1.07446,-1.49705,-1.50906,-0.13803,2.06632,0.00326
+4.18350,1.07449,-1.49697,-1.50959,-0.13758,2.06628,0.00326
+4.18599,1.07452,-1.49689,-1.51012,-0.13714,2.06625,0.00326
+4.18848,1.07453,-1.49687,-1.51028,-0.13700,2.06624,0.00326
+4.19097,1.07456,-1.49678,-1.51089,-0.13648,2.06620,0.00326
+4.19347,1.07458,-1.49670,-1.51148,-0.13597,2.06617,0.00326
+4.19596,1.07461,-1.49661,-1.51206,-0.13547,2.06614,0.00326
+4.19845,1.07464,-1.49653,-1.51264,-0.13498,2.06610,0.00326
+4.20095,1.07466,-1.49645,-1.51320,-0.13449,2.06607,0.00326
+4.20344,1.07469,-1.49637,-1.51376,-0.13402,2.06604,0.00326
+4.20593,1.07472,-1.49629,-1.51431,-0.13355,2.06601,0.00326
+4.20843,1.07474,-1.49622,-1.51484,-0.13309,2.06598,0.00326
+4.21092,1.07477,-1.49614,-1.51537,-0.13264,2.06595,0.00326
+4.21341,1.07479,-1.49606,-1.51589,-0.13220,2.06592,0.00327
+4.21591,1.07480,-1.49603,-1.51611,-0.13201,2.06590,0.00327
+4.21840,1.07482,-1.49595,-1.51673,-0.13147,2.06588,0.00327
+4.22089,1.07485,-1.49587,-1.51734,-0.13094,2.06585,0.00327
+4.22339,1.07487,-1.49579,-1.51793,-0.13043,2.06582,0.00327
+4.22588,1.07489,-1.49572,-1.51852,-0.12992,2.06579,0.00327
+4.22837,1.07491,-1.49564,-1.51910,-0.12941,2.06577,0.00327
+4.23087,1.07493,-1.49556,-1.51967,-0.12892,2.06574,0.00327
+4.23336,1.07495,-1.49549,-1.52023,-0.12844,2.06571,0.00327
+4.23585,1.07498,-1.49542,-1.52078,-0.12796,2.06569,0.00327
+4.23834,1.07500,-1.49534,-1.52132,-0.12749,2.06566,0.00327
+4.24084,1.07502,-1.49527,-1.52185,-0.12703,2.06563,0.00327
+4.24333,1.07504,-1.49520,-1.52237,-0.12658,2.06561,0.00327
+4.24582,1.07506,-1.49513,-1.52289,-0.12614,2.06558,0.00327
+4.24832,1.07506,-1.49511,-1.52306,-0.12599,2.06557,0.00327
+4.25081,1.07508,-1.49503,-1.52371,-0.12542,2.06555,0.00327
+4.25330,1.07510,-1.49495,-1.52435,-0.12486,2.06553,0.00327
+4.25580,1.07511,-1.49488,-1.52498,-0.12430,2.06551,0.00327
+4.25829,1.07513,-1.49480,-1.52560,-0.12376,2.06548,0.00327
+4.26078,1.07515,-1.49473,-1.52621,-0.12322,2.06546,0.00327
+4.26328,1.07516,-1.49466,-1.52681,-0.12270,2.06544,0.00327
+4.26577,1.07518,-1.49459,-1.52739,-0.12218,2.06542,0.00327
+4.26826,1.07520,-1.49452,-1.52797,-0.12168,2.06540,0.00327
+4.27076,1.07521,-1.49445,-1.52854,-0.12118,2.06537,0.00327
+4.27325,1.07523,-1.49438,-1.52910,-0.12069,2.06535,0.00328
+4.27574,1.07525,-1.49431,-1.52965,-0.12020,2.06533,0.00328
+4.27823,1.07526,-1.49424,-1.53019,-0.11973,2.06531,0.00328
+4.28073,1.07528,-1.49418,-1.53072,-0.11926,2.06529,0.00328
+4.28322,1.07529,-1.49411,-1.53124,-0.11881,2.06527,0.00328
+4.28571,1.07531,-1.49405,-1.53176,-0.11836,2.06525,0.00328
+4.28821,1.07532,-1.49400,-1.53217,-0.11799,2.06523,0.00328
+4.29070,1.07531,-1.49395,-1.53275,-0.11747,2.06523,0.00328
+4.29319,1.07531,-1.49389,-1.53332,-0.11695,2.06523,0.00328
+4.29569,1.07531,-1.49384,-1.53388,-0.11645,2.06523,0.00328
+4.29818,1.07530,-1.49379,-1.53443,-0.11595,2.06523,0.00328
+4.30067,1.07530,-1.49374,-1.53497,-0.11546,2.06523,0.00328
+4.30317,1.07530,-1.49369,-1.53550,-0.11498,2.06522,0.00328
+4.30566,1.07529,-1.49364,-1.53602,-0.11450,2.06522,0.00328
+4.30815,1.07529,-1.49359,-1.53654,-0.11404,2.06522,0.00328
+4.31065,1.07529,-1.49354,-1.53704,-0.11358,2.06522,0.00328
+4.31314,1.07528,-1.49349,-1.53754,-0.11313,2.06522,0.00329
+4.31563,1.07528,-1.49348,-1.53770,-0.11299,2.06522,0.00329
+4.31813,1.07528,-1.49343,-1.53827,-0.11247,2.06521,0.00329
+4.32062,1.07527,-1.49338,-1.53884,-0.11195,2.06521,0.00329
+4.32311,1.07527,-1.49332,-1.53940,-0.11144,2.06521,0.00329
+4.32560,1.07527,-1.49327,-1.53995,-0.11094,2.06521,0.00329
+4.32810,1.07526,-1.49323,-1.54049,-0.11045,2.06521,0.00329
+4.33059,1.07526,-1.49318,-1.54102,-0.10997,2.06521,0.00329
+4.33308,1.07526,-1.49313,-1.54154,-0.10950,2.06520,0.00329
+4.33558,1.07526,-1.49308,-1.54205,-0.10903,2.06520,0.00329
+4.33807,1.07525,-1.49303,-1.54256,-0.10857,2.06520,0.00329
+4.34056,1.07525,-1.49299,-1.54305,-0.10812,2.06520,0.00329
+4.34306,1.07525,-1.49297,-1.54321,-0.10798,2.06520,0.00329
+4.34555,1.07525,-1.49292,-1.54379,-0.10745,2.06519,0.00329
+4.34804,1.07524,-1.49287,-1.54436,-0.10694,2.06519,0.00329
+4.35054,1.07524,-1.49283,-1.54491,-0.10643,2.06519,0.00329
+4.35303,1.07524,-1.49278,-1.54546,-0.10593,2.06519,0.00329
+4.35552,1.07523,-1.49273,-1.54600,-0.10544,2.06519,0.00329
+4.35802,1.07523,-1.49268,-1.54653,-0.10495,2.06518,0.00329
+4.36051,1.07523,-1.49264,-1.54705,-0.10448,2.06518,0.00329
+4.36300,1.07522,-1.49259,-1.54756,-0.10401,2.06518,0.00330
+4.36549,1.07522,-1.49255,-1.54807,-0.10355,2.06518,0.00330
+4.36799,1.07522,-1.49250,-1.54856,-0.10310,2.06517,0.00330
+4.37048,1.07522,-1.49248,-1.54876,-0.10292,2.06517,0.00330
+4.37297,1.07522,-1.49244,-1.54932,-0.10241,2.06517,0.00330
+4.37547,1.07521,-1.49239,-1.54987,-0.10191,2.06517,0.00330
+4.37796,1.07521,-1.49234,-1.55040,-0.10142,2.06517,0.00330
+4.38045,1.07521,-1.49230,-1.55093,-0.10093,2.06517,0.00330
+4.38295,1.07521,-1.49225,-1.55145,-0.10046,2.06516,0.00330
+4.38544,1.07520,-1.49221,-1.55196,-0.09999,2.06516,0.00330
+4.38793,1.07520,-1.49216,-1.55247,-0.09953,2.06516,0.00330
+4.39043,1.07520,-1.49212,-1.55296,-0.09908,2.06515,0.00330
+4.39292,1.07520,-1.49210,-1.55316,-0.09890,2.06515,0.00330
+4.39541,1.07520,-1.49206,-1.55372,-0.09839,2.06515,0.00330
+4.39791,1.07519,-1.49201,-1.55426,-0.09789,2.06515,0.00330
+4.40040,1.07519,-1.49197,-1.55480,-0.09739,2.06515,0.00330
+4.40289,1.07519,-1.49192,-1.55533,-0.09691,2.06515,0.00330
+4.40539,1.07519,-1.49188,-1.55585,-0.09644,2.06514,0.00331
+4.40788,1.07518,-1.49184,-1.55636,-0.09597,2.06514,0.00331
+4.41037,1.07518,-1.49180,-1.55686,-0.09551,2.06514,0.00331
+4.41286,1.07518,-1.49175,-1.55735,-0.09506,2.06513,0.00331
+4.41536,1.07518,-1.49173,-1.55760,-0.09483,2.06513,0.00331
+4.41785,1.07518,-1.49169,-1.55815,-0.09432,2.06513,0.00331
+4.42034,1.07517,-1.49165,-1.55870,-0.09382,2.06513,0.00331
+4.42284,1.07517,-1.49160,-1.55923,-0.09333,2.06513,0.00331
+4.42533,1.07517,-1.49156,-1.55976,-0.09284,2.06512,0.00331
+4.42782,1.07517,-1.49152,-1.56027,-0.09237,2.06512,0.00331
+4.43032,1.07517,-1.49148,-1.56078,-0.09190,2.06512,0.00331
+4.43281,1.07516,-1.49144,-1.56128,-0.09144,2.06512,0.00331
+4.43530,1.07516,-1.49140,-1.56177,-0.09099,2.06511,0.00331
+4.43780,1.07516,-1.49138,-1.56197,-0.09081,2.06511,0.00331
+4.44029,1.07516,-1.49134,-1.56252,-0.09030,2.06511,0.00331
+4.44278,1.07516,-1.49130,-1.56307,-0.08980,2.06511,0.00331
+4.44528,1.07515,-1.49125,-1.56360,-0.08930,2.06510,0.00331
+4.44777,1.07515,-1.49121,-1.56412,-0.08882,2.06510,0.00331
+4.45026,1.07515,-1.49117,-1.56464,-0.08834,2.06510,0.00332
+4.45275,1.07515,-1.49113,-1.56515,-0.08788,2.06510,0.00332
+4.45525,1.07515,-1.49109,-1.56564,-0.08742,2.06509,0.00332
+4.45774,1.07515,-1.49106,-1.56613,-0.08697,2.06509,0.00332
+4.46023,1.07514,-1.49104,-1.56634,-0.08677,2.06509,0.00332
+4.46273,1.07512,-1.49101,-1.56695,-0.08619,2.06511,0.00332
+4.46522,1.07510,-1.49098,-1.56755,-0.08562,2.06512,0.00332
+4.46771,1.07508,-1.49096,-1.56814,-0.08506,2.06514,0.00332
+4.47021,1.07506,-1.49093,-1.56872,-0.08451,2.06516,0.00332
+4.47270,1.07504,-1.49090,-1.56929,-0.08397,2.06517,0.00332
+4.47519,1.07502,-1.49087,-1.56985,-0.08343,2.06519,0.00332
+4.47769,1.07500,-1.49085,-1.57041,-0.08291,2.06520,0.00332
+4.48018,1.07498,-1.49082,-1.57095,-0.08239,2.06521,0.00332
+4.48267,1.07496,-1.49079,-1.57148,-0.08189,2.06523,0.00332
+4.48517,1.07494,-1.49077,-1.57200,-0.08139,2.06524,0.00332
+4.48766,1.07493,-1.49074,-1.57252,-0.08090,2.06525,0.00332
+4.49015,1.07491,-1.49072,-1.57302,-0.08042,2.06526,0.00332
+4.49265,1.07489,-1.49069,-1.57352,-0.07995,2.06528,0.00332
+4.49514,1.07488,-1.49067,-1.57401,-0.07949,2.06529,0.00332
+4.49763,1.07486,-1.49064,-1.57449,-0.07903,2.06530,0.00332
+4.50012,1.07485,-1.49062,-1.57482,-0.07871,2.06531,0.00332
+4.50262,1.07484,-1.49060,-1.57533,-0.07823,2.06532,0.00332
+4.50511,1.07482,-1.49057,-1.57582,-0.07777,2.06533,0.00332
+4.50760,1.07481,-1.49055,-1.57631,-0.07730,2.06534,0.00332
+4.51010,1.07479,-1.49052,-1.57678,-0.07685,2.06535,0.00332
+4.51259,1.07479,-1.49051,-1.57693,-0.07671,2.06535,0.00332
+4.51508,1.07477,-1.49049,-1.57745,-0.07622,2.06536,0.00333
+4.51758,1.07476,-1.49046,-1.57796,-0.07573,2.06537,0.00333
+4.52007,1.07474,-1.49044,-1.57847,-0.07525,2.06538,0.00333
+4.52256,1.07473,-1.49041,-1.57896,-0.07478,2.06539,0.00333
+4.52506,1.07472,-1.49039,-1.57945,-0.07432,2.06540,0.00333
+4.52755,1.07470,-1.49036,-1.57993,-0.07387,2.06541,0.00333
+4.53004,1.07470,-1.49035,-1.58012,-0.07368,2.06541,0.00333
+4.53254,1.07466,-1.49034,-1.58065,-0.07316,2.06544,0.00333
+4.53503,1.07463,-1.49033,-1.58116,-0.07266,2.06547,0.00333
+4.53752,1.07460,-1.49032,-1.58167,-0.07216,2.06549,0.00333
+4.54001,1.07457,-1.49031,-1.58217,-0.07167,2.06552,0.00333
+4.54251,1.07454,-1.49030,-1.58266,-0.07119,2.06554,0.00333
+4.54500,1.07451,-1.49028,-1.58315,-0.07072,2.06557,0.00333
+4.54749,1.07448,-1.49027,-1.58362,-0.07026,2.06559,0.00333
+4.54999,1.07446,-1.49026,-1.58409,-0.06980,2.06561,0.00333
+4.55248,1.07444,-1.49026,-1.58428,-0.06962,2.06562,0.00333
+4.55497,1.07440,-1.49026,-1.58477,-0.06912,2.06566,0.00333
+4.55747,1.07435,-1.49026,-1.58526,-0.06863,2.06570,0.00333
+4.55996,1.07431,-1.49026,-1.58574,-0.06815,2.06574,0.00333
+4.56245,1.07427,-1.49026,-1.58622,-0.06767,2.06578,0.00333
+4.56495,1.07422,-1.49026,-1.58668,-0.06721,2.06582,0.00333
+4.56744,1.07418,-1.49026,-1.58714,-0.06675,2.06586,0.00333
+4.56993,1.07416,-1.49027,-1.58736,-0.06652,2.06588,0.00333
+4.57243,1.07408,-1.49029,-1.58786,-0.06600,2.06595,0.00333
+4.57492,1.07400,-1.49032,-1.58834,-0.06549,2.06602,0.00333
+4.57741,1.07393,-1.49035,-1.58881,-0.06499,2.06609,0.00333
+4.57991,1.07385,-1.49037,-1.58928,-0.06450,2.06616,0.00333
+4.58240,1.07378,-1.49040,-1.58974,-0.06401,2.06623,0.00333
+4.58489,1.07371,-1.49042,-1.59019,-0.06354,2.06629,0.00333
+4.58738,1.07364,-1.49044,-1.59063,-0.06307,2.06636,0.00334
+4.58988,1.07357,-1.49047,-1.59107,-0.06261,2.06642,0.00334
+4.59237,1.07352,-1.49049,-1.59134,-0.06232,2.06647,0.00334
+4.59486,1.07340,-1.49055,-1.59194,-0.06166,2.06658,0.00333
+4.59736,1.07327,-1.49061,-1.59254,-0.06101,2.06670,0.00333
+4.59985,1.07315,-1.49067,-1.59312,-0.06037,2.06682,0.00333
+4.60234,1.07303,-1.49073,-1.59369,-0.05974,2.06693,0.00333
+4.60484,1.07292,-1.49079,-1.59425,-0.05913,2.06704,0.00333
+4.60733,1.07280,-1.49084,-1.59480,-0.05852,2.06714,0.00333
+4.60982,1.07269,-1.49090,-1.59534,-0.05792,2.06725,0.00333
+4.61232,1.07258,-1.49095,-1.59587,-0.05734,2.06735,0.00333
+4.61481,1.07247,-1.49101,-1.59639,-0.05676,2.06746,0.00333
+4.61730,1.07237,-1.49106,-1.59690,-0.05620,2.06756,0.00333
+4.61980,1.07226,-1.49111,-1.59741,-0.05564,2.06766,0.00333
+4.62229,1.07216,-1.49116,-1.59790,-0.05510,2.06775,0.00333
+4.62478,1.07206,-1.49121,-1.59839,-0.05456,2.06785,0.00333
+4.62727,1.07196,-1.49126,-1.59887,-0.05404,2.06794,0.00333
+4.62977,1.07186,-1.49130,-1.59934,-0.05352,2.06803,0.00333
+4.63226,1.07177,-1.49135,-1.59980,-0.05301,2.06812,0.00333
+4.63475,1.07168,-1.49139,-1.60025,-0.05251,2.06821,0.00333
+4.63725,1.07158,-1.49144,-1.60070,-0.05202,2.06829,0.00333
+4.63974,1.07149,-1.49148,-1.60114,-0.05154,2.06838,0.00333
+4.64223,1.07141,-1.49152,-1.60157,-0.05106,2.06846,0.00333
+4.64473,1.07132,-1.49156,-1.60199,-0.05060,2.06854,0.00333
+4.64722,1.07123,-1.49161,-1.60241,-0.05014,2.06862,0.00333
+4.64971,1.07119,-1.49163,-1.60262,-0.04990,2.06867,0.00333
+4.65221,1.07109,-1.49168,-1.60310,-0.04937,2.06876,0.00333
+4.65470,1.07099,-1.49173,-1.60358,-0.04884,2.06886,0.00333
+4.65719,1.07089,-1.49178,-1.60404,-0.04833,2.06895,0.00333
+4.65969,1.07079,-1.49183,-1.60450,-0.04782,2.06904,0.00333
+4.66218,1.07070,-1.49188,-1.60495,-0.04732,2.06913,0.00333
+4.66467,1.07060,-1.49193,-1.60539,-0.04683,2.06922,0.00333
+4.66717,1.07051,-1.49198,-1.60582,-0.04635,2.06931,0.00333
+4.66966,1.07042,-1.49203,-1.60625,-0.04587,2.06939,0.00333
+4.67215,1.07033,-1.49207,-1.60667,-0.04541,2.06948,0.00333
+4.67464,1.07025,-1.49212,-1.60708,-0.04495,2.06956,0.00333
+4.67714,1.07022,-1.49213,-1.60721,-0.04481,2.06959,0.00333
+4.67963,1.07011,-1.49219,-1.60763,-0.04433,2.06968,0.00333
+4.68212,1.07001,-1.49224,-1.60805,-0.04385,2.06978,0.00333
+4.68462,1.06991,-1.49230,-1.60846,-0.04339,2.06988,0.00333
+4.68711,1.06982,-1.49235,-1.60886,-0.04293,2.06997,0.00333
+4.68960,1.06975,-1.49239,-1.60914,-0.04261,2.07003,0.00333
+4.69210,1.06965,-1.49244,-1.60957,-0.04213,2.07012,0.00333
+4.69459,1.06956,-1.49249,-1.60999,-0.04166,2.07021,0.00333
+4.69708,1.06947,-1.49255,-1.61040,-0.04119,2.07030,0.00333
+4.69958,1.06938,-1.49259,-1.61081,-0.04074,2.07039,0.00333
+4.70207,1.06936,-1.49260,-1.61089,-0.04064,2.07040,0.00333
+4.70456,1.06927,-1.49265,-1.61132,-0.04016,2.07049,0.00333
+4.70706,1.06918,-1.49270,-1.61175,-0.03969,2.07057,0.00333
+4.70955,1.06909,-1.49275,-1.61217,-0.03922,2.07065,0.00333
+4.71204,1.06901,-1.49279,-1.61258,-0.03877,2.07073,0.00333
+4.71454,1.06899,-1.49280,-1.61266,-0.03867,2.07075,0.00333
+4.71703,1.06891,-1.49285,-1.61310,-0.03819,2.07083,0.00333
+4.71952,1.06883,-1.49289,-1.61353,-0.03772,2.07091,0.00333
+4.72201,1.06875,-1.49293,-1.61395,-0.03725,2.07098,0.00333
+4.72451,1.06867,-1.49298,-1.61436,-0.03680,2.07106,0.00333
+4.72700,1.06865,-1.49298,-1.61444,-0.03670,2.07107,0.00333
+4.72949,1.06858,-1.49302,-1.61487,-0.03624,2.07114,0.00333
+4.73199,1.06850,-1.49307,-1.61528,-0.03578,2.07122,0.00333
+4.73448,1.06849,-1.49307,-1.61537,-0.03569,2.07123,0.00333
+4.73697,1.06841,-1.49311,-1.61579,-0.03522,2.07130,0.00334
+4.73947,1.06834,-1.49315,-1.61621,-0.03477,2.07137,0.00334
+4.74196,1.06832,-1.49316,-1.61629,-0.03468,2.07138,0.00334
+4.74445,1.06825,-1.49320,-1.61672,-0.03421,2.07145,0.00334
+4.74695,1.06818,-1.49323,-1.61714,-0.03375,2.07152,0.00334
+4.74944,1.06817,-1.49324,-1.61718,-0.03371,2.07152,0.00334
+4.75193,1.06810,-1.49327,-1.61761,-0.03324,2.07159,0.00334
+4.75443,1.06804,-1.49331,-1.61803,-0.03278,2.07165,0.00334
+4.75692,1.06802,-1.49332,-1.61812,-0.03269,2.07167,0.00334
+4.75941,1.06796,-1.49335,-1.61855,-0.03223,2.07173,0.00334
+4.76190,1.06789,-1.49339,-1.61897,-0.03177,2.07179,0.00334
+4.76440,1.06788,-1.49339,-1.61906,-0.03167,2.07180,0.00334
+4.76689,1.06781,-1.49343,-1.61950,-0.03119,2.07186,0.00334
+4.76938,1.06775,-1.49346,-1.61995,-0.03072,2.07192,0.00334
+4.77188,1.06769,-1.49349,-1.62038,-0.03025,2.07198,0.00334
+4.77437,1.06762,-1.49352,-1.62080,-0.02979,2.07204,0.00334
+4.77686,1.06761,-1.49353,-1.62093,-0.02965,2.07206,0.00334
+4.77936,1.06755,-1.49356,-1.62139,-0.02917,2.07211,0.00334
+4.78185,1.06749,-1.49359,-1.62183,-0.02870,2.07217,0.00334
+4.78434,1.06743,-1.49362,-1.62226,-0.02823,2.07222,0.00334
+4.78684,1.06737,-1.49365,-1.62269,-0.02777,2.07227,0.00334
+4.78933,1.06736,-1.49366,-1.62278,-0.02768,2.07229,0.00334
+4.79182,1.06728,-1.49370,-1.62322,-0.02719,2.07236,0.00334
+4.79432,1.06721,-1.49375,-1.62366,-0.02672,2.07243,0.00334
+4.79681,1.06714,-1.49379,-1.62408,-0.02625,2.07249,0.00334
+4.79930,1.06707,-1.49383,-1.62450,-0.02579,2.07256,0.00334
+4.80180,1.06703,-1.49385,-1.62475,-0.02551,2.07260,0.00334
+4.80429,1.06696,-1.49389,-1.62518,-0.02505,2.07266,0.00334
+4.80678,1.06689,-1.49393,-1.62559,-0.02459,2.07273,0.00334
+4.80927,1.06688,-1.49393,-1.62564,-0.02454,2.07273,0.00334
+4.81177,1.06682,-1.49397,-1.62608,-0.02406,2.07280,0.00334
+4.81426,1.06675,-1.49401,-1.62652,-0.02358,2.07286,0.00334
+4.81675,1.06669,-1.49405,-1.62695,-0.02312,2.07292,0.00334
+4.81925,1.06662,-1.49408,-1.62737,-0.02266,2.07298,0.00334
+4.82174,1.06661,-1.49410,-1.62750,-0.02252,2.07299,0.00334
+4.82423,1.06654,-1.49413,-1.62795,-0.02203,2.07305,0.00334
+4.82673,1.06648,-1.49417,-1.62839,-0.02156,2.07311,0.00334
+4.82922,1.06642,-1.49420,-1.62882,-0.02109,2.07316,0.00334
+4.83171,1.06636,-1.49423,-1.62924,-0.02063,2.07322,0.00334
+4.83421,1.06634,-1.49425,-1.62937,-0.02049,2.07324,0.00334
+4.83670,1.06627,-1.49429,-1.62981,-0.02001,2.07331,0.00334
+4.83919,1.06619,-1.49434,-1.63024,-0.01953,2.07338,0.00334
+4.84169,1.06612,-1.49439,-1.63066,-0.01906,2.07345,0.00334
+4.84418,1.06605,-1.49443,-1.63107,-0.01860,2.07352,0.00334
+4.84667,1.06601,-1.49445,-1.63128,-0.01837,2.07355,0.00334
+4.84916,1.06594,-1.49450,-1.63176,-0.01785,2.07362,0.00334
+4.85166,1.06587,-1.49454,-1.63222,-0.01734,2.07368,0.00334
+4.85415,1.06580,-1.49459,-1.63268,-0.01684,2.07374,0.00334
+4.85664,1.06574,-1.49463,-1.63313,-0.01635,2.07381,0.00334
+4.85914,1.06567,-1.49467,-1.63357,-0.01587,2.07387,0.00334
+4.86163,1.06561,-1.49471,-1.63400,-0.01539,2.07393,0.00334
+4.86412,1.06554,-1.49475,-1.63443,-0.01492,2.07399,0.00334
+4.86662,1.06548,-1.49479,-1.63485,-0.01447,2.07405,0.00334
+4.86911,1.06547,-1.49480,-1.63493,-0.01437,2.07406,0.00334
+4.87160,1.06541,-1.49484,-1.63538,-0.01389,2.07412,0.00334
+4.87410,1.06535,-1.49488,-1.63581,-0.01341,2.07417,0.00334
+4.87659,1.06529,-1.49492,-1.63624,-0.01294,2.07423,0.00334
+4.87908,1.06523,-1.49495,-1.63667,-0.01249,2.07428,0.00334
+4.88158,1.06521,-1.49496,-1.63679,-0.01235,2.07430,0.00334
+4.88407,1.06515,-1.49500,-1.63722,-0.01188,2.07435,0.00334
+4.88656,1.06510,-1.49504,-1.63764,-0.01142,2.07440,0.00334
+4.88906,1.06509,-1.49504,-1.63773,-0.01133,2.07441,0.00334
+4.89155,1.06503,-1.49508,-1.63816,-0.01086,2.07446,0.00334
+4.89404,1.06498,-1.49511,-1.63858,-0.01041,2.07451,0.00334
+4.89653,1.06504,-1.49506,-1.63859,-0.01045,2.07446,0.00334
+4.89903,1.06563,-1.49457,-1.63861,-0.01091,2.07387,0.00335
+4.90152,1.06622,-1.49408,-1.63864,-0.01135,2.07330,0.00336
+4.90401,1.06680,-1.49360,-1.63866,-0.01179,2.07274,0.00337
+4.90651,1.06737,-1.49313,-1.63869,-0.01222,2.07218,0.00338
+4.90900,1.06792,-1.49267,-1.63871,-0.01265,2.07164,0.00339
+4.91149,1.06847,-1.49222,-1.63874,-0.01306,2.07110,0.00340
+4.91399,1.06901,-1.49178,-1.63876,-0.01347,2.07057,0.00341
+4.91648,1.06954,-1.49134,-1.63878,-0.01387,2.07005,0.00341
+4.91897,1.07007,-1.49092,-1.63880,-0.01427,2.06954,0.00342
+4.92147,1.07058,-1.49050,-1.63883,-0.01465,2.06903,0.00343
+4.92396,1.07109,-1.49008,-1.63885,-0.01503,2.06853,0.00344
+4.92645,1.07159,-1.48968,-1.63887,-0.01541,2.06805,0.00344
+4.92895,1.07208,-1.48928,-1.63889,-0.01577,2.06757,0.00345
+4.93144,1.07256,-1.48889,-1.63891,-0.01613,2.06709,0.00346
+4.93393,1.07303,-1.48851,-1.63893,-0.01649,2.06663,0.00346
+4.93642,1.07350,-1.48813,-1.63895,-0.01684,2.06617,0.00347
+4.93892,1.07396,-1.48776,-1.63897,-0.01718,2.06572,0.00348
+4.94141,1.07441,-1.48740,-1.63899,-0.01751,2.06527,0.00348
+4.94390,1.07486,-1.48704,-1.63901,-0.01784,2.06484,0.00349
+4.94640,1.07529,-1.48669,-1.63903,-0.01817,2.06441,0.00349
+4.94889,1.07572,-1.48635,-1.63904,-0.01849,2.06398,0.00350
+4.95138,1.07615,-1.48601,-1.63906,-0.01880,2.06357,0.00350
+4.95388,1.07656,-1.48568,-1.63908,-0.01911,2.06316,0.00351
+4.95637,1.07697,-1.48536,-1.63910,-0.01941,2.06276,0.00351
+4.95886,1.07737,-1.48504,-1.63911,-0.01970,2.06236,0.00352
+4.96136,1.07777,-1.48472,-1.63913,-0.01999,2.06197,0.00352
+4.96385,1.07816,-1.48442,-1.63915,-0.02028,2.06159,0.00353
+4.96634,1.07854,-1.48411,-1.63916,-0.02056,2.06121,0.00353
+4.96884,1.07892,-1.48382,-1.63918,-0.02084,2.06084,0.00354
+4.97133,1.07929,-1.48352,-1.63919,-0.02111,2.06047,0.00354
+4.97382,1.07966,-1.48324,-1.63921,-0.02137,2.06011,0.00354
+4.97632,1.07974,-1.48317,-1.63920,-0.02145,2.06003,0.00355
+4.97881,1.08019,-1.48282,-1.63910,-0.02189,2.05958,0.00355
+4.98130,1.08064,-1.48247,-1.63901,-0.02233,2.05915,0.00356
+4.98379,1.08107,-1.48213,-1.63891,-0.02276,2.05871,0.00356
+4.98629,1.08151,-1.48179,-1.63882,-0.02318,2.05829,0.00357
+4.98878,1.08193,-1.48146,-1.63873,-0.02359,2.05787,0.00357
+4.99127,1.08235,-1.48114,-1.63864,-0.02400,2.05746,0.00358
+4.99377,1.08276,-1.48082,-1.63855,-0.02440,2.05706,0.00358
+4.99626,1.08316,-1.48051,-1.63847,-0.02479,2.05666,0.00358
+4.99875,1.08356,-1.48020,-1.63838,-0.02518,2.05627,0.00359
+5.00125,1.08395,-1.47990,-1.63830,-0.02556,2.05588,0.00359
+5.00374,1.08433,-1.47961,-1.63821,-0.02593,2.05550,0.00360
+5.00623,1.08471,-1.47932,-1.63813,-0.02630,2.05513,0.00360
+5.00873,1.08508,-1.47903,-1.63805,-0.02666,2.05476,0.00360
+5.01122,1.08545,-1.47875,-1.63798,-0.02701,2.05440,0.00361
+5.01371,1.08581,-1.47848,-1.63790,-0.02736,2.05405,0.00361
+5.01621,1.08616,-1.47821,-1.63782,-0.02770,2.05370,0.00361
+5.01870,1.08651,-1.47795,-1.63775,-0.02803,2.05335,0.00362
+5.02119,1.08685,-1.47769,-1.63768,-0.02836,2.05302,0.00362
+5.02368,1.08719,-1.47743,-1.63760,-0.02868,2.05268,0.00362
+5.02618,1.08733,-1.47733,-1.63757,-0.02882,2.05255,0.00363
+5.02867,1.08770,-1.47705,-1.63746,-0.02921,2.05218,0.00363
+5.03116,1.08806,-1.47678,-1.63734,-0.02959,2.05183,0.00363
+5.03366,1.08841,-1.47651,-1.63723,-0.02997,2.05148,0.00364
+5.03615,1.08876,-1.47625,-1.63712,-0.03033,2.05113,0.00364
+5.03864,1.08911,-1.47599,-1.63701,-0.03070,2.05079,0.00364
+5.04114,1.08945,-1.47574,-1.63691,-0.03105,2.05046,0.00364
+5.04363,1.08978,-1.47549,-1.63680,-0.03140,2.05013,0.00365
+5.04612,1.09011,-1.47525,-1.63670,-0.03175,2.04980,0.00365
+5.04862,1.09040,-1.47503,-1.63660,-0.03206,2.04951,0.00365
+5.05111,1.09076,-1.47477,-1.63646,-0.03246,2.04916,0.00365
+5.05360,1.09111,-1.47451,-1.63631,-0.03286,2.04882,0.00366
+5.05610,1.09145,-1.47426,-1.63617,-0.03325,2.04848,0.00366
+5.05859,1.09179,-1.47401,-1.63604,-0.03364,2.04814,0.00366
+5.06108,1.09212,-1.47376,-1.63590,-0.03402,2.04781,0.00367
+5.06358,1.09245,-1.47352,-1.63577,-0.03439,2.04749,0.00367
+5.06607,1.09277,-1.47328,-1.63564,-0.03475,2.04717,0.00367
+5.06856,1.09309,-1.47305,-1.63551,-0.03511,2.04686,0.00367
+5.07105,1.09340,-1.47282,-1.63538,-0.03547,2.04655,0.00368
+5.07355,1.09373,-1.47259,-1.63521,-0.03587,2.04622,0.00368
+5.07604,1.09405,-1.47235,-1.63505,-0.03626,2.04591,0.00368
+5.07853,1.09436,-1.47213,-1.63489,-0.03665,2.04560,0.00368
+5.08103,1.09467,-1.47190,-1.63473,-0.03703,2.04529,0.00368
+5.08352,1.09498,-1.47168,-1.63457,-0.03740,2.04499,0.00369
+5.08601,1.09528,-1.47147,-1.63442,-0.03777,2.04469,0.00369
+5.08851,1.09534,-1.47142,-1.63439,-0.03785,2.04463,0.00369
+5.09100,1.09568,-1.47118,-1.63419,-0.03828,2.04430,0.00369
+5.09349,1.09600,-1.47094,-1.63400,-0.03870,2.04397,0.00369
+5.09599,1.09633,-1.47071,-1.63381,-0.03912,2.04366,0.00370
+5.09848,1.09664,-1.47049,-1.63363,-0.03953,2.04334,0.00370
+5.10097,1.09696,-1.47027,-1.63344,-0.03993,2.04303,0.00370
+5.10347,1.09726,-1.47005,-1.63326,-0.04033,2.04273,0.00370
+5.10596,1.09756,-1.46983,-1.63309,-0.04072,2.04243,0.00371
+5.10845,1.09786,-1.46962,-1.63291,-0.04110,2.04214,0.00371
+5.11094,1.09815,-1.46942,-1.63274,-0.04148,2.04185,0.00371
+5.11344,1.09821,-1.46938,-1.63270,-0.04156,2.04179,0.00371
+5.11593,1.09852,-1.46916,-1.63248,-0.04200,2.04149,0.00371
+5.11842,1.09882,-1.46895,-1.63225,-0.04243,2.04119,0.00371
+5.12092,1.09911,-1.46874,-1.63204,-0.04285,2.04090,0.00372
+5.12341,1.09941,-1.46854,-1.63182,-0.04327,2.04061,0.00372
+5.12590,1.09969,-1.46834,-1.63161,-0.04368,2.04033,0.00372
+5.12840,1.09997,-1.46814,-1.63140,-0.04408,2.04005,0.00372
+5.13089,1.10025,-1.46795,-1.63120,-0.04447,2.03978,0.00372
+5.13338,1.10047,-1.46780,-1.63103,-0.04479,2.03956,0.00372
+5.13588,1.10078,-1.46759,-1.63077,-0.04527,2.03925,0.00373
+5.13837,1.10108,-1.46738,-1.63051,-0.04573,2.03895,0.00373
+5.14086,1.10138,-1.46717,-1.63025,-0.04619,2.03866,0.00373
+5.14336,1.10168,-1.46697,-1.63001,-0.04664,2.03837,0.00373
+5.14585,1.10196,-1.46677,-1.62976,-0.04708,2.03809,0.00373
+5.14834,1.10225,-1.46658,-1.62952,-0.04752,2.03781,0.00374
+5.15084,1.10253,-1.46639,-1.62928,-0.04794,2.03753,0.00374
+5.15333,1.10280,-1.46620,-1.62905,-0.04836,2.03726,0.00374
+5.15582,1.10307,-1.46602,-1.62882,-0.04877,2.03699,0.00374
+5.15831,1.10333,-1.46584,-1.62859,-0.04918,2.03673,0.00374
+5.16081,1.10355,-1.46570,-1.62841,-0.04950,2.03652,0.00374
+5.16330,1.10384,-1.46550,-1.62812,-0.04999,2.03623,0.00374
+5.16579,1.10414,-1.46530,-1.62784,-0.05046,2.03594,0.00375
+5.16829,1.10442,-1.46511,-1.62757,-0.05093,2.03566,0.00375
+5.17078,1.10471,-1.46492,-1.62730,-0.05138,2.03538,0.00375
+5.17327,1.10498,-1.46474,-1.62703,-0.05183,2.03510,0.00375
+5.17577,1.10526,-1.46456,-1.62677,-0.05227,2.03483,0.00375
+5.17826,1.10552,-1.46438,-1.62651,-0.05271,2.03457,0.00375
+5.18075,1.10579,-1.46420,-1.62626,-0.05314,2.03431,0.00375
+5.18325,1.10605,-1.46403,-1.62601,-0.05355,2.03405,0.00376
+5.18574,1.10630,-1.46386,-1.62577,-0.05397,2.03380,0.00376
+5.18823,1.10651,-1.46373,-1.62556,-0.05431,2.03359,0.00376
+5.19073,1.10682,-1.46353,-1.62516,-0.05491,2.03329,0.00376
+5.19322,1.10712,-1.46333,-1.62477,-0.05549,2.03299,0.00376
+5.19571,1.10742,-1.46314,-1.62438,-0.05607,2.03270,0.00376
+5.19820,1.10772,-1.46295,-1.62401,-0.05663,2.03241,0.00377
+5.20070,1.10800,-1.46276,-1.62363,-0.05719,2.03212,0.00377
+5.20319,1.10829,-1.46258,-1.62327,-0.05774,2.03184,0.00377
+5.20568,1.10857,-1.46240,-1.62291,-0.05827,2.03157,0.00377
+5.20818,1.10884,-1.46223,-1.62255,-0.05880,2.03130,0.00377
+5.21067,1.10911,-1.46205,-1.62220,-0.05932,2.03103,0.00377
+5.21316,1.10938,-1.46189,-1.62186,-0.05983,2.03077,0.00378
+5.21566,1.10964,-1.46172,-1.62153,-0.06033,2.03051,0.00378
+5.21815,1.10989,-1.46156,-1.62119,-0.06082,2.03026,0.00378
+5.22064,1.11015,-1.46140,-1.62087,-0.06130,2.03001,0.00378
+5.22314,1.11039,-1.46125,-1.62055,-0.06178,2.02977,0.00378
+5.22563,1.11064,-1.46110,-1.62023,-0.06224,2.02953,0.00378
+5.22812,1.11088,-1.46095,-1.61992,-0.06270,2.02929,0.00378
+5.23062,1.11111,-1.46081,-1.61962,-0.06315,2.02906,0.00378
+5.23311,1.11134,-1.46066,-1.61932,-0.06359,2.02883,0.00378
+5.23560,1.11157,-1.46052,-1.61903,-0.06402,2.02860,0.00378
+5.23810,1.11180,-1.46039,-1.61874,-0.06445,2.02838,0.00378
+5.24059,1.11191,-1.46032,-1.61858,-0.06467,2.02827,0.00378
+5.24308,1.11217,-1.46016,-1.61822,-0.06520,2.02802,0.00379
+5.24557,1.11242,-1.46000,-1.61786,-0.06571,2.02776,0.00379
+5.24807,1.11267,-1.45985,-1.61750,-0.06622,2.02752,0.00379
+5.25056,1.11292,-1.45970,-1.61715,-0.06671,2.02728,0.00379
+5.25305,1.11316,-1.45956,-1.61681,-0.06720,2.02704,0.00379
+5.25555,1.11340,-1.45942,-1.61647,-0.06768,2.02680,0.00379
+5.25804,1.11363,-1.45928,-1.61614,-0.06815,2.02657,0.00379
+5.26053,1.11386,-1.45914,-1.61581,-0.06862,2.02635,0.00379
+5.26303,1.11409,-1.45901,-1.61549,-0.06907,2.02612,0.00379
+5.26552,1.11431,-1.45888,-1.61518,-0.06952,2.02590,0.00379
+5.26801,1.11453,-1.45875,-1.61487,-0.06996,2.02569,0.00379
+5.27051,1.11475,-1.45862,-1.61456,-0.07039,2.02547,0.00379
+5.27300,1.11487,-1.45855,-1.61437,-0.07065,2.02535,0.00379
+5.27549,1.11510,-1.45841,-1.61400,-0.07116,2.02512,0.00380
+5.27799,1.11533,-1.45828,-1.61363,-0.07166,2.02490,0.00380
+5.28048,1.11555,-1.45815,-1.61327,-0.07215,2.02468,0.00380
+5.28297,1.11577,-1.45803,-1.61291,-0.07263,2.02446,0.00380
+5.28546,1.11599,-1.45791,-1.61256,-0.07311,2.02425,0.00380
+5.28796,1.11620,-1.45779,-1.61221,-0.07357,2.02404,0.00380
+5.29045,1.11641,-1.45767,-1.61187,-0.07403,2.02384,0.00380
+5.29294,1.11661,-1.45755,-1.61154,-0.07448,2.02364,0.00380
+5.29544,1.11681,-1.45744,-1.61121,-0.07492,2.02344,0.00380
+5.29793,1.11701,-1.45733,-1.61089,-0.07536,2.02324,0.00380
+5.30042,1.11703,-1.45732,-1.61085,-0.07541,2.02322,0.00380
+5.30292,1.11729,-1.45717,-1.61050,-0.07591,2.02297,0.00380
+5.30541,1.11754,-1.45702,-1.61015,-0.07640,2.02272,0.00380
+5.30790,1.11778,-1.45688,-1.60980,-0.07689,2.02248,0.00380
+5.31040,1.11802,-1.45675,-1.60947,-0.07736,2.02225,0.00380
+5.31289,1.11826,-1.45661,-1.60913,-0.07783,2.02201,0.00380
+5.31538,1.11849,-1.45648,-1.60881,-0.07829,2.02179,0.00380
+5.31788,1.11872,-1.45635,-1.60849,-0.07874,2.02156,0.00380
+5.32037,1.11894,-1.45622,-1.60817,-0.07918,2.02134,0.00380
+5.32286,1.11916,-1.45610,-1.60786,-0.07962,2.02112,0.00380
+5.32536,1.11938,-1.45598,-1.60756,-0.08005,2.02091,0.00380
+5.32785,1.11945,-1.45594,-1.60746,-0.08018,2.02084,0.00380
+5.33034,1.11970,-1.45579,-1.60709,-0.08069,2.02059,0.00380
+5.33283,1.11995,-1.45565,-1.60673,-0.08120,2.02035,0.00381
+5.33533,1.12020,-1.45552,-1.60638,-0.08169,2.02010,0.00381
+5.33782,1.12044,-1.45538,-1.60603,-0.08217,2.01987,0.00381
+5.34031,1.12067,-1.45525,-1.60568,-0.08265,2.01964,0.00381
+5.34281,1.12091,-1.45512,-1.60535,-0.08311,2.01941,0.00381
+5.34530,1.12113,-1.45499,-1.60502,-0.08357,2.01918,0.00381
+5.34779,1.12136,-1.45487,-1.60469,-0.08402,2.01896,0.00381
+5.35029,1.12158,-1.45475,-1.60437,-0.08446,2.01874,0.00381
+5.35278,1.12180,-1.45463,-1.60405,-0.08490,2.01853,0.00381
+5.35527,1.12202,-1.45451,-1.60374,-0.08533,2.01831,0.00381
+5.35777,1.12227,-1.45437,-1.60338,-0.08583,2.01807,0.00381
+5.36026,1.12251,-1.45424,-1.60303,-0.08631,2.01783,0.00381
+5.36275,1.12275,-1.45411,-1.60269,-0.08679,2.01759,0.00381
+5.36525,1.12299,-1.45398,-1.60235,-0.08726,2.01735,0.00381
+5.36774,1.12322,-1.45385,-1.60202,-0.08772,2.01712,0.00381
+5.37023,1.12345,-1.45372,-1.60169,-0.08817,2.01690,0.00381
+5.37273,1.12368,-1.45360,-1.60137,-0.08862,2.01667,0.00381
+5.37522,1.12390,-1.45348,-1.60106,-0.08905,2.01646,0.00381
+5.37771,1.12412,-1.45336,-1.60075,-0.08948,2.01624,0.00381
+5.38020,1.12419,-1.45333,-1.60065,-0.08961,2.01617,0.00381
+5.38270,1.12442,-1.45320,-1.60030,-0.09009,2.01594,0.00381
+5.38519,1.12465,-1.45308,-1.59996,-0.09055,2.01572,0.00381
+5.38768,1.12488,-1.45296,-1.59963,-0.09101,2.01549,0.00381
+5.39018,1.12510,-1.45284,-1.59930,-0.09146,2.01527,0.00381
+5.39267,1.12532,-1.45273,-1.59897,-0.09190,2.01506,0.00381
+5.39516,1.12554,-1.45261,-1.59865,-0.09233,2.01485,0.00381
+5.39766,1.12569,-1.45253,-1.59843,-0.09264,2.01470,0.00381
+5.40015,1.12594,-1.45240,-1.59806,-0.09313,2.01445,0.00381
+5.40264,1.12618,-1.45227,-1.59771,-0.09362,2.01421,0.00381
+5.40514,1.12643,-1.45214,-1.59736,-0.09410,2.01397,0.00381
+5.40763,1.12666,-1.45202,-1.59702,-0.09457,2.01374,0.00381
+5.41012,1.12690,-1.45189,-1.59668,-0.09503,2.01351,0.00381
+5.41262,1.12713,-1.45177,-1.59635,-0.09548,2.01328,0.00381
+5.41511,1.12735,-1.45166,-1.59602,-0.09593,2.01306,0.00381
+5.41760,1.12757,-1.45154,-1.59570,-0.09636,2.01284,0.00381
+5.42009,1.12779,-1.45143,-1.59538,-0.09679,2.01263,0.00381
+5.42259,1.12788,-1.45138,-1.59526,-0.09697,2.01254,0.00381
+5.42508,1.12813,-1.45125,-1.59491,-0.09745,2.01229,0.00381
+5.42757,1.12838,-1.45112,-1.59458,-0.09791,2.01205,0.00381
+5.43007,1.12863,-1.45099,-1.59425,-0.09837,2.01181,0.00381
+5.43256,1.12887,-1.45086,-1.59393,-0.09882,2.01157,0.00381
+5.43505,1.12910,-1.45074,-1.59361,-0.09927,2.01134,0.00381
+5.43755,1.12934,-1.45062,-1.59329,-0.09970,2.01111,0.00381
+5.44004,1.12956,-1.45050,-1.59298,-0.10013,2.01088,0.00381
+5.44253,1.12973,-1.45042,-1.59277,-0.10043,2.01072,0.00381
+5.44503,1.12999,-1.45028,-1.59243,-0.10090,2.01047,0.00381
+5.44752,1.13025,-1.45014,-1.59211,-0.10137,2.01021,0.00381
+5.45001,1.13050,-1.45001,-1.59179,-0.10182,2.00996,0.00381
+5.45251,1.13075,-1.44988,-1.59147,-0.10227,2.00972,0.00381
+5.45500,1.13099,-1.44975,-1.59116,-0.10271,2.00948,0.00381
+5.45749,1.13124,-1.44963,-1.59085,-0.10314,2.00924,0.00381
+5.45999,1.13147,-1.44950,-1.59055,-0.10357,2.00900,0.00381
+5.46248,1.13164,-1.44942,-1.59033,-0.10388,2.00884,0.00381
+5.46497,1.13193,-1.44926,-1.58995,-0.10442,2.00855,0.00382
+5.46746,1.13222,-1.44911,-1.58956,-0.10495,2.00827,0.00382
+5.46996,1.13250,-1.44897,-1.58919,-0.10547,2.00799,0.00382
+5.47245,1.13278,-1.44882,-1.58882,-0.10598,2.00772,0.00382
+5.47494,1.13305,-1.44868,-1.58846,-0.10649,2.00745,0.00382
+5.47744,1.13332,-1.44855,-1.58810,-0.10698,2.00719,0.00382
+5.47993,1.13359,-1.44841,-1.58775,-0.10747,2.00693,0.00382
+5.48242,1.13385,-1.44828,-1.58740,-0.10794,2.00667,0.00382
+5.48492,1.13410,-1.44815,-1.58706,-0.10841,2.00642,0.00382
+5.48741,1.13435,-1.44803,-1.58673,-0.10888,2.00618,0.00382
+5.48990,1.13460,-1.44790,-1.58640,-0.10933,2.00593,0.00382
+5.49240,1.13484,-1.44778,-1.58608,-0.10977,2.00569,0.00382
+5.49489,1.13508,-1.44766,-1.58576,-0.11021,2.00546,0.00382
+5.49738,1.13531,-1.44755,-1.58545,-0.11064,2.00523,0.00382
+5.49988,1.13555,-1.44743,-1.58514,-0.11107,2.00500,0.00382
+5.50237,1.13581,-1.44729,-1.58482,-0.11152,2.00473,0.00382
+5.50486,1.13608,-1.44716,-1.58451,-0.11197,2.00448,0.00382
+5.50735,1.13633,-1.44703,-1.58421,-0.11241,2.00422,0.00382
+5.50985,1.13659,-1.44690,-1.58390,-0.11284,2.00397,0.00382
+5.51234,1.13684,-1.44678,-1.58361,-0.11326,2.00373,0.00382
+5.51483,1.13708,-1.44665,-1.58331,-0.11368,2.00348,0.00382
+5.51733,1.13735,-1.44652,-1.58300,-0.11413,2.00323,0.00382
+5.51982,1.13760,-1.44639,-1.58269,-0.11457,2.00297,0.00382
+5.52231,1.13786,-1.44626,-1.58239,-0.11500,2.00272,0.00382
+5.52481,1.13811,-1.44614,-1.58209,-0.11542,2.00248,0.00382
+5.52730,1.13833,-1.44603,-1.58183,-0.11580,2.00226,0.00382
+5.52979,1.13861,-1.44589,-1.58153,-0.11625,2.00198,0.00382
+5.53229,1.13889,-1.44574,-1.58123,-0.11669,2.00171,0.00382
+5.53478,1.13916,-1.44561,-1.58093,-0.11712,2.00144,0.00382
+5.53727,1.13943,-1.44547,-1.58065,-0.11754,2.00118,0.00382
+5.53977,1.13969,-1.44534,-1.58036,-0.11796,2.00092,0.00382
+5.54226,1.13995,-1.44521,-1.58008,-0.11837,2.00066,0.00382
+5.54475,1.13998,-1.44519,-1.58005,-0.11842,2.00064,0.00382
+5.54725,1.14025,-1.44505,-1.57977,-0.11884,2.00037,0.00382
+5.54974,1.14052,-1.44492,-1.57950,-0.11925,2.00010,0.00382
+5.55223,1.14078,-1.44478,-1.57922,-0.11966,1.99984,0.00382
+5.55472,1.14084,-1.44476,-1.57917,-0.11975,1.99978,0.00382
+5.55722,1.14112,-1.44462,-1.57888,-0.12018,1.99951,0.00382
+5.55971,1.14139,-1.44448,-1.57859,-0.12061,1.99924,0.00382
+5.56220,1.14167,-1.44434,-1.57830,-0.12103,1.99897,0.00382
+5.56470,1.14193,-1.44421,-1.57803,-0.12145,1.99871,0.00382
+5.56719,1.14217,-1.44409,-1.57777,-0.12182,1.99847,0.00382
+5.56968,1.14249,-1.44392,-1.57744,-0.12232,1.99815,0.00382
+5.57218,1.14281,-1.44376,-1.57712,-0.12280,1.99785,0.00382
+5.57467,1.14312,-1.44361,-1.57680,-0.12328,1.99754,0.00382
+5.57716,1.14342,-1.44345,-1.57648,-0.12375,1.99724,0.00382
+5.57966,1.14372,-1.44330,-1.57617,-0.12421,1.99695,0.00382
+5.58215,1.14401,-1.44316,-1.57587,-0.12466,1.99666,0.00382
+5.58464,1.14430,-1.44301,-1.57557,-0.12510,1.99637,0.00382
+5.58714,1.14459,-1.44287,-1.57528,-0.12554,1.99609,0.00382
+5.58963,1.14487,-1.44273,-1.57499,-0.12597,1.99582,0.00382
+5.59212,1.14514,-1.44260,-1.57470,-0.12639,1.99555,0.00382
+5.59461,1.14541,-1.44246,-1.57442,-0.12681,1.99528,0.00382
+5.59711,1.14568,-1.44233,-1.57415,-0.12722,1.99501,0.00382
+5.59960,1.14598,-1.44218,-1.57384,-0.12767,1.99472,0.00382
+5.60209,1.14628,-1.44203,-1.57354,-0.12812,1.99442,0.00382
+5.60459,1.14657,-1.44189,-1.57325,-0.12856,1.99413,0.00382
+5.60708,1.14686,-1.44175,-1.57296,-0.12900,1.99385,0.00382
+5.60957,1.14715,-1.44161,-1.57267,-0.12942,1.99357,0.00382
+5.61207,1.14742,-1.44147,-1.57239,-0.12984,1.99330,0.00382
+5.61456,1.14770,-1.44134,-1.57212,-0.13025,1.99303,0.00382
+5.61705,1.14792,-1.44123,-1.57189,-0.13058,1.99281,0.00382
+5.61955,1.14822,-1.44108,-1.57157,-0.13105,1.99251,0.00382
+5.62204,1.14853,-1.44094,-1.57126,-0.13152,1.99221,0.00382
+5.62453,1.14882,-1.44079,-1.57095,-0.13197,1.99192,0.00382
+5.62703,1.14912,-1.44065,-1.57064,-0.13242,1.99163,0.00382
+5.62952,1.14940,-1.44051,-1.57034,-0.13286,1.99135,0.00382
+5.63201,1.14968,-1.44038,-1.57005,-0.13329,1.99107,0.00382
+5.63451,1.14996,-1.44024,-1.56976,-0.13372,1.99079,0.00382
+5.63700,1.15024,-1.44011,-1.56947,-0.13413,1.99053,0.00382
+5.63949,1.15050,-1.43999,-1.56919,-0.13454,1.99026,0.00382
+5.64198,1.15061,-1.43993,-1.56907,-0.13472,1.99015,0.00382
+5.64448,1.15092,-1.43979,-1.56873,-0.13521,1.98985,0.00382
+5.64697,1.15122,-1.43965,-1.56838,-0.13569,1.98956,0.00382
+5.64946,1.15151,-1.43951,-1.56805,-0.13616,1.98927,0.00382
+5.65196,1.15180,-1.43938,-1.56772,-0.13663,1.98898,0.00382
+5.65445,1.15209,-1.43925,-1.56740,-0.13709,1.98870,0.00382
+5.65694,1.15237,-1.43912,-1.56708,-0.13754,1.98842,0.00382
+5.65944,1.15264,-1.43899,-1.56676,-0.13798,1.98815,0.00382
+5.66193,1.15291,-1.43887,-1.56645,-0.13841,1.98789,0.00382
+5.66442,1.15318,-1.43874,-1.56615,-0.13884,1.98762,0.00382
+5.66692,1.15344,-1.43862,-1.56585,-0.13926,1.98736,0.00382
+5.66941,1.15370,-1.43851,-1.56556,-0.13967,1.98711,0.00382
+5.67190,1.15397,-1.43838,-1.56526,-0.14010,1.98684,0.00382
+5.67440,1.15424,-1.43826,-1.56497,-0.14051,1.98657,0.00382
+5.67689,1.15451,-1.43814,-1.56468,-0.14092,1.98631,0.00382
+5.67938,1.15456,-1.43811,-1.56462,-0.14101,1.98626,0.00382
+5.68187,1.15484,-1.43798,-1.56432,-0.14144,1.98598,0.00382
+5.68437,1.15512,-1.43786,-1.56401,-0.14188,1.98571,0.00382
+5.68686,1.15539,-1.43773,-1.56372,-0.14230,1.98544,0.00382
+5.68935,1.15566,-1.43761,-1.56342,-0.14271,1.98518,0.00382
+5.69185,1.15589,-1.43750,-1.56316,-0.14309,1.98494,0.00382
+5.69434,1.15617,-1.43738,-1.56285,-0.14352,1.98467,0.00382
+5.69683,1.15645,-1.43725,-1.56254,-0.14396,1.98440,0.00382
+5.69933,1.15672,-1.43713,-1.56224,-0.14438,1.98413,0.00382
+5.70182,1.15698,-1.43701,-1.56195,-0.14480,1.98387,0.00382
+5.70431,1.15722,-1.43691,-1.56168,-0.14517,1.98363,0.00382
+5.70681,1.15750,-1.43678,-1.56139,-0.14559,1.98336,0.00382
+5.70930,1.15777,-1.43666,-1.56110,-0.14600,1.98309,0.00382
+5.71179,1.15804,-1.43654,-1.56081,-0.14641,1.98283,0.00382
+5.71429,1.15807,-1.43653,-1.56078,-0.14646,1.98280,0.00382
+5.71678,1.15836,-1.43640,-1.56041,-0.14695,1.98252,0.00382
+5.71927,1.15864,-1.43628,-1.56005,-0.14743,1.98224,0.00382
+5.72177,1.15891,-1.43616,-1.55970,-0.14790,1.98197,0.00382
+5.72426,1.15919,-1.43605,-1.55936,-0.14836,1.98170,0.00382
+5.72675,1.15945,-1.43593,-1.55901,-0.14882,1.98143,0.00382
+5.72924,1.15972,-1.43582,-1.55868,-0.14927,1.98118,0.00382
+5.73174,1.15997,-1.43571,-1.55835,-0.14971,1.98092,0.00382
+5.73423,1.16023,-1.43561,-1.55803,-0.15014,1.98067,0.00382
+5.73672,1.16048,-1.43550,-1.55771,-0.15056,1.98042,0.00382
+5.73922,1.16073,-1.43540,-1.55739,-0.15099,1.98018,0.00382
+5.74171,1.16101,-1.43528,-1.55700,-0.15149,1.97990,0.00382
+5.74420,1.16129,-1.43516,-1.55663,-0.15198,1.97962,0.00382
+5.74670,1.16157,-1.43505,-1.55626,-0.15247,1.97935,0.00382
+5.74919,1.16184,-1.43494,-1.55590,-0.15294,1.97908,0.00382
+5.75168,1.16210,-1.43483,-1.55554,-0.15341,1.97882,0.00382
+5.75418,1.16237,-1.43473,-1.55519,-0.15387,1.97856,0.00382
+5.75667,1.16262,-1.43462,-1.55484,-0.15432,1.97831,0.00382
+5.75916,1.16288,-1.43452,-1.55450,-0.15476,1.97806,0.00382
+5.76166,1.16312,-1.43442,-1.55417,-0.15520,1.97781,0.00382
+5.76415,1.16337,-1.43432,-1.55384,-0.15562,1.97757,0.00382
+5.76664,1.16361,-1.43423,-1.55351,-0.15605,1.97733,0.00382
+5.76913,1.16387,-1.43413,-1.55317,-0.15650,1.97708,0.00382
+5.77163,1.16412,-1.43403,-1.55283,-0.15694,1.97683,0.00382
+5.77412,1.16437,-1.43393,-1.55249,-0.15737,1.97658,0.00382
+5.77661,1.16462,-1.43383,-1.55216,-0.15780,1.97634,0.00382
+5.77911,1.16484,-1.43374,-1.55187,-0.15818,1.97613,0.00382
+5.78160,1.16509,-1.43364,-1.55154,-0.15861,1.97587,0.00382
+5.78409,1.16535,-1.43354,-1.55122,-0.15904,1.97562,0.00382
+5.78659,1.16560,-1.43344,-1.55090,-0.15946,1.97538,0.00382
+5.78908,1.16562,-1.43343,-1.55087,-0.15950,1.97535,0.00382
+5.79157,1.16589,-1.43332,-1.55055,-0.15993,1.97509,0.00382
+5.79407,1.16615,-1.43321,-1.55024,-0.16035,1.97483,0.00382
+5.79656,1.16641,-1.43311,-1.54993,-0.16077,1.97458,0.00382
+5.79905,1.16646,-1.43309,-1.54987,-0.16085,1.97453,0.00382
+5.80155,1.16671,-1.43299,-1.54955,-0.16127,1.97428,0.00382
+5.80404,1.16694,-1.43290,-1.54926,-0.16165,1.97406,0.00382
+5.80653,1.16720,-1.43279,-1.54892,-0.16210,1.97379,0.00382
+5.80903,1.16746,-1.43269,-1.54858,-0.16254,1.97354,0.00382
+5.81152,1.16772,-1.43259,-1.54825,-0.16297,1.97328,0.00382
+5.81401,1.16797,-1.43249,-1.54793,-0.16339,1.97303,0.00382
+5.81650,1.16820,-1.43240,-1.54764,-0.16377,1.97281,0.00382
+5.81900,1.16846,-1.43230,-1.54732,-0.16420,1.97255,0.00382
+5.82149,1.16872,-1.43219,-1.54701,-0.16462,1.97229,0.00382
+5.82398,1.16898,-1.43209,-1.54670,-0.16503,1.97204,0.00382
+5.82648,1.16900,-1.43208,-1.54666,-0.16508,1.97201,0.00382
+5.82897,1.16926,-1.43199,-1.54634,-0.16550,1.97177,0.00382
+5.83146,1.16948,-1.43190,-1.54605,-0.16588,1.97154,0.00382
+5.83396,1.16975,-1.43179,-1.54573,-0.16631,1.97128,0.00382
+5.83645,1.17001,-1.43169,-1.54541,-0.16673,1.97102,0.00382
+5.83894,1.17026,-1.43159,-1.54510,-0.16714,1.97077,0.00382
+5.84144,1.17029,-1.43158,-1.54506,-0.16719,1.97075,0.00382
+5.84393,1.17054,-1.43148,-1.54474,-0.16761,1.97050,0.00382
+5.84642,1.17077,-1.43140,-1.54444,-0.16799,1.97027,0.00382
+5.84892,1.17103,-1.43130,-1.54410,-0.16844,1.97001,0.00382
+5.85141,1.17129,-1.43120,-1.54376,-0.16888,1.96976,0.00382
+5.85390,1.17155,-1.43110,-1.54343,-0.16931,1.96950,0.00382
+5.85639,1.17180,-1.43100,-1.54310,-0.16973,1.96925,0.00382
+5.85889,1.17205,-1.43091,-1.54278,-0.17015,1.96901,0.00382
+5.86138,1.17232,-1.43081,-1.54245,-0.17058,1.96874,0.00382
+5.86387,1.17258,-1.43071,-1.54213,-0.17100,1.96849,0.00382
+5.86637,1.17284,-1.43061,-1.54182,-0.17142,1.96823,0.00381
+5.86886,1.17287,-1.43060,-1.54179,-0.17146,1.96821,0.00381
+5.87135,1.17314,-1.43048,-1.54156,-0.17181,1.96794,0.00381
+5.87385,1.17348,-1.43032,-1.54136,-0.17217,1.96760,0.00381
+5.87634,1.17366,-1.43023,-1.54127,-0.17235,1.96742,0.00381
+5.87883,1.17406,-1.43003,-1.54117,-0.17266,1.96703,0.00381
+5.88133,1.17431,-1.42990,-1.54114,-0.17282,1.96678,0.00381
+5.88382,1.17440,-1.42984,-1.54118,-0.17284,1.96669,0.00381
+5.88631,1.17491,-1.42954,-1.54143,-0.17290,1.96619,0.00381
+5.88881,1.17540,-1.42924,-1.54168,-0.17296,1.96570,0.00381
+5.89130,1.17589,-1.42895,-1.54192,-0.17301,1.96521,0.00381
+5.89379,1.17637,-1.42866,-1.54216,-0.17307,1.96474,0.00381
+5.89629,1.17685,-1.42837,-1.54240,-0.17312,1.96427,0.00381
+5.89878,1.17733,-1.42808,-1.54268,-0.17315,1.96378,0.00381
+5.90127,1.17781,-1.42778,-1.54295,-0.17317,1.96331,0.00381
+5.90376,1.17829,-1.42750,-1.54323,-0.17319,1.96284,0.00381
+5.90626,1.17879,-1.42719,-1.54354,-0.17320,1.96234,0.00381
+5.90875,1.17928,-1.42688,-1.54384,-0.17321,1.96185,0.00381
+5.91124,1.17977,-1.42658,-1.54413,-0.17322,1.96137,0.00381
+5.91374,1.18025,-1.42629,-1.54443,-0.17323,1.96089,0.00381
+5.91623,1.18072,-1.42600,-1.54471,-0.17324,1.96042,0.00381
+5.91872,1.18091,-1.42589,-1.54483,-0.17324,1.96023,0.00381
+5.92122,1.18139,-1.42559,-1.54516,-0.17321,1.95975,0.00381
+5.92371,1.18187,-1.42529,-1.54548,-0.17319,1.95928,0.00381
+5.92620,1.18233,-1.42500,-1.54580,-0.17317,1.95882,0.00380
+5.92870,1.18257,-1.42486,-1.54596,-0.17316,1.95859,0.00380
+5.93119,1.18304,-1.42456,-1.54630,-0.17312,1.95811,0.00380
+5.93368,1.18351,-1.42427,-1.54664,-0.17308,1.95765,0.00380
+5.93618,1.18397,-1.42398,-1.54697,-0.17305,1.95719,0.00380
+5.93867,1.18402,-1.42395,-1.54701,-0.17304,1.95714,0.00380
+5.94116,1.18449,-1.42365,-1.54738,-0.17297,1.95667,0.00380
+5.94365,1.18496,-1.42336,-1.54775,-0.17291,1.95621,0.00380
+5.94615,1.18542,-1.42307,-1.54811,-0.17284,1.95575,0.00380
+5.94864,1.18578,-1.42284,-1.54840,-0.17279,1.95539,0.00380
+5.95113,1.18624,-1.42254,-1.54879,-0.17269,1.95493,0.00380
+5.95363,1.18670,-1.42225,-1.54919,-0.17260,1.95447,0.00380
+5.95612,1.18715,-1.42197,-1.54957,-0.17251,1.95402,0.00380
+5.95861,1.18759,-1.42168,-1.54995,-0.17242,1.95358,0.00380
+5.96111,1.18764,-1.42165,-1.55000,-0.17241,1.95353,0.00380
+5.96360,1.18812,-1.42134,-1.55043,-0.17229,1.95306,0.00380
+5.96609,1.18859,-1.42104,-1.55085,-0.17218,1.95259,0.00380
+5.96859,1.18905,-1.42074,-1.55127,-0.17206,1.95213,0.00380
+5.97108,1.18950,-1.42045,-1.55168,-0.17195,1.95168,0.00380
+5.97357,1.18995,-1.42016,-1.55208,-0.17184,1.95123,0.00380
+5.97607,1.19039,-1.41988,-1.55248,-0.17173,1.95079,0.00380
+5.97856,1.19065,-1.41971,-1.55272,-0.17167,1.95053,0.00380
+5.98105,1.19110,-1.41942,-1.55316,-0.17153,1.95008,0.00380
+5.98355,1.19154,-1.41913,-1.55358,-0.17139,1.94964,0.00380
+5.98604,1.19198,-1.41885,-1.55401,-0.17126,1.94921,0.00380
+5.98853,1.19241,-1.41857,-1.55442,-0.17113,1.94878,0.00380
+5.99102,1.19259,-1.41845,-1.55460,-0.17107,1.94860,0.00380
+5.99352,1.19313,-1.41809,-1.55518,-0.17086,1.94806,0.00380
+5.99601,1.19366,-1.41774,-1.55575,-0.17065,1.94753,0.00380
+5.99850,1.19419,-1.41739,-1.55632,-0.17044,1.94700,0.00380
+6.00100,1.19470,-1.41705,-1.55687,-0.17024,1.94649,0.00380
+6.00349,1.19521,-1.41671,-1.55741,-0.17004,1.94598,0.00380
+6.00598,1.19571,-1.41638,-1.55795,-0.16985,1.94548,0.00380
+6.00848,1.19621,-1.41605,-1.55847,-0.16965,1.94499,0.00380
+6.01097,1.19669,-1.41573,-1.55899,-0.16946,1.94450,0.00380
+6.01346,1.19717,-1.41541,-1.55950,-0.16928,1.94403,0.00380
+6.01596,1.19764,-1.41510,-1.56000,-0.16909,1.94356,0.00380
+6.01845,1.19810,-1.41480,-1.56049,-0.16891,1.94309,0.00380
+6.02094,1.19856,-1.41450,-1.56097,-0.16874,1.94264,0.00380
+6.02344,1.19900,-1.41420,-1.56145,-0.16856,1.94219,0.00380
+6.02593,1.19945,-1.41391,-1.56192,-0.16839,1.94175,0.00380
+6.02842,1.19988,-1.41362,-1.56238,-0.16822,1.94131,0.00380
+6.03091,1.20031,-1.41334,-1.56283,-0.16806,1.94088,0.00380
+6.03341,1.20073,-1.41306,-1.56328,-0.16789,1.94046,0.00380
+6.03590,1.20114,-1.41279,-1.56371,-0.16773,1.94005,0.00381
+6.03839,1.20135,-1.41265,-1.56394,-0.16765,1.93983,0.00381
+6.04089,1.20182,-1.41234,-1.56445,-0.16745,1.93937,0.00381
+6.04338,1.20228,-1.41204,-1.56496,-0.16725,1.93891,0.00381
+6.04587,1.20273,-1.41174,-1.56546,-0.16706,1.93845,0.00381
+6.04837,1.20318,-1.41144,-1.56595,-0.16687,1.93801,0.00381
+6.05086,1.20362,-1.41115,-1.56643,-0.16668,1.93757,0.00381
+6.05335,1.20405,-1.41087,-1.56690,-0.16650,1.93714,0.00381
+6.05585,1.20447,-1.41059,-1.56737,-0.16632,1.93671,0.00381
+6.05834,1.20489,-1.41031,-1.56783,-0.16614,1.93629,0.00381
+6.06083,1.20530,-1.41004,-1.56828,-0.16597,1.93588,0.00381
+6.06333,1.20571,-1.40976,-1.56873,-0.16579,1.93547,0.00381
+6.06582,1.20617,-1.40946,-1.56928,-0.16556,1.93501,0.00381
+6.06831,1.20663,-1.40915,-1.56981,-0.16534,1.93455,0.00381
+6.07081,1.20707,-1.40885,-1.57033,-0.16512,1.93410,0.00381
+6.07330,1.20751,-1.40856,-1.57085,-0.16490,1.93366,0.00381
+6.07579,1.20795,-1.40827,-1.57136,-0.16469,1.93323,0.00382
+6.07828,1.20837,-1.40798,-1.57186,-0.16448,1.93280,0.00382
+6.08078,1.20879,-1.40770,-1.57235,-0.16427,1.93238,0.00382
+6.08327,1.20920,-1.40743,-1.57283,-0.16407,1.93197,0.00382
+6.08576,1.20961,-1.40716,-1.57331,-0.16387,1.93156,0.00382
+6.08826,1.21001,-1.40689,-1.57377,-0.16367,1.93116,0.00382
+6.09075,1.21040,-1.40663,-1.57423,-0.16348,1.93076,0.00382
+6.09324,1.21049,-1.40657,-1.57433,-0.16344,1.93068,0.00382
+6.09574,1.21096,-1.40626,-1.57490,-0.16319,1.93021,0.00382
+6.09823,1.21142,-1.40595,-1.57546,-0.16295,1.92974,0.00382
+6.10072,1.21188,-1.40564,-1.57600,-0.16271,1.92929,0.00382
+6.10322,1.21232,-1.40534,-1.57654,-0.16248,1.92884,0.00382
+6.10571,1.21276,-1.40504,-1.57707,-0.16225,1.92839,0.00383
+6.10820,1.21320,-1.40475,-1.57759,-0.16202,1.92796,0.00383
+6.11070,1.21363,-1.40447,-1.57811,-0.16180,1.92753,0.00383
+6.11319,1.21405,-1.40419,-1.57861,-0.16158,1.92711,0.00383
+6.11568,1.21446,-1.40391,-1.57911,-0.16137,1.92669,0.00383
+6.11818,1.21487,-1.40364,-1.57959,-0.16115,1.92628,0.00383
+6.12067,1.21527,-1.40337,-1.58007,-0.16095,1.92588,0.00383
+6.12316,1.21567,-1.40311,-1.58054,-0.16074,1.92548,0.00383
+6.12565,1.21606,-1.40285,-1.58101,-0.16054,1.92509,0.00383
+6.12815,1.21614,-1.40279,-1.58111,-0.16050,1.92501,0.00383
+6.13064,1.21658,-1.40249,-1.58165,-0.16026,1.92456,0.00384
+6.13313,1.21702,-1.40220,-1.58218,-0.16002,1.92412,0.00384
+6.13563,1.21745,-1.40191,-1.58270,-0.15979,1.92369,0.00384
+6.13812,1.21788,-1.40163,-1.58322,-0.15956,1.92326,0.00384
+6.14061,1.21829,-1.40135,-1.58372,-0.15934,1.92284,0.00384
+6.14311,1.21871,-1.40108,-1.58422,-0.15912,1.92243,0.00384
+6.14560,1.21911,-1.40081,-1.58471,-0.15890,1.92202,0.00384
+6.14809,1.21951,-1.40054,-1.58519,-0.15869,1.92162,0.00384
+6.15059,1.21990,-1.40028,-1.58567,-0.15848,1.92123,0.00384
+6.15308,1.22029,-1.40002,-1.58613,-0.15828,1.92084,0.00385
+6.15557,1.22037,-1.39997,-1.58624,-0.15823,1.92076,0.00385
+6.15807,1.22081,-1.39967,-1.58680,-0.15797,1.92031,0.00385
+6.16056,1.22125,-1.39938,-1.58735,-0.15771,1.91988,0.00385
+6.16305,1.22168,-1.39909,-1.58789,-0.15746,1.91945,0.00385
+6.16554,1.22210,-1.39881,-1.58843,-0.15721,1.91902,0.00385
+6.16804,1.22251,-1.39853,-1.58895,-0.15697,1.91861,0.00385
+6.17053,1.22292,-1.39825,-1.58947,-0.15673,1.91820,0.00385
+6.17302,1.22332,-1.39798,-1.58998,-0.15649,1.91779,0.00386
+6.17552,1.22372,-1.39772,-1.59048,-0.15626,1.91739,0.00386
+6.17801,1.22411,-1.39746,-1.59097,-0.15603,1.91700,0.00386
+6.18050,1.22449,-1.39720,-1.59145,-0.15581,1.91661,0.00386
+6.18300,1.22487,-1.39695,-1.59193,-0.15559,1.91623,0.00386
+6.18549,1.22503,-1.39684,-1.59213,-0.15550,1.91607,0.00386
+6.18798,1.22548,-1.39654,-1.59273,-0.15521,1.91562,0.00386
+6.19048,1.22593,-1.39624,-1.59332,-0.15492,1.91517,0.00386
+6.19297,1.22637,-1.39594,-1.59389,-0.15464,1.91473,0.00386
+6.19546,1.22680,-1.39565,-1.59446,-0.15437,1.91429,0.00387
+6.19796,1.22723,-1.39536,-1.59502,-0.15410,1.91387,0.00387
+6.20045,1.22765,-1.39508,-1.59557,-0.15384,1.91344,0.00387
+6.20294,1.22806,-1.39480,-1.59611,-0.15358,1.91303,0.00387
+6.20544,1.22847,-1.39453,-1.59665,-0.15332,1.91262,0.00387
+6.20793,1.22887,-1.39426,-1.59717,-0.15307,1.91222,0.00387
+6.21042,1.22926,-1.39400,-1.59768,-0.15282,1.91182,0.00387
+6.21291,1.22965,-1.39374,-1.59819,-0.15258,1.91143,0.00388
+6.21541,1.23003,-1.39348,-1.59869,-0.15234,1.91104,0.00388
+6.21790,1.23041,-1.39323,-1.59918,-0.15210,1.91067,0.00388
+6.22039,1.23078,-1.39298,-1.59966,-0.15187,1.91029,0.00388
+6.22289,1.23094,-1.39287,-1.59987,-0.15177,1.91013,0.00388
+6.22538,1.23148,-1.39252,-1.60055,-0.15145,1.90959,0.00388
+6.22787,1.23200,-1.39217,-1.60122,-0.15113,1.90907,0.00388
+6.23037,1.23252,-1.39183,-1.60187,-0.15082,1.90855,0.00389
+6.23286,1.23302,-1.39150,-1.60252,-0.15052,1.90804,0.00389
+6.23535,1.23352,-1.39117,-1.60315,-0.15022,1.90754,0.00389
+6.23785,1.23402,-1.39084,-1.60378,-0.14992,1.90705,0.00389
+6.24034,1.23450,-1.39052,-1.60439,-0.14963,1.90656,0.00389
+6.24283,1.23498,-1.39020,-1.60499,-0.14935,1.90608,0.00389
+6.24533,1.23545,-1.38989,-1.60559,-0.14907,1.90561,0.00390
+6.24782,1.23591,-1.38959,-1.60617,-0.14879,1.90515,0.00390
+6.25031,1.23637,-1.38929,-1.60675,-0.14852,1.90469,0.00390
+6.25280,1.23682,-1.38899,-1.60731,-0.14825,1.90424,0.00390
+6.25530,1.23726,-1.38870,-1.60787,-0.14799,1.90379,0.00390
+6.25779,1.23770,-1.38842,-1.60841,-0.14773,1.90335,0.00390
+6.26028,1.23813,-1.38813,-1.60895,-0.14748,1.90292,0.00391
+6.26278,1.23855,-1.38786,-1.60948,-0.14723,1.90250,0.00391
+6.26527,1.23896,-1.38758,-1.61000,-0.14699,1.90208,0.00391
+6.26776,1.23937,-1.38732,-1.61051,-0.14675,1.90167,0.00391
+6.27026,1.23978,-1.38705,-1.61101,-0.14651,1.90126,0.00391
+6.27275,1.24017,-1.38679,-1.61150,-0.14628,1.90086,0.00391
+6.27524,1.24056,-1.38654,-1.61199,-0.14605,1.90047,0.00392
+6.27774,1.24095,-1.38629,-1.61247,-0.14582,1.90008,0.00392
+6.28023,1.24133,-1.38604,-1.61294,-0.14560,1.89970,0.00392
+6.28272,1.24137,-1.38601,-1.61299,-0.14558,1.89966,0.00392
+6.28522,1.24181,-1.38572,-1.61354,-0.14532,1.89922,0.00392
+6.28771,1.24224,-1.38544,-1.61408,-0.14506,1.89879,0.00392
+6.29020,1.24266,-1.38517,-1.61461,-0.14481,1.89836,0.00393
+6.29270,1.24308,-1.38490,-1.61513,-0.14457,1.89794,0.00393
+6.29519,1.24349,-1.38463,-1.61564,-0.14433,1.89753,0.00393
+6.29768,1.24389,-1.38437,-1.61614,-0.14409,1.89713,0.00393
+6.30017,1.24429,-1.38411,-1.61663,-0.14386,1.89673,0.00393
+6.30267,1.24468,-1.38385,-1.61712,-0.14363,1.89633,0.00393
+6.30516,1.24506,-1.38360,-1.61760,-0.14340,1.89594,0.00394
+6.30765,1.24544,-1.38336,-1.61807,-0.14318,1.89556,0.00394
+6.31015,1.24549,-1.38333,-1.61812,-0.14315,1.89552,0.00394
+6.31264,1.24593,-1.38304,-1.61865,-0.14291,1.89508,0.00394
+6.31513,1.24636,-1.38277,-1.61917,-0.14267,1.89464,0.00394
+6.31763,1.24678,-1.38249,-1.61968,-0.14244,1.89422,0.00394
+6.32012,1.24720,-1.38223,-1.62018,-0.14221,1.89380,0.00394
+6.32261,1.24761,-1.38196,-1.62067,-0.14198,1.89338,0.00395
+6.32511,1.24802,-1.38170,-1.62115,-0.14176,1.89298,0.00395
+6.32760,1.24842,-1.38144,-1.62163,-0.14154,1.89257,0.00395
+6.33009,1.24881,-1.38119,-1.62210,-0.14132,1.89218,0.00395
+6.33259,1.24917,-1.38096,-1.62253,-0.14113,1.89182,0.00395
+6.33508,1.24966,-1.38065,-1.62310,-0.14087,1.89133,0.00396
+6.33757,1.25014,-1.38034,-1.62367,-0.14061,1.89084,0.00396
+6.34006,1.25061,-1.38004,-1.62423,-0.14036,1.89037,0.00396
+6.34256,1.25108,-1.37975,-1.62477,-0.14011,1.88990,0.00396
+6.34505,1.25154,-1.37945,-1.62531,-0.13986,1.88944,0.00396
+6.34754,1.25199,-1.37917,-1.62584,-0.13962,1.88898,0.00397
+6.35004,1.25244,-1.37888,-1.62636,-0.13939,1.88854,0.00397
+6.35253,1.25288,-1.37860,-1.62687,-0.13916,1.88809,0.00397
+6.35502,1.25331,-1.37833,-1.62738,-0.13893,1.88766,0.00397
+6.35752,1.25374,-1.37806,-1.62787,-0.13870,1.88723,0.00397
+6.36001,1.25416,-1.37780,-1.62836,-0.13848,1.88681,0.00398
+6.36250,1.25457,-1.37754,-1.62884,-0.13827,1.88639,0.00398
+6.36500,1.25498,-1.37728,-1.62931,-0.13805,1.88599,0.00398
+6.36749,1.25538,-1.37703,-1.62977,-0.13784,1.88558,0.00398
+6.36998,1.25578,-1.37677,-1.63024,-0.13764,1.88518,0.00398
+6.37248,1.25623,-1.37649,-1.63075,-0.13741,1.88473,0.00398
+6.37497,1.25668,-1.37621,-1.63125,-0.13719,1.88428,0.00399
+6.37746,1.25712,-1.37593,-1.63175,-0.13697,1.88384,0.00399
+6.37996,1.25755,-1.37566,-1.63224,-0.13675,1.88340,0.00399
+6.38245,1.25798,-1.37540,-1.63272,-0.13654,1.88297,0.00399
+6.38494,1.25840,-1.37513,-1.63319,-0.13633,1.88255,0.00399
+6.38743,1.25881,-1.37488,-1.63366,-0.13613,1.88214,0.00400
+6.38993,1.25922,-1.37462,-1.63411,-0.13592,1.88173,0.00400
+6.39242,1.25958,-1.37439,-1.63452,-0.13574,1.88136,0.00400
+6.39491,1.26004,-1.37411,-1.63503,-0.13552,1.88090,0.00400
+6.39741,1.26050,-1.37383,-1.63553,-0.13531,1.88044,0.00400
+6.39990,1.26094,-1.37355,-1.63602,-0.13509,1.87999,0.00401
+6.40239,1.26138,-1.37328,-1.63650,-0.13489,1.87955,0.00401
+6.40489,1.26182,-1.37301,-1.63698,-0.13468,1.87912,0.00401
+6.40738,1.26224,-1.37275,-1.63744,-0.13448,1.87869,0.00401
+6.40987,1.26266,-1.37249,-1.63790,-0.13428,1.87827,0.00401
+6.41237,1.26308,-1.37223,-1.63835,-0.13409,1.87785,0.00402
+6.41486,1.26349,-1.37198,-1.63880,-0.13389,1.87743,0.00402
+6.41735,1.26396,-1.37169,-1.63930,-0.13368,1.87697,0.00402
+6.41985,1.26442,-1.37141,-1.63980,-0.13347,1.87651,0.00402
+6.42234,1.26487,-1.37113,-1.64028,-0.13326,1.87605,0.00402
+6.42483,1.26531,-1.37086,-1.64076,-0.13306,1.87561,0.00403
+6.42732,1.26575,-1.37059,-1.64123,-0.13286,1.87516,0.00403
+6.42982,1.26618,-1.37033,-1.64169,-0.13267,1.87473,0.00403
+6.43231,1.26661,-1.37007,-1.64214,-0.13247,1.87430,0.00403
+6.43480,1.26703,-1.36981,-1.64259,-0.13229,1.87388,0.00403
+6.43730,1.26745,-1.36956,-1.64303,-0.13210,1.87346,0.00404
+6.43979,1.26790,-1.36929,-1.64352,-0.13189,1.87301,0.00404
+6.44228,1.26834,-1.36902,-1.64400,-0.13168,1.87257,0.00404
+6.44478,1.26877,-1.36875,-1.64447,-0.13148,1.87213,0.00404
+6.44727,1.26920,-1.36849,-1.64493,-0.13128,1.87170,0.00404
+6.44976,1.26963,-1.36823,-1.64538,-0.13108,1.87128,0.00405
+6.45226,1.27004,-1.36798,-1.64583,-0.13089,1.87086,0.00405
+6.45475,1.27046,-1.36773,-1.64628,-0.13069,1.87044,0.00405
+6.45724,1.27093,-1.36744,-1.64678,-0.13048,1.86997,0.00405
+6.45974,1.27139,-1.36716,-1.64727,-0.13027,1.86950,0.00405
+6.46223,1.27185,-1.36689,-1.64775,-0.13007,1.86905,0.00406
+6.46472,1.27230,-1.36662,-1.64822,-0.12987,1.86860,0.00406
+6.46722,1.27274,-1.36635,-1.64868,-0.12967,1.86815,0.00406
+6.46971,1.27317,-1.36609,-1.64914,-0.12948,1.86772,0.00406
+6.47220,1.27360,-1.36583,-1.64959,-0.12929,1.86729,0.00406
+6.47469,1.27402,-1.36558,-1.65003,-0.12910,1.86686,0.00407
+6.47719,1.27441,-1.36535,-1.65043,-0.12893,1.86648,0.00407
+6.47968,1.27490,-1.36505,-1.65095,-0.12871,1.86598,0.00407
+6.48217,1.27539,-1.36476,-1.65147,-0.12849,1.86549,0.00407
+6.48467,1.27588,-1.36447,-1.65197,-0.12828,1.86500,0.00407
+6.48716,1.27635,-1.36418,-1.65246,-0.12807,1.86453,0.00408
+6.48965,1.27682,-1.36390,-1.65295,-0.12787,1.86406,0.00408
+6.49215,1.27728,-1.36363,-1.65343,-0.12767,1.86360,0.00408
+6.49464,1.27773,-1.36336,-1.65390,-0.12747,1.86314,0.00408
+6.49713,1.27818,-1.36309,-1.65436,-0.12727,1.86269,0.00408
+6.49963,1.27862,-1.36283,-1.65482,-0.12708,1.86225,0.00409
+6.50212,1.27905,-1.36257,-1.65526,-0.12689,1.86182,0.00409
+6.50461,1.27948,-1.36232,-1.65571,-0.12671,1.86139,0.00409
+6.50711,1.27990,-1.36207,-1.65614,-0.12653,1.86096,0.00409
+6.50960,1.28000,-1.36201,-1.65625,-0.12648,1.86086,0.00409
+6.51209,1.28059,-1.36166,-1.65689,-0.12619,1.86027,0.00410
+6.51458,1.28117,-1.36131,-1.65752,-0.12590,1.85969,0.00410
+6.51708,1.28174,-1.36097,-1.65815,-0.12562,1.85912,0.00410
+6.51957,1.28231,-1.36064,-1.65876,-0.12535,1.85856,0.00410
+6.52206,1.28286,-1.36031,-1.65936,-0.12508,1.85800,0.00410
+6.52456,1.28341,-1.35999,-1.65995,-0.12481,1.85746,0.00411
+6.52705,1.28394,-1.35967,-1.66053,-0.12455,1.85692,0.00411
+6.52954,1.28447,-1.35935,-1.66111,-0.12430,1.85639,0.00411
+6.53204,1.28500,-1.35905,-1.66167,-0.12404,1.85587,0.00411
+6.53453,1.28551,-1.35874,-1.66222,-0.12380,1.85535,0.00412
+6.53702,1.28601,-1.35844,-1.66277,-0.12355,1.85484,0.00412
+6.53952,1.28651,-1.35815,-1.66330,-0.12331,1.85435,0.00412
+6.54201,1.28700,-1.35786,-1.66383,-0.12308,1.85385,0.00412
+6.54450,1.28749,-1.35758,-1.66435,-0.12285,1.85337,0.00412
+6.54700,1.28796,-1.35730,-1.66486,-0.12262,1.85289,0.00413
+6.54949,1.28843,-1.35702,-1.66536,-0.12240,1.85242,0.00413
+6.55198,1.28889,-1.35675,-1.66585,-0.12218,1.85196,0.00413
+6.55448,1.28934,-1.35648,-1.66633,-0.12196,1.85150,0.00413
+6.55697,1.28979,-1.35622,-1.66681,-0.12175,1.85105,0.00413
+6.55946,1.29023,-1.35596,-1.66728,-0.12154,1.85061,0.00414
+6.56195,1.29067,-1.35571,-1.66774,-0.12134,1.85017,0.00414
+6.56445,1.29109,-1.35546,-1.66819,-0.12113,1.84974,0.00414
+6.56694,1.29151,-1.35521,-1.66864,-0.12094,1.84932,0.00414
+6.56943,1.29193,-1.35497,-1.66908,-0.12074,1.84891,0.00414
+6.57193,1.29198,-1.35494,-1.66913,-0.12072,1.84885,0.00414
+6.57442,1.29247,-1.35465,-1.66969,-0.12045,1.84836,0.00415
+6.57691,1.29296,-1.35436,-1.67024,-0.12019,1.84787,0.00415
+6.57941,1.29344,-1.35408,-1.67078,-0.11994,1.84738,0.00415
+6.58190,1.29392,-1.35380,-1.67131,-0.11969,1.84691,0.00415
+6.58439,1.29438,-1.35353,-1.67183,-0.11944,1.84644,0.00415
+6.58689,1.29484,-1.35326,-1.67234,-0.11920,1.84598,0.00416
+6.58938,1.29530,-1.35299,-1.67285,-0.11896,1.84552,0.00416
+6.59187,1.29574,-1.35273,-1.67334,-0.11873,1.84508,0.00416
+6.59437,1.29618,-1.35248,-1.67383,-0.11850,1.84463,0.00416
+6.59686,1.29661,-1.35222,-1.67431,-0.11828,1.84420,0.00416
+6.59935,1.29704,-1.35197,-1.67478,-0.11805,1.84377,0.00417
+6.60184,1.29746,-1.35173,-1.67525,-0.11784,1.84335,0.00417
+6.60434,1.29787,-1.35149,-1.67570,-0.11762,1.84293,0.00417
+6.60683,1.29828,-1.35125,-1.67615,-0.11741,1.84253,0.00417
+6.60932,1.29845,-1.35115,-1.67634,-0.11732,1.84235,0.00417
+6.61182,1.29893,-1.35087,-1.67689,-0.11706,1.84187,0.00418
+6.61431,1.29941,-1.35059,-1.67743,-0.11681,1.84138,0.00418
+6.61680,1.29989,-1.35032,-1.67795,-0.11655,1.84091,0.00418
+6.61930,1.30035,-1.35005,-1.67847,-0.11631,1.84044,0.00418
+6.62179,1.30081,-1.34978,-1.67899,-0.11606,1.83998,0.00418
+6.62428,1.30126,-1.34952,-1.67949,-0.11582,1.83953,0.00419
+6.62678,1.30171,-1.34926,-1.67998,-0.11559,1.83908,0.00419
+6.62927,1.30214,-1.34901,-1.68047,-0.11536,1.83864,0.00419
+6.63176,1.30258,-1.34876,-1.68095,-0.11513,1.83821,0.00419
+6.63426,1.30300,-1.34851,-1.68142,-0.11491,1.83778,0.00419
+6.63675,1.30342,-1.34827,-1.68188,-0.11469,1.83736,0.00420
+6.63924,1.30383,-1.34803,-1.68233,-0.11447,1.83694,0.00420
+6.64174,1.30424,-1.34780,-1.68278,-0.11426,1.83653,0.00420
+6.64423,1.30436,-1.34773,-1.68293,-0.11419,1.83641,0.00420
+6.64672,1.30483,-1.34745,-1.68348,-0.11391,1.83594,0.00420
+6.64921,1.30528,-1.34719,-1.68403,-0.11363,1.83548,0.00420
+6.65171,1.30574,-1.34693,-1.68457,-0.11336,1.83503,0.00421
+6.65420,1.30618,-1.34667,-1.68509,-0.11309,1.83458,0.00421
+6.65669,1.30662,-1.34642,-1.68561,-0.11283,1.83414,0.00421
+6.65919,1.30705,-1.34617,-1.68613,-0.11257,1.83371,0.00421
+6.66168,1.30747,-1.34592,-1.68663,-0.11231,1.83328,0.00421
+6.66417,1.30789,-1.34568,-1.68712,-0.11206,1.83286,0.00422
+6.66667,1.30830,-1.34544,-1.68761,-0.11182,1.83245,0.00422
+6.66916,1.30870,-1.34521,-1.68809,-0.11157,1.83204,0.00422
+6.67165,1.30910,-1.34498,-1.68856,-0.11134,1.83164,0.00422
+6.67415,1.30949,-1.34475,-1.68902,-0.11110,1.83124,0.00422
+6.67664,1.30977,-1.34459,-1.68934,-0.11094,1.83097,0.00422
+6.67913,1.31017,-1.34435,-1.68986,-0.11066,1.83056,0.00423
+6.68163,1.31057,-1.34412,-1.69036,-0.11039,1.83016,0.00423
+6.68412,1.31096,-1.34389,-1.69086,-0.11013,1.82976,0.00423
+6.68661,1.31135,-1.34367,-1.69135,-0.10987,1.82937,0.00423
+6.68910,1.31173,-1.34345,-1.69183,-0.10961,1.82899,0.00423
+6.69160,1.31210,-1.34323,-1.69230,-0.10936,1.82861,0.00423
+6.69409,1.31233,-1.34310,-1.69259,-0.10920,1.82838,0.00424
+6.69658,1.31277,-1.34284,-1.69314,-0.10890,1.82794,0.00424
+6.69908,1.31319,-1.34260,-1.69369,-0.10860,1.82751,0.00424
+6.70157,1.31361,-1.34235,-1.69423,-0.10831,1.82709,0.00424
+6.70406,1.31403,-1.34211,-1.69476,-0.10802,1.82667,0.00424
+6.70656,1.31443,-1.34188,-1.69529,-0.10773,1.82626,0.00424
+6.70905,1.31484,-1.34164,-1.69580,-0.10746,1.82586,0.00425
+6.71154,1.31523,-1.34141,-1.69630,-0.10718,1.82546,0.00425
+6.71404,1.31562,-1.34119,-1.69680,-0.10691,1.82507,0.00425
+6.71653,1.31600,-1.34097,-1.69729,-0.10665,1.82468,0.00425
+6.71902,1.31638,-1.34075,-1.69777,-0.10639,1.82430,0.00425
+6.72152,1.31675,-1.34053,-1.69824,-0.10613,1.82393,0.00425
+6.72401,1.31694,-1.34042,-1.69848,-0.10600,1.82374,0.00426
+6.72650,1.31735,-1.34019,-1.69901,-0.10571,1.82332,0.00426
+6.72900,1.31775,-1.33996,-1.69954,-0.10542,1.82292,0.00426
+6.73149,1.31815,-1.33973,-1.70005,-0.10514,1.82252,0.00426
+6.73398,1.31854,-1.33950,-1.70056,-0.10486,1.82213,0.00426
+6.73647,1.31893,-1.33928,-1.70105,-0.10459,1.82174,0.00426
+6.73897,1.31930,-1.33906,-1.70154,-0.10432,1.82136,0.00427
+6.74146,1.31968,-1.33885,-1.70202,-0.10405,1.82098,0.00427
+6.74395,1.32004,-1.33863,-1.70250,-0.10379,1.82061,0.00427
+6.74645,1.32023,-1.33853,-1.70274,-0.10366,1.82042,0.00427
+6.74894,1.32063,-1.33829,-1.70327,-0.10336,1.82001,0.00427
+6.75143,1.32103,-1.33806,-1.70380,-0.10307,1.81961,0.00427
+6.75393,1.32142,-1.33784,-1.70431,-0.10278,1.81922,0.00428
+6.75642,1.32181,-1.33762,-1.70482,-0.10250,1.81883,0.00428
+6.75891,1.32219,-1.33740,-1.70532,-0.10222,1.81844,0.00428
+6.76141,1.32257,-1.33718,-1.70581,-0.10195,1.81807,0.00428
+6.76390,1.32294,-1.33697,-1.70629,-0.10168,1.81769,0.00428
+6.76639,1.32330,-1.33676,-1.70676,-0.10142,1.81733,0.00428
+6.76889,1.32345,-1.33668,-1.70697,-0.10130,1.81718,0.00429
+6.77138,1.32387,-1.33643,-1.70760,-0.10092,1.81675,0.00429
+6.77387,1.32429,-1.33619,-1.70823,-0.10054,1.81633,0.00429
+6.77636,1.32470,-1.33595,-1.70884,-0.10017,1.81592,0.00429
+6.77886,1.32510,-1.33571,-1.70944,-0.09980,1.81551,0.00429
+6.78135,1.32550,-1.33548,-1.71004,-0.09944,1.81511,0.00429
+6.78384,1.32589,-1.33525,-1.71062,-0.09909,1.81471,0.00430
+6.78634,1.32628,-1.33503,-1.71119,-0.09874,1.81432,0.00430
+6.78883,1.32666,-1.33481,-1.71176,-0.09840,1.81394,0.00430
+6.79132,1.32703,-1.33459,-1.71231,-0.09807,1.81356,0.00430
+6.79382,1.32740,-1.33438,-1.71286,-0.09774,1.81319,0.00430
+6.79631,1.32776,-1.33417,-1.71339,-0.09742,1.81282,0.00430
+6.79880,1.32812,-1.33396,-1.71392,-0.09710,1.81246,0.00431
+6.80130,1.32847,-1.33375,-1.71444,-0.09679,1.81211,0.00431
+6.80379,1.32882,-1.33355,-1.71495,-0.09648,1.81176,0.00431
+6.80628,1.32916,-1.33336,-1.71545,-0.09618,1.81141,0.00431
+6.80878,1.32950,-1.33316,-1.71594,-0.09588,1.81107,0.00431
+6.81127,1.32983,-1.33297,-1.71642,-0.09559,1.81073,0.00431
+6.81376,1.32987,-1.33295,-1.71648,-0.09556,1.81070,0.00431
+6.81626,1.33024,-1.33273,-1.71703,-0.09523,1.81032,0.00432
+6.81875,1.33060,-1.33252,-1.71756,-0.09491,1.80995,0.00432
+6.82124,1.33096,-1.33231,-1.71809,-0.09459,1.80959,0.00432
+6.82373,1.33132,-1.33211,-1.71861,-0.09427,1.80923,0.00432
+6.82623,1.33167,-1.33191,-1.71912,-0.09396,1.80888,0.00432
+6.82872,1.33201,-1.33171,-1.71963,-0.09366,1.80853,0.00432
+6.83121,1.33235,-1.33152,-1.72012,-0.09336,1.80819,0.00433
+6.83371,1.33269,-1.33132,-1.72061,-0.09307,1.80785,0.00433
+6.83620,1.33282,-1.33125,-1.72080,-0.09295,1.80771,0.00433
+6.83869,1.33320,-1.33103,-1.72133,-0.09264,1.80733,0.00433
+6.84119,1.33356,-1.33082,-1.72185,-0.09233,1.80696,0.00433
+6.84368,1.33393,-1.33062,-1.72236,-0.09203,1.80660,0.00433
+6.84617,1.33428,-1.33042,-1.72286,-0.09174,1.80624,0.00433
+6.84867,1.33463,-1.33022,-1.72335,-0.09144,1.80588,0.00434
+6.85116,1.33498,-1.33002,-1.72384,-0.09116,1.80553,0.00434
+6.85365,1.33526,-1.32986,-1.72423,-0.09093,1.80525,0.00434
+6.85615,1.33564,-1.32965,-1.72477,-0.09060,1.80487,0.00434
+6.85864,1.33602,-1.32943,-1.72530,-0.09029,1.80449,0.00434
+6.86113,1.33639,-1.32923,-1.72582,-0.08998,1.80411,0.00434
+6.86363,1.33675,-1.32902,-1.72634,-0.08967,1.80375,0.00435
+6.86612,1.33711,-1.32882,-1.72684,-0.08937,1.80338,0.00435
+6.86861,1.33747,-1.32862,-1.72734,-0.08907,1.80302,0.00435
+6.87110,1.33782,-1.32842,-1.72783,-0.08878,1.80267,0.00435
+6.87360,1.33816,-1.32823,-1.72831,-0.08850,1.80232,0.00435
+6.87609,1.33830,-1.32815,-1.72850,-0.08838,1.80218,0.00435
+6.87858,1.33868,-1.32793,-1.72904,-0.08806,1.80180,0.00436
+6.88108,1.33906,-1.32772,-1.72958,-0.08774,1.80142,0.00436
+6.88357,1.33943,-1.32751,-1.73010,-0.08743,1.80104,0.00436
+6.88606,1.33980,-1.32731,-1.73061,-0.08712,1.80067,0.00436
+6.88856,1.34016,-1.32711,-1.73112,-0.08682,1.80031,0.00436
+6.89105,1.34051,-1.32691,-1.73161,-0.08652,1.79995,0.00436
+6.89354,1.34086,-1.32671,-1.73210,-0.08623,1.79960,0.00437
+6.89604,1.34120,-1.32652,-1.73258,-0.08594,1.79925,0.00437
+6.89853,1.34138,-1.32642,-1.73282,-0.08580,1.79908,0.00437
+6.90102,1.34174,-1.32622,-1.73336,-0.08547,1.79872,0.00437
+6.90352,1.34209,-1.32602,-1.73388,-0.08515,1.79836,0.00437
+6.90601,1.34244,-1.32583,-1.73439,-0.08483,1.79801,0.00437
+6.90850,1.34278,-1.32564,-1.73489,-0.08452,1.79766,0.00437
+6.91099,1.34312,-1.32545,-1.73539,-0.08422,1.79732,0.00438
+6.91349,1.34345,-1.32526,-1.73588,-0.08392,1.79699,0.00438
+6.91598,1.34372,-1.32511,-1.73627,-0.08368,1.79672,0.00438
+6.91847,1.34409,-1.32490,-1.73679,-0.08336,1.79634,0.00438
+6.92097,1.34445,-1.32470,-1.73731,-0.08305,1.79598,0.00438
+6.92346,1.34481,-1.32450,-1.73782,-0.08274,1.79561,0.00438
+6.92595,1.34516,-1.32431,-1.73832,-0.08244,1.79526,0.00439
+6.92845,1.34551,-1.32411,-1.73881,-0.08214,1.79491,0.00439
+6.93094,1.34586,-1.32392,-1.73929,-0.08185,1.79456,0.00439
+6.93343,1.34613,-1.32377,-1.73968,-0.08162,1.79428,0.00439
+6.93593,1.34648,-1.32357,-1.74023,-0.08127,1.79392,0.00439
+6.93842,1.34684,-1.32338,-1.74077,-0.08093,1.79357,0.00439
+6.94091,1.34718,-1.32318,-1.74130,-0.08059,1.79322,0.00440
+6.94341,1.34752,-1.32299,-1.74182,-0.08026,1.79288,0.00440
+6.94590,1.34786,-1.32281,-1.74233,-0.07994,1.79254,0.00440
+6.94839,1.34819,-1.32262,-1.74284,-0.07962,1.79221,0.00440
+6.95089,1.34851,-1.32244,-1.74333,-0.07930,1.79188,0.00440
+6.95338,1.34883,-1.32226,-1.74382,-0.07900,1.79155,0.00440
+6.95587,1.34900,-1.32217,-1.74408,-0.07883,1.79138,0.00440
+6.95836,1.34940,-1.32195,-1.74473,-0.07841,1.79097,0.00441
+6.96086,1.34980,-1.32172,-1.74537,-0.07799,1.79057,0.00441
+6.96335,1.35020,-1.32151,-1.74601,-0.07758,1.79018,0.00441
+6.96584,1.35058,-1.32129,-1.74663,-0.07718,1.78979,0.00441
+6.96834,1.35097,-1.32108,-1.74723,-0.07678,1.78940,0.00441
+6.97083,1.35134,-1.32087,-1.74783,-0.07640,1.78902,0.00441
+6.97332,1.35171,-1.32067,-1.74842,-0.07601,1.78865,0.00442
+6.97582,1.35208,-1.32047,-1.74900,-0.07564,1.78828,0.00442
+6.97831,1.35243,-1.32027,-1.74957,-0.07527,1.78792,0.00442
+6.98080,1.35279,-1.32007,-1.75013,-0.07491,1.78756,0.00442
+6.98330,1.35314,-1.31988,-1.75068,-0.07455,1.78721,0.00442
+6.98579,1.35348,-1.31969,-1.75122,-0.07420,1.78686,0.00442
+6.98828,1.35382,-1.31950,-1.75175,-0.07386,1.78652,0.00443
+6.99078,1.35415,-1.31932,-1.75228,-0.07352,1.78619,0.00443
+6.99327,1.35448,-1.31914,-1.75279,-0.07319,1.78585,0.00443
+6.99576,1.35480,-1.31896,-1.75330,-0.07286,1.78553,0.00443
+6.99825,1.35512,-1.31879,-1.75379,-0.07254,1.78521,0.00443
+7.00075,1.35543,-1.31861,-1.75428,-0.07223,1.78489,0.00443
+7.00324,1.35562,-1.31851,-1.75458,-0.07204,1.78470,0.00444
+7.00573,1.35595,-1.31833,-1.75512,-0.07168,1.78437,0.00444
+7.00823,1.35627,-1.31815,-1.75565,-0.07133,1.78404,0.00444
+7.01072,1.35659,-1.31798,-1.75617,-0.07099,1.78371,0.00444
+7.01321,1.35691,-1.31780,-1.75668,-0.07065,1.78340,0.00444
+7.01571,1.35722,-1.31763,-1.75718,-0.07032,1.78308,0.00444
+7.01820,1.35752,-1.31746,-1.75767,-0.07000,1.78277,0.00444
+7.02069,1.35779,-1.31731,-1.75811,-0.06971,1.78250,0.00445
+7.02319,1.35811,-1.31714,-1.75864,-0.06936,1.78218,0.00445
+7.02568,1.35843,-1.31697,-1.75915,-0.06902,1.78186,0.00445
+7.02817,1.35874,-1.31680,-1.75966,-0.06869,1.78154,0.00445
+7.03067,1.35904,-1.31663,-1.76015,-0.06836,1.78123,0.00445
+7.03316,1.35934,-1.31646,-1.76064,-0.06804,1.78093,0.00445
+7.03565,1.35941,-1.31643,-1.76074,-0.06797,1.78087,0.00445
+7.03815,1.35972,-1.31626,-1.76126,-0.06763,1.78054,0.00446
+7.04064,1.36004,-1.31609,-1.76178,-0.06729,1.78023,0.00446
+7.04313,1.36035,-1.31592,-1.76228,-0.06695,1.77991,0.00446
+7.04562,1.36065,-1.31575,-1.76278,-0.06662,1.77961,0.00446
+7.04812,1.36095,-1.31559,-1.76326,-0.06630,1.77930,0.00446
+7.05061,1.36101,-1.31555,-1.76336,-0.06624,1.77924,0.00446
+7.05310,1.36133,-1.31538,-1.76387,-0.06591,1.77892,0.00446
+7.05560,1.36164,-1.31521,-1.76436,-0.06558,1.77860,0.00446
+7.05809,1.36195,-1.31505,-1.76485,-0.06526,1.77829,0.00447
+7.06058,1.36208,-1.31498,-1.76504,-0.06514,1.77816,0.00447
+7.06308,1.36240,-1.31480,-1.76554,-0.06481,1.77784,0.00447
+7.06557,1.36272,-1.31463,-1.76604,-0.06449,1.77751,0.00447
+7.06806,1.36304,-1.31446,-1.76652,-0.06418,1.77719,0.00447
+7.07056,1.36316,-1.31439,-1.76672,-0.06405,1.77707,0.00447
+7.07305,1.36347,-1.31423,-1.76721,-0.06373,1.77675,0.00447
+7.07554,1.36375,-1.31408,-1.76764,-0.06344,1.77648,0.00448
+7.07804,1.36405,-1.31392,-1.76814,-0.06311,1.77617,0.00448
+7.08053,1.36431,-1.31377,-1.76858,-0.06282,1.77590,0.00448
+7.08302,1.36460,-1.31362,-1.76907,-0.06248,1.77561,0.00448
+7.08551,1.36489,-1.31346,-1.76956,-0.06215,1.77532,0.00448
+7.08801,1.36517,-1.31331,-1.77006,-0.06181,1.77503,0.00448
+7.09050,1.36543,-1.31317,-1.77042,-0.06158,1.77478,0.00448
+7.09299,1.36571,-1.31305,-1.77011,-0.06201,1.77449,0.00449
+7.09549,1.36600,-1.31292,-1.76980,-0.06243,1.77421,0.00449
+7.09798,1.36617,-1.31285,-1.76961,-0.06269,1.77404,0.00449
+7.10047,1.36645,-1.31273,-1.76926,-0.06315,1.77376,0.00449
+7.10297,1.36672,-1.31261,-1.76891,-0.06360,1.77349,0.00450
+7.10546,1.36699,-1.31250,-1.76857,-0.06405,1.77322,0.00450
+7.10795,1.36725,-1.31239,-1.76824,-0.06449,1.77296,0.00450
+7.11045,1.36752,-1.31228,-1.76791,-0.06492,1.77270,0.00451
+7.11294,1.36767,-1.31221,-1.76771,-0.06518,1.77255,0.00451
+7.11543,1.36793,-1.31211,-1.76735,-0.06563,1.77230,0.00451
+7.11793,1.36818,-1.31200,-1.76700,-0.06608,1.77205,0.00451
+7.12042,1.36842,-1.31190,-1.76666,-0.06652,1.77180,0.00451
+7.12291,1.36864,-1.31181,-1.76635,-0.06691,1.77158,0.00452
+7.12541,1.36888,-1.31172,-1.76596,-0.06738,1.77134,0.00452
+7.12790,1.36912,-1.31162,-1.76558,-0.06785,1.77111,0.00452
+7.13039,1.36936,-1.31153,-1.76521,-0.06831,1.77088,0.00452
+7.13288,1.36958,-1.31144,-1.76484,-0.06876,1.77065,0.00452
+7.13538,1.36981,-1.31135,-1.76448,-0.06920,1.77043,0.00453
+7.13787,1.37001,-1.31128,-1.76415,-0.06960,1.77023,0.00453
+7.14036,1.37021,-1.31120,-1.76372,-0.07010,1.77003,0.00453
+7.14286,1.37040,-1.31113,-1.76330,-0.07058,1.76984,0.00453
+7.14535,1.37059,-1.31107,-1.76288,-0.07106,1.76965,0.00453
+7.14784,1.37078,-1.31100,-1.76247,-0.07153,1.76947,0.00454
+7.15034,1.37096,-1.31093,-1.76207,-0.07199,1.76928,0.00454
+7.15283,1.37114,-1.31087,-1.76168,-0.07244,1.76910,0.00454
+7.15532,1.37132,-1.31081,-1.76128,-0.07290,1.76893,0.00454
+7.15782,1.37145,-1.31077,-1.76075,-0.07345,1.76880,0.00454
+7.16031,1.37158,-1.31074,-1.76024,-0.07399,1.76867,0.00454
+7.16280,1.37170,-1.31071,-1.75973,-0.07452,1.76855,0.00455
+7.16530,1.37183,-1.31067,-1.75924,-0.07504,1.76843,0.00455
+7.16779,1.37195,-1.31064,-1.75875,-0.07556,1.76831,0.00455
+7.17028,1.37207,-1.31061,-1.75827,-0.07606,1.76819,0.00455
+7.17277,1.37219,-1.31058,-1.75779,-0.07656,1.76807,0.00455
+7.17527,1.37230,-1.31056,-1.75733,-0.07704,1.76796,0.00455
+7.17776,1.37242,-1.31053,-1.75687,-0.07752,1.76784,0.00455
+7.18025,1.37253,-1.31050,-1.75643,-0.07799,1.76773,0.00455
+7.18275,1.37264,-1.31048,-1.75598,-0.07845,1.76762,0.00455
+7.18524,1.37275,-1.31045,-1.75555,-0.07891,1.76751,0.00456
+7.18773,1.37280,-1.31044,-1.75533,-0.07914,1.76747,0.00456
+7.19023,1.37286,-1.31044,-1.75482,-0.07964,1.76741,0.00456
+7.19272,1.37291,-1.31044,-1.75432,-0.08014,1.76735,0.00456
+7.19521,1.37297,-1.31045,-1.75382,-0.08062,1.76729,0.00456
+7.19771,1.37303,-1.31045,-1.75334,-0.08110,1.76724,0.00456
+7.20020,1.37308,-1.31045,-1.75286,-0.08157,1.76718,0.00456
+7.20269,1.37314,-1.31045,-1.75239,-0.08203,1.76713,0.00456
+7.20519,1.37319,-1.31046,-1.75193,-0.08248,1.76707,0.00456
+7.20768,1.37322,-1.31046,-1.75160,-0.08281,1.76704,0.00456
+7.21017,1.37323,-1.31049,-1.75105,-0.08332,1.76704,0.00456
+7.21267,1.37323,-1.31052,-1.75051,-0.08384,1.76703,0.00456
+7.21516,1.37324,-1.31055,-1.74997,-0.08434,1.76703,0.00456
+7.21765,1.37324,-1.31058,-1.74944,-0.08483,1.76702,0.00456
+7.22014,1.37325,-1.31061,-1.74893,-0.08531,1.76702,0.00456
+7.22264,1.37325,-1.31064,-1.74842,-0.08579,1.76701,0.00456
+7.22513,1.37326,-1.31067,-1.74792,-0.08626,1.76701,0.00456
+7.22762,1.37326,-1.31070,-1.74742,-0.08671,1.76701,0.00456
+7.23012,1.37326,-1.31073,-1.74694,-0.08717,1.76700,0.00456
+7.23261,1.37327,-1.31076,-1.74647,-0.08761,1.76700,0.00456
+7.23510,1.37327,-1.31076,-1.74637,-0.08770,1.76700,0.00456
+7.23760,1.37325,-1.31081,-1.74584,-0.08818,1.76702,0.00456
+7.24009,1.37323,-1.31085,-1.74532,-0.08866,1.76704,0.00456
+7.24258,1.37321,-1.31089,-1.74481,-0.08912,1.76706,0.00456
+7.24508,1.37319,-1.31093,-1.74430,-0.08958,1.76708,0.00457
+7.24757,1.37317,-1.31097,-1.74381,-0.09003,1.76710,0.00457
+7.25006,1.37315,-1.31101,-1.74333,-0.09047,1.76712,0.00457
+7.25256,1.37314,-1.31103,-1.74312,-0.09065,1.76713,0.00457
+7.25505,1.37305,-1.31111,-1.74253,-0.09116,1.76722,0.00456
+7.25754,1.37296,-1.31119,-1.74196,-0.09166,1.76731,0.00456
+7.26003,1.37288,-1.31127,-1.74139,-0.09215,1.76739,0.00456
+7.26253,1.37279,-1.31134,-1.74083,-0.09263,1.76748,0.00456
+7.26502,1.37271,-1.31142,-1.74028,-0.09310,1.76756,0.00456
+7.26751,1.37262,-1.31149,-1.73974,-0.09356,1.76764,0.00456
+7.27001,1.37254,-1.31156,-1.73920,-0.09402,1.76773,0.00456
+7.27250,1.37246,-1.31164,-1.73868,-0.09446,1.76781,0.00456
+7.27499,1.37238,-1.31171,-1.73817,-0.09490,1.76789,0.00456
+7.27749,1.37230,-1.31178,-1.73766,-0.09534,1.76796,0.00456
+7.27998,1.37222,-1.31185,-1.73716,-0.09577,1.76805,0.00456
+7.28247,1.37210,-1.31195,-1.73658,-0.09625,1.76817,0.00456
+7.28497,1.37198,-1.31204,-1.73601,-0.09672,1.76829,0.00456
+7.28746,1.37186,-1.31214,-1.73545,-0.09718,1.76841,0.00456
+7.28995,1.37174,-1.31223,-1.73490,-0.09763,1.76852,0.00456
+7.29245,1.37163,-1.31232,-1.73436,-0.09808,1.76864,0.00456
+7.29494,1.37151,-1.31241,-1.73383,-0.09852,1.76875,0.00456
+7.29743,1.37140,-1.31250,-1.73331,-0.09895,1.76887,0.00456
+7.29993,1.37129,-1.31259,-1.73280,-0.09937,1.76898,0.00456
+7.30242,1.37118,-1.31267,-1.73229,-0.09979,1.76909,0.00456
+7.30491,1.37116,-1.31269,-1.73219,-0.09988,1.76911,0.00456
+7.30740,1.37100,-1.31280,-1.73162,-0.10033,1.76927,0.00456
+7.30990,1.37085,-1.31291,-1.73106,-0.10077,1.76942,0.00456
+7.31239,1.37070,-1.31302,-1.73052,-0.10121,1.76957,0.00455
+7.31488,1.37055,-1.31313,-1.72998,-0.10164,1.76971,0.00455
+7.31738,1.37041,-1.31323,-1.72945,-0.10206,1.76986,0.00455
+7.31987,1.37027,-1.31334,-1.72893,-0.10247,1.77000,0.00455
+7.32236,1.37012,-1.31344,-1.72842,-0.10288,1.77014,0.00455
+7.32486,1.37005,-1.31349,-1.72816,-0.10308,1.77022,0.00455
+7.32735,1.36989,-1.31361,-1.72760,-0.10353,1.77038,0.00455
+7.32984,1.36973,-1.31372,-1.72705,-0.10396,1.77053,0.00455
+7.33234,1.36958,-1.31383,-1.72651,-0.10439,1.77069,0.00455
+7.33483,1.36942,-1.31394,-1.72597,-0.10481,1.77084,0.00455
+7.33732,1.36927,-1.31405,-1.72545,-0.10523,1.77100,0.00455
+7.33982,1.36912,-1.31416,-1.72493,-0.10564,1.77115,0.00455
+7.34231,1.36899,-1.31426,-1.72447,-0.10600,1.77128,0.00454
+7.34480,1.36879,-1.31439,-1.72390,-0.10644,1.77147,0.00454
+7.34729,1.36861,-1.31452,-1.72333,-0.10687,1.77166,0.00454
+7.34979,1.36842,-1.31465,-1.72278,-0.10729,1.77185,0.00454
+7.35228,1.36824,-1.31477,-1.72224,-0.10771,1.77203,0.00454
+7.35477,1.36806,-1.31490,-1.72171,-0.10811,1.77221,0.00454
+7.35727,1.36788,-1.31502,-1.72118,-0.10852,1.77239,0.00454
+7.35976,1.36770,-1.31514,-1.72066,-0.10891,1.77257,0.00454
+7.36225,1.36758,-1.31523,-1.72030,-0.10919,1.77269,0.00454
+7.36475,1.36736,-1.31537,-1.71973,-0.10961,1.77291,0.00454
+7.36724,1.36715,-1.31551,-1.71916,-0.11003,1.77313,0.00453
+7.36973,1.36693,-1.31565,-1.71861,-0.11045,1.77334,0.00453
+7.37223,1.36673,-1.31579,-1.71807,-0.11085,1.77354,0.00453
+7.37472,1.36652,-1.31593,-1.71753,-0.11125,1.77375,0.00453
+7.37721,1.36632,-1.31606,-1.71700,-0.11164,1.77395,0.00453
+7.37971,1.36612,-1.31619,-1.71648,-0.11202,1.77415,0.00453
+7.38220,1.36594,-1.31632,-1.71601,-0.11237,1.77434,0.00453
+7.38469,1.36565,-1.31650,-1.71535,-0.11285,1.77462,0.00453
+7.38719,1.36537,-1.31668,-1.71470,-0.11332,1.77490,0.00453
+7.38968,1.36509,-1.31686,-1.71405,-0.11378,1.77518,0.00452
+7.39217,1.36482,-1.31703,-1.71342,-0.11424,1.77545,0.00452
+7.39466,1.36455,-1.31720,-1.71280,-0.11468,1.77572,0.00452
+7.39716,1.36428,-1.31737,-1.71219,-0.11512,1.77599,0.00452
+7.39965,1.36402,-1.31754,-1.71160,-0.11555,1.77625,0.00452
+7.40214,1.36377,-1.31771,-1.71101,-0.11597,1.77651,0.00452
+7.40464,1.36351,-1.31787,-1.71042,-0.11639,1.77676,0.00452
+7.40713,1.36326,-1.31803,-1.70985,-0.11680,1.77701,0.00451
+7.40962,1.36302,-1.31819,-1.70929,-0.11720,1.77726,0.00451
+7.41212,1.36278,-1.31835,-1.70874,-0.11759,1.77750,0.00451
+7.41461,1.36254,-1.31850,-1.70820,-0.11798,1.77774,0.00451
+7.41710,1.36230,-1.31866,-1.70766,-0.11836,1.77797,0.00451
+7.41960,1.36207,-1.31881,-1.70714,-0.11873,1.77820,0.00451
+7.42209,1.36184,-1.31896,-1.70662,-0.11910,1.77843,0.00451
+7.42458,1.36170,-1.31905,-1.70630,-0.11932,1.77858,0.00451
+7.42708,1.36138,-1.31924,-1.70568,-0.11975,1.77889,0.00450
+7.42957,1.36107,-1.31944,-1.70506,-0.12017,1.77920,0.00450
+7.43206,1.36077,-1.31963,-1.70445,-0.12059,1.77951,0.00450
+7.43455,1.36047,-1.31982,-1.70386,-0.12099,1.77981,0.00450
+7.43705,1.36017,-1.32000,-1.70327,-0.12139,1.78011,0.00450
+7.43954,1.35988,-1.32018,-1.70269,-0.12179,1.78040,0.00450
+7.44203,1.35959,-1.32037,-1.70212,-0.12217,1.78069,0.00449
+7.44453,1.35931,-1.32054,-1.70157,-0.12255,1.78097,0.00449
+7.44702,1.35903,-1.32072,-1.70102,-0.12293,1.78125,0.00449
+7.44951,1.35875,-1.32089,-1.70048,-0.12329,1.78153,0.00449
+7.45201,1.35848,-1.32106,-1.69994,-0.12365,1.78180,0.00449
+7.45450,1.35822,-1.32123,-1.69942,-0.12401,1.78206,0.00449
+7.45699,1.35796,-1.32140,-1.69891,-0.12435,1.78233,0.00448
+7.45949,1.35774,-1.32153,-1.69849,-0.12463,1.78254,0.00448
+7.46198,1.35744,-1.32172,-1.69790,-0.12503,1.78284,0.00448
+7.46447,1.35715,-1.32191,-1.69732,-0.12542,1.78314,0.00448
+7.46697,1.35685,-1.32209,-1.69675,-0.12581,1.78343,0.00448
+7.46946,1.35657,-1.32227,-1.69619,-0.12619,1.78372,0.00448
+7.47195,1.35628,-1.32245,-1.69564,-0.12656,1.78400,0.00448
+7.47445,1.35600,-1.32263,-1.69510,-0.12692,1.78428,0.00447
+7.47694,1.35573,-1.32281,-1.69456,-0.12728,1.78456,0.00447
+7.47943,1.35546,-1.32298,-1.69404,-0.12763,1.78483,0.00447
+7.48192,1.35519,-1.32315,-1.69352,-0.12798,1.78510,0.00447
+7.48442,1.35493,-1.32332,-1.69301,-0.12832,1.78536,0.00447
+7.48691,1.35465,-1.32350,-1.69244,-0.12871,1.78565,0.00447
+7.48940,1.35437,-1.32368,-1.69189,-0.12908,1.78592,0.00446
+7.49190,1.35410,-1.32385,-1.69134,-0.12945,1.78620,0.00446
+7.49439,1.35383,-1.32402,-1.69081,-0.12981,1.78647,0.00446
+7.49688,1.35357,-1.32419,-1.69028,-0.13017,1.78673,0.00446
+7.49938,1.35331,-1.32436,-1.68976,-0.13052,1.78699,0.00446
+7.50187,1.35305,-1.32453,-1.68924,-0.13087,1.78726,0.00446
+7.50436,1.35275,-1.32472,-1.68867,-0.13125,1.78755,0.00446
+7.50686,1.35246,-1.32491,-1.68810,-0.13163,1.78785,0.00445
+7.50935,1.35217,-1.32510,-1.68755,-0.13200,1.78814,0.00445
+7.51184,1.35188,-1.32528,-1.68700,-0.13236,1.78843,0.00445
+7.51434,1.35160,-1.32546,-1.68646,-0.13272,1.78871,0.00445
+7.51683,1.35133,-1.32564,-1.68593,-0.13307,1.78899,0.00445
+7.51932,1.35105,-1.32581,-1.68541,-0.13341,1.78926,0.00445
+7.52182,1.35079,-1.32598,-1.68490,-0.13375,1.78953,0.00444
+7.52431,1.35070,-1.32604,-1.68474,-0.13385,1.78961,0.00444
+7.52680,1.35042,-1.32622,-1.68420,-0.13422,1.78990,0.00444
+7.52929,1.35014,-1.32640,-1.68366,-0.13457,1.79018,0.00444
+7.53179,1.34986,-1.32658,-1.68313,-0.13492,1.79046,0.00444
+7.53428,1.34959,-1.32676,-1.68261,-0.13526,1.79073,0.00444
+7.53677,1.34932,-1.32693,-1.68210,-0.13560,1.79100,0.00444
+7.53927,1.34927,-1.32696,-1.68200,-0.13567,1.79106,0.00444
+7.54176,1.34898,-1.32715,-1.68147,-0.13601,1.79135,0.00443
+7.54425,1.34870,-1.32733,-1.68095,-0.13635,1.79163,0.00443
+7.54675,1.34842,-1.32751,-1.68044,-0.13668,1.79191,0.00443
+7.54924,1.34833,-1.32756,-1.68028,-0.13678,1.79200,0.00443
+7.55173,1.34804,-1.32775,-1.67974,-0.13714,1.79229,0.00443
+7.55423,1.34775,-1.32794,-1.67920,-0.13749,1.79258,0.00443
+7.55672,1.34746,-1.32812,-1.67867,-0.13783,1.79287,0.00442
+7.55921,1.34718,-1.32830,-1.67815,-0.13817,1.79316,0.00442
+7.56171,1.34690,-1.32848,-1.67764,-0.13850,1.79344,0.00442
+7.56420,1.34681,-1.32854,-1.67748,-0.13861,1.79353,0.00442
+7.56669,1.34647,-1.32876,-1.67686,-0.13901,1.79387,0.00442
+7.56918,1.34614,-1.32897,-1.67625,-0.13940,1.79420,0.00442
+7.57168,1.34581,-1.32918,-1.67565,-0.13978,1.79454,0.00442
+7.57417,1.34548,-1.32939,-1.67507,-0.14016,1.79486,0.00441
+7.57666,1.34516,-1.32959,-1.67449,-0.14054,1.79518,0.00441
+7.57916,1.34485,-1.32980,-1.67392,-0.14090,1.79550,0.00441
+7.58165,1.34454,-1.32999,-1.67336,-0.14126,1.79581,0.00441
+7.58414,1.34423,-1.33019,-1.67281,-0.14161,1.79612,0.00441
+7.58664,1.34393,-1.33038,-1.67227,-0.14196,1.79642,0.00441
+7.58913,1.34363,-1.33058,-1.67173,-0.14230,1.79672,0.00440
+7.59162,1.34334,-1.33076,-1.67121,-0.14264,1.79702,0.00440
+7.59412,1.34305,-1.33095,-1.67069,-0.14297,1.79731,0.00440
+7.59661,1.34279,-1.33112,-1.67023,-0.14326,1.79757,0.00440
+7.59910,1.34247,-1.33133,-1.66966,-0.14363,1.79789,0.00440
+7.60160,1.34215,-1.33153,-1.66909,-0.14398,1.79822,0.00440
+7.60409,1.34183,-1.33173,-1.66854,-0.14433,1.79853,0.00439
+7.60658,1.34152,-1.33193,-1.66799,-0.14468,1.79884,0.00439
+7.60908,1.34122,-1.33213,-1.66746,-0.14502,1.79915,0.00439
+7.61157,1.34092,-1.33232,-1.66693,-0.14535,1.79945,0.00439
+7.61406,1.34062,-1.33251,-1.66641,-0.14568,1.79975,0.00439
+7.61655,1.34033,-1.33270,-1.66590,-0.14600,1.80005,0.00438
+7.61905,1.34021,-1.33278,-1.66569,-0.14613,1.80017,0.00438
+7.62154,1.33988,-1.33299,-1.66512,-0.14649,1.80050,0.00438
+7.62403,1.33955,-1.33320,-1.66456,-0.14684,1.80083,0.00438
+7.62653,1.33923,-1.33341,-1.66400,-0.14719,1.80115,0.00438
+7.62902,1.33892,-1.33361,-1.66346,-0.14753,1.80147,0.00438
+7.63151,1.33861,-1.33381,-1.66292,-0.14786,1.80178,0.00438
+7.63401,1.33830,-1.33401,-1.66240,-0.14819,1.80209,0.00437
+7.63650,1.33800,-1.33420,-1.66188,-0.14851,1.80239,0.00437
+7.63899,1.33770,-1.33439,-1.66137,-0.14883,1.80269,0.00437
+7.64149,1.33761,-1.33445,-1.66121,-0.14893,1.80278,0.00437
+7.64398,1.33730,-1.33466,-1.66067,-0.14927,1.80310,0.00437
+7.64647,1.33699,-1.33486,-1.66013,-0.14960,1.80341,0.00437
+7.64897,1.33668,-1.33505,-1.65961,-0.14993,1.80371,0.00436
+7.65146,1.33639,-1.33525,-1.65909,-0.15026,1.80401,0.00436
+7.65395,1.33609,-1.33544,-1.65858,-0.15057,1.80431,0.00436
+7.65644,1.33600,-1.33550,-1.65842,-0.15067,1.80440,0.00436
+7.65894,1.33567,-1.33572,-1.65782,-0.15105,1.80474,0.00436
+7.66143,1.33534,-1.33593,-1.65724,-0.15141,1.80507,0.00436
+7.66392,1.33501,-1.33614,-1.65667,-0.15177,1.80540,0.00436
+7.66642,1.33469,-1.33635,-1.65611,-0.15212,1.80572,0.00435
+7.66891,1.33438,-1.33656,-1.65555,-0.15247,1.80603,0.00435
+7.67140,1.33407,-1.33676,-1.65501,-0.15281,1.80635,0.00435
+7.67390,1.33377,-1.33696,-1.65447,-0.15315,1.80665,0.00435
+7.67639,1.33347,-1.33716,-1.65394,-0.15348,1.80695,0.00435
+7.67888,1.33317,-1.33735,-1.65343,-0.15380,1.80725,0.00434
+7.68138,1.33288,-1.33754,-1.65291,-0.15412,1.80754,0.00434
+7.68387,1.33285,-1.33757,-1.65286,-0.15416,1.80758,0.00434
+7.68636,1.33252,-1.33778,-1.65228,-0.15451,1.80791,0.00434
+7.68886,1.33219,-1.33799,-1.65172,-0.15486,1.80824,0.00434
+7.69135,1.33187,-1.33821,-1.65116,-0.15521,1.80856,0.00434
+7.69384,1.33156,-1.33841,-1.65061,-0.15555,1.80888,0.00434
+7.69634,1.33124,-1.33862,-1.65008,-0.15588,1.80919,0.00433
+7.69883,1.33094,-1.33882,-1.64955,-0.15621,1.80950,0.00433
+7.70132,1.33064,-1.33902,-1.64903,-0.15653,1.80981,0.00433
+7.70381,1.33034,-1.33921,-1.64851,-0.15684,1.81010,0.00433
+7.70631,1.33022,-1.33929,-1.64831,-0.15697,1.81023,0.00433
+7.70880,1.32988,-1.33951,-1.64775,-0.15731,1.81057,0.00433
+7.71129,1.32955,-1.33973,-1.64720,-0.15764,1.81090,0.00432
+7.71379,1.32922,-1.33994,-1.64667,-0.15796,1.81123,0.00432
+7.71628,1.32890,-1.34015,-1.64614,-0.15828,1.81155,0.00432
+7.71877,1.32859,-1.34035,-1.64562,-0.15859,1.81187,0.00432
+7.72127,1.32828,-1.34056,-1.64511,-0.15890,1.81218,0.00432
+7.72376,1.32806,-1.34070,-1.64475,-0.15912,1.81240,0.00432
+7.72625,1.32774,-1.34091,-1.64419,-0.15947,1.81273,0.00431
+7.72875,1.32742,-1.34112,-1.64363,-0.15981,1.81305,0.00431
+7.73124,1.32710,-1.34133,-1.64309,-0.16014,1.81337,0.00431
+7.73373,1.32679,-1.34154,-1.64255,-0.16047,1.81368,0.00431
+7.73623,1.32649,-1.34174,-1.64202,-0.16079,1.81399,0.00431
+7.73872,1.32618,-1.34194,-1.64150,-0.16111,1.81429,0.00431
+7.74121,1.32588,-1.34214,-1.64099,-0.16143,1.81459,0.00430
+7.74370,1.32555,-1.34236,-1.64041,-0.16178,1.81493,0.00430
+7.74620,1.32522,-1.34258,-1.63984,-0.16213,1.81526,0.00430
+7.74869,1.32489,-1.34280,-1.63929,-0.16247,1.81559,0.00430
+7.75118,1.32457,-1.34301,-1.63874,-0.16280,1.81592,0.00430
+7.75368,1.32425,-1.34322,-1.63820,-0.16313,1.81624,0.00429
+7.75617,1.32394,-1.34343,-1.63767,-0.16345,1.81655,0.00429
+7.75866,1.32363,-1.34364,-1.63715,-0.16377,1.81686,0.00429
+7.76116,1.32333,-1.34384,-1.63663,-0.16408,1.81716,0.00429
+7.76365,1.32321,-1.34392,-1.63643,-0.16420,1.81729,0.00429
+7.76614,1.32287,-1.34414,-1.63587,-0.16454,1.81763,0.00429
+7.76864,1.32253,-1.34436,-1.63532,-0.16486,1.81797,0.00429
+7.77113,1.32220,-1.34458,-1.63478,-0.16518,1.81830,0.00428
+7.77362,1.32188,-1.34479,-1.63425,-0.16550,1.81863,0.00428
+7.77612,1.32156,-1.34501,-1.63373,-0.16581,1.81895,0.00428
+7.77861,1.32124,-1.34521,-1.63322,-0.16611,1.81927,0.00428
+7.78110,1.32102,-1.34536,-1.63286,-0.16633,1.81949,0.00428
+7.78360,1.32067,-1.34559,-1.63226,-0.16668,1.81985,0.00427
+7.78609,1.32032,-1.34583,-1.63168,-0.16703,1.82019,0.00427
+7.78858,1.31998,-1.34605,-1.63111,-0.16738,1.82054,0.00427
+7.79107,1.31965,-1.34628,-1.63054,-0.16772,1.82087,0.00427
+7.79357,1.31932,-1.34650,-1.62999,-0.16805,1.82121,0.00427
+7.79606,1.31899,-1.34671,-1.62944,-0.16838,1.82153,0.00427
+7.79855,1.31867,-1.34693,-1.62891,-0.16870,1.82186,0.00426
+7.80105,1.31836,-1.34714,-1.62838,-0.16901,1.82217,0.00426
+7.80354,1.31805,-1.34735,-1.62786,-0.16932,1.82249,0.00426
+7.80603,1.31774,-1.34755,-1.62735,-0.16963,1.82280,0.00426
+7.80853,1.31770,-1.34758,-1.62728,-0.16967,1.82283,0.00426
+7.81102,1.31731,-1.34784,-1.62661,-0.17008,1.82323,0.00426
+7.81351,1.31693,-1.34810,-1.62595,-0.17047,1.82361,0.00425
+7.81601,1.31655,-1.34835,-1.62531,-0.17087,1.82399,0.00425
+7.81850,1.31618,-1.34860,-1.62467,-0.17125,1.82437,0.00425
+7.82099,1.31581,-1.34885,-1.62404,-0.17163,1.82473,0.00425
+7.82349,1.31545,-1.34909,-1.62342,-0.17200,1.82510,0.00425
+7.82598,1.31510,-1.34933,-1.62282,-0.17237,1.82545,0.00425
+7.82847,1.31475,-1.34957,-1.62222,-0.17273,1.82581,0.00424
+7.83096,1.31440,-1.34980,-1.62163,-0.17308,1.82615,0.00424
+7.83346,1.31407,-1.35003,-1.62105,-0.17343,1.82649,0.00424
+7.83595,1.31373,-1.35026,-1.62048,-0.17377,1.82683,0.00424
+7.83844,1.31340,-1.35048,-1.61992,-0.17410,1.82716,0.00424
+7.84094,1.31308,-1.35070,-1.61937,-0.17443,1.82748,0.00423
+7.84343,1.31276,-1.35092,-1.61883,-0.17476,1.82781,0.00423
+7.84592,1.31245,-1.35113,-1.61830,-0.17508,1.82812,0.00423
+7.84842,1.31214,-1.35135,-1.61777,-0.17539,1.82843,0.00423
+7.85091,1.31184,-1.35155,-1.61726,-0.17570,1.82874,0.00423
+7.85340,1.31175,-1.35162,-1.61710,-0.17579,1.82883,0.00423
+7.85590,1.31143,-1.35184,-1.61652,-0.17614,1.82915,0.00422
+7.85839,1.31111,-1.35206,-1.61596,-0.17648,1.82947,0.00422
+7.86088,1.31081,-1.35227,-1.61541,-0.17682,1.82978,0.00422
+7.86338,1.31050,-1.35248,-1.61486,-0.17715,1.83009,0.00422
+7.86587,1.31020,-1.35269,-1.61433,-0.17748,1.83039,0.00422
+7.86836,1.30991,-1.35290,-1.61380,-0.17780,1.83069,0.00422
+7.87086,1.30962,-1.35310,-1.61328,-0.17811,1.83098,0.00421
+7.87335,1.30959,-1.35313,-1.61323,-0.17815,1.83101,0.00421
+7.87584,1.30928,-1.35334,-1.61267,-0.17849,1.83133,0.00421
+7.87833,1.30898,-1.35355,-1.61212,-0.17882,1.83163,0.00421
+7.88083,1.30868,-1.35376,-1.61158,-0.17915,1.83193,0.00421
+7.88332,1.30838,-1.35397,-1.61105,-0.17947,1.83223,0.00421
+7.88581,1.30810,-1.35417,-1.61053,-0.17979,1.83252,0.00421
+7.88831,1.30804,-1.35421,-1.61043,-0.17985,1.83258,0.00420
+7.89080,1.30776,-1.35442,-1.60990,-0.18018,1.83286,0.00420
+7.89329,1.30756,-1.35457,-1.60942,-0.18050,1.83306,0.00420
+7.89579,1.30816,-1.35433,-1.60929,-0.18088,1.83248,0.00420
+7.89828,1.30875,-1.35409,-1.60917,-0.18124,1.83191,0.00420
+7.90077,1.30933,-1.35385,-1.60905,-0.18160,1.83135,0.00421
+7.90327,1.30990,-1.35362,-1.60893,-0.18195,1.83080,0.00421
+7.90576,1.31046,-1.35339,-1.60881,-0.18230,1.83025,0.00421
+7.90825,1.31102,-1.35317,-1.60869,-0.18264,1.82972,0.00421
+7.91075,1.31156,-1.35295,-1.60858,-0.18297,1.82919,0.00421
+7.91324,1.31209,-1.35274,-1.60847,-0.18330,1.82867,0.00421
+7.91573,1.31262,-1.35252,-1.60836,-0.18362,1.82816,0.00421
+7.91822,1.31314,-1.35232,-1.60826,-0.18394,1.82765,0.00421
+7.92072,1.31365,-1.35211,-1.60815,-0.18425,1.82715,0.00422
+7.92321,1.31416,-1.35191,-1.60805,-0.18456,1.82667,0.00422
+7.92570,1.31465,-1.35171,-1.60795,-0.18486,1.82618,0.00422
+7.92820,1.31514,-1.35152,-1.60785,-0.18515,1.82571,0.00422
+7.93069,1.31562,-1.35133,-1.60775,-0.18544,1.82524,0.00422
+7.93318,1.31609,-1.35114,-1.60766,-0.18573,1.82478,0.00422
+7.93568,1.31650,-1.35098,-1.60760,-0.18596,1.82438,0.00422
+7.93817,1.31733,-1.35061,-1.60765,-0.18627,1.82357,0.00422
+7.94066,1.31815,-1.35026,-1.60771,-0.18658,1.82277,0.00423
+7.94316,1.31895,-1.34990,-1.60776,-0.18688,1.82199,0.00423
+7.94565,1.31974,-1.34956,-1.60781,-0.18717,1.82121,0.00423
+7.94814,1.32052,-1.34922,-1.60787,-0.18746,1.82045,0.00423
+7.95064,1.32129,-1.34889,-1.60792,-0.18775,1.81970,0.00423
+7.95313,1.32204,-1.34856,-1.60797,-0.18803,1.81896,0.00424
+7.95562,1.32279,-1.34824,-1.60802,-0.18830,1.81823,0.00424
+7.95812,1.32352,-1.34792,-1.60807,-0.18857,1.81751,0.00424
+7.96061,1.32424,-1.34761,-1.60812,-0.18884,1.81680,0.00424
+7.96310,1.32495,-1.34730,-1.60817,-0.18910,1.81610,0.00424
+7.96559,1.32565,-1.34700,-1.60822,-0.18936,1.81542,0.00424
+7.96809,1.32634,-1.34671,-1.60826,-0.18961,1.81474,0.00425
+7.97058,1.32702,-1.34642,-1.60831,-0.18986,1.81407,0.00425
+7.97307,1.32769,-1.34613,-1.60835,-0.19010,1.81342,0.00425
+7.97557,1.32835,-1.34585,-1.60840,-0.19034,1.81277,0.00425
+7.97806,1.32899,-1.34557,-1.60845,-0.19058,1.81213,0.00425
+7.98055,1.32963,-1.34530,-1.60849,-0.19081,1.81151,0.00425
+7.98305,1.33026,-1.34504,-1.60853,-0.19103,1.81089,0.00426
+7.98554,1.33088,-1.34477,-1.60858,-0.19126,1.81028,0.00426
+7.98803,1.33149,-1.34452,-1.60862,-0.19148,1.80968,0.00426
+7.99053,1.33209,-1.34426,-1.60866,-0.19169,1.80909,0.00426
+7.99302,1.33268,-1.34401,-1.60870,-0.19190,1.80851,0.00426
+7.99551,1.33326,-1.34377,-1.60874,-0.19211,1.80793,0.00426
+7.99801,1.33383,-1.34353,-1.60879,-0.19231,1.80737,0.00426
+8.00050,1.33439,-1.34329,-1.60883,-0.19251,1.80681,0.00426
+8.00299,1.33495,-1.34306,-1.60887,-0.19271,1.80627,0.00427
+8.00548,1.33549,-1.34283,-1.60891,-0.19291,1.80573,0.00427
+8.00798,1.33603,-1.34260,-1.60894,-0.19310,1.80520,0.00427
+8.01047,1.33656,-1.34238,-1.60898,-0.19328,1.80467,0.00427
+8.01296,1.33705,-1.34217,-1.60902,-0.19345,1.80419,0.00427
+8.01546,1.33775,-1.34187,-1.60914,-0.19364,1.80350,0.00427
+8.01795,1.33844,-1.34157,-1.60926,-0.19383,1.80282,0.00427
+8.02044,1.33912,-1.34128,-1.60938,-0.19401,1.80215,0.00428
+8.02294,1.33979,-1.34099,-1.60949,-0.19419,1.80149,0.00428
+8.02543,1.34045,-1.34070,-1.60960,-0.19437,1.80083,0.00428
+8.02792,1.34110,-1.34042,-1.60971,-0.19454,1.80019,0.00428
+8.03042,1.34174,-1.34015,-1.60982,-0.19471,1.79956,0.00428
+8.03291,1.34237,-1.33987,-1.60993,-0.19488,1.79894,0.00428
+8.03540,1.34299,-1.33961,-1.61003,-0.19505,1.79832,0.00428
+8.03790,1.34360,-1.33935,-1.61014,-0.19521,1.79772,0.00429
+8.04039,1.34420,-1.33909,-1.61024,-0.19537,1.79712,0.00429
+8.04288,1.34480,-1.33883,-1.61034,-0.19552,1.79654,0.00429
+8.04538,1.34538,-1.33859,-1.61044,-0.19568,1.79596,0.00429
+8.04787,1.34595,-1.33834,-1.61054,-0.19583,1.79539,0.00429
+8.05036,1.34652,-1.33810,-1.61064,-0.19598,1.79483,0.00429
+8.05285,1.34708,-1.33786,-1.61073,-0.19612,1.79428,0.00429
+8.05535,1.34762,-1.33763,-1.61083,-0.19627,1.79374,0.00430
+8.05784,1.34816,-1.33740,-1.61092,-0.19641,1.79320,0.00430
+8.06033,1.34845,-1.33728,-1.61097,-0.19648,1.79292,0.00430
+8.06283,1.34912,-1.33699,-1.61110,-0.19664,1.79226,0.00430
+8.06532,1.34977,-1.33671,-1.61124,-0.19679,1.79161,0.00430
+8.06781,1.35042,-1.33643,-1.61137,-0.19694,1.79096,0.00430
+8.07031,1.35106,-1.33615,-1.61150,-0.19709,1.79033,0.00430
+8.07280,1.35169,-1.33588,-1.61163,-0.19724,1.78970,0.00431
+8.07529,1.35231,-1.33562,-1.61175,-0.19738,1.78909,0.00431
+8.07779,1.35292,-1.33536,-1.61188,-0.19752,1.78848,0.00431
+8.08028,1.35352,-1.33510,-1.61200,-0.19766,1.78789,0.00431
+8.08277,1.35412,-1.33485,-1.61212,-0.19780,1.78730,0.00431
+8.08527,1.35470,-1.33460,-1.61224,-0.19793,1.78672,0.00431
+8.08776,1.35527,-1.33435,-1.61236,-0.19806,1.78615,0.00432
+8.09025,1.35584,-1.33411,-1.61247,-0.19819,1.78559,0.00432
+8.09274,1.35640,-1.33388,-1.61258,-0.19832,1.78504,0.00432
+8.09524,1.35694,-1.33364,-1.61270,-0.19844,1.78449,0.00432
+8.09773,1.35744,-1.33343,-1.61280,-0.19856,1.78400,0.00432
+8.10022,1.35807,-1.33316,-1.61294,-0.19869,1.78338,0.00432
+8.10272,1.35869,-1.33290,-1.61307,-0.19882,1.78276,0.00433
+8.10521,1.35930,-1.33264,-1.61321,-0.19895,1.78216,0.00433
+8.10770,1.35989,-1.33238,-1.61334,-0.19908,1.78156,0.00433
+8.11020,1.36049,-1.33213,-1.61347,-0.19920,1.78098,0.00433
+8.11269,1.36107,-1.33189,-1.61360,-0.19932,1.78040,0.00433
+8.11518,1.36164,-1.33164,-1.61372,-0.19945,1.77983,0.00433
+8.11768,1.36220,-1.33140,-1.61385,-0.19956,1.77927,0.00433
+8.12017,1.36276,-1.33117,-1.61397,-0.19968,1.77872,0.00434
+8.12266,1.36330,-1.33094,-1.61409,-0.19979,1.77817,0.00434
+8.12516,1.36354,-1.33084,-1.61415,-0.19984,1.77794,0.00434
+8.12765,1.36421,-1.33055,-1.61431,-0.19997,1.77727,0.00434
+8.13014,1.36488,-1.33026,-1.61447,-0.20010,1.77661,0.00434
+8.13264,1.36554,-1.32998,-1.61463,-0.20023,1.77595,0.00434
+8.13513,1.36619,-1.32971,-1.61478,-0.20035,1.77531,0.00435
+8.13762,1.36683,-1.32944,-1.61493,-0.20048,1.77467,0.00435
+8.14011,1.36746,-1.32917,-1.61508,-0.20060,1.77405,0.00435
+8.14261,1.36807,-1.32891,-1.61523,-0.20071,1.77343,0.00435
+8.14510,1.36868,-1.32865,-1.61538,-0.20083,1.77283,0.00435
+8.14759,1.36928,-1.32840,-1.61552,-0.20094,1.77223,0.00436
+8.15009,1.36988,-1.32815,-1.61566,-0.20106,1.77164,0.00436
+8.15258,1.37046,-1.32790,-1.61580,-0.20117,1.77106,0.00436
+8.15507,1.37103,-1.32766,-1.61594,-0.20127,1.77049,0.00436
+8.15757,1.37160,-1.32742,-1.61607,-0.20138,1.76993,0.00436
+8.16006,1.37215,-1.32719,-1.61621,-0.20149,1.76937,0.00436
+8.16255,1.37270,-1.32696,-1.61634,-0.20159,1.76883,0.00437
+8.16505,1.37278,-1.32692,-1.61636,-0.20160,1.76875,0.00437
+8.16754,1.37356,-1.32659,-1.61656,-0.20174,1.76798,0.00437
+8.17003,1.37432,-1.32627,-1.61676,-0.20187,1.76722,0.00437
+8.17253,1.37508,-1.32595,-1.61695,-0.20200,1.76647,0.00437
+8.17502,1.37582,-1.32563,-1.61715,-0.20212,1.76573,0.00438
+8.17751,1.37656,-1.32532,-1.61733,-0.20225,1.76500,0.00438
+8.18000,1.37728,-1.32502,-1.61752,-0.20237,1.76428,0.00438
+8.18250,1.37799,-1.32472,-1.61770,-0.20249,1.76357,0.00438
+8.18499,1.37869,-1.32442,-1.61788,-0.20261,1.76288,0.00438
+8.18748,1.37938,-1.32413,-1.61806,-0.20273,1.76219,0.00439
+8.18998,1.38006,-1.32385,-1.61824,-0.20284,1.76152,0.00439
+8.19247,1.38073,-1.32357,-1.61841,-0.20295,1.76085,0.00439
+8.19496,1.38139,-1.32329,-1.61858,-0.20306,1.76019,0.00439
+8.19746,1.38204,-1.32302,-1.61874,-0.20317,1.75955,0.00440
+8.19995,1.38268,-1.32275,-1.61891,-0.20328,1.75891,0.00440
+8.20244,1.38331,-1.32249,-1.61907,-0.20338,1.75828,0.00440
+8.20494,1.38393,-1.32223,-1.61923,-0.20348,1.75767,0.00440
+8.20743,1.38454,-1.32198,-1.61939,-0.20359,1.75706,0.00440
+8.20992,1.38514,-1.32173,-1.61954,-0.20369,1.75646,0.00441
+8.21242,1.38573,-1.32148,-1.61969,-0.20378,1.75587,0.00441
+8.21491,1.38631,-1.32124,-1.61984,-0.20388,1.75529,0.00441
+8.21740,1.38689,-1.32100,-1.61999,-0.20397,1.75471,0.00441
+8.21990,1.38746,-1.32076,-1.62014,-0.20407,1.75415,0.00441
+8.22239,1.38801,-1.32053,-1.62028,-0.20416,1.75359,0.00441
+8.22488,1.38836,-1.32039,-1.62037,-0.20421,1.75325,0.00442
+8.22737,1.38902,-1.32011,-1.62054,-0.20432,1.75259,0.00442
+8.22987,1.38968,-1.31984,-1.62072,-0.20442,1.75193,0.00442
+8.23236,1.39032,-1.31958,-1.62088,-0.20452,1.75129,0.00442
+8.23485,1.39096,-1.31931,-1.62105,-0.20462,1.75066,0.00442
+8.23735,1.39158,-1.31905,-1.62122,-0.20472,1.75003,0.00443
+8.23984,1.39220,-1.31880,-1.62138,-0.20482,1.74942,0.00443
+8.24233,1.39281,-1.31855,-1.62154,-0.20491,1.74881,0.00443
+8.24483,1.39340,-1.31830,-1.62169,-0.20500,1.74822,0.00443
+8.24732,1.39399,-1.31806,-1.62185,-0.20510,1.74763,0.00443
+8.24981,1.39457,-1.31782,-1.62200,-0.20519,1.74705,0.00444
+8.25231,1.39514,-1.31759,-1.62215,-0.20527,1.74648,0.00444
+8.25480,1.39571,-1.31735,-1.62230,-0.20536,1.74592,0.00444
+8.25729,1.39627,-1.31712,-1.62245,-0.20545,1.74535,0.00444
+8.25979,1.39694,-1.31685,-1.62263,-0.20555,1.74469,0.00444
+8.26228,1.39760,-1.31658,-1.62280,-0.20565,1.74403,0.00445
+8.26477,1.39825,-1.31631,-1.62297,-0.20574,1.74339,0.00445
+8.26727,1.39889,-1.31605,-1.62314,-0.20584,1.74275,0.00445
+8.26976,1.39951,-1.31579,-1.62331,-0.20593,1.74212,0.00445
+8.27225,1.40013,-1.31554,-1.62347,-0.20602,1.74151,0.00445
+8.27474,1.40074,-1.31529,-1.62364,-0.20611,1.74090,0.00446
+8.27724,1.40134,-1.31505,-1.62380,-0.20620,1.74030,0.00446
+8.27973,1.40193,-1.31481,-1.62395,-0.20629,1.73971,0.00446
+8.28222,1.40252,-1.31457,-1.62411,-0.20638,1.73913,0.00446
+8.28472,1.40309,-1.31433,-1.62426,-0.20646,1.73855,0.00446
+8.28721,1.40366,-1.31411,-1.62441,-0.20654,1.73799,0.00447
+8.28970,1.40423,-1.31387,-1.62456,-0.20663,1.73741,0.00447
+8.29220,1.40500,-1.31356,-1.62477,-0.20674,1.73665,0.00447
+8.29469,1.40576,-1.31325,-1.62497,-0.20685,1.73589,0.00447
+8.29718,1.40651,-1.31295,-1.62517,-0.20695,1.73515,0.00448
+8.29968,1.40724,-1.31265,-1.62537,-0.20706,1.73442,0.00448
+8.30217,1.40796,-1.31236,-1.62557,-0.20716,1.73370,0.00448
+8.30466,1.40868,-1.31207,-1.62576,-0.20726,1.73299,0.00448
+8.30716,1.40938,-1.31178,-1.62594,-0.20736,1.73229,0.00449
+8.30965,1.41007,-1.31151,-1.62613,-0.20745,1.73160,0.00449
+8.31214,1.41075,-1.31123,-1.62631,-0.20755,1.73092,0.00449
+8.31463,1.41142,-1.31096,-1.62649,-0.20764,1.73025,0.00449
+8.31713,1.41208,-1.31070,-1.62667,-0.20774,1.72959,0.00450
+8.31962,1.41274,-1.31043,-1.62684,-0.20783,1.72895,0.00450
+8.32211,1.41338,-1.31018,-1.62701,-0.20792,1.72831,0.00450
+8.32461,1.41401,-1.30992,-1.62718,-0.20800,1.72768,0.00450
+8.32710,1.41463,-1.30967,-1.62735,-0.20809,1.72705,0.00450
+8.32959,1.41524,-1.30943,-1.62751,-0.20818,1.72644,0.00451
+8.33209,1.41585,-1.30919,-1.62767,-0.20826,1.72584,0.00451
+8.33458,1.41644,-1.30895,-1.62783,-0.20834,1.72525,0.00451
+8.33707,1.41703,-1.30872,-1.62799,-0.20842,1.72466,0.00451
+8.33957,1.41760,-1.30849,-1.62814,-0.20850,1.72408,0.00451
+8.34206,1.41817,-1.30826,-1.62830,-0.20858,1.72352,0.00452
+8.34455,1.41863,-1.30808,-1.62842,-0.20864,1.72306,0.00452
+8.34705,1.41931,-1.30781,-1.62860,-0.20873,1.72238,0.00452
+8.34954,1.41997,-1.30754,-1.62878,-0.20882,1.72172,0.00452
+8.35203,1.42063,-1.30728,-1.62895,-0.20891,1.72106,0.00453
+8.35453,1.42128,-1.30703,-1.62913,-0.20900,1.72042,0.00453
+8.35702,1.42191,-1.30677,-1.62929,-0.20908,1.71978,0.00453
+8.35951,1.42254,-1.30653,-1.62946,-0.20917,1.71916,0.00453
+8.36200,1.42316,-1.30628,-1.62963,-0.20925,1.71854,0.00453
+8.36450,1.42377,-1.30604,-1.62979,-0.20933,1.71793,0.00454
+8.36699,1.42437,-1.30580,-1.62995,-0.20941,1.71733,0.00454
+8.36948,1.42496,-1.30557,-1.63011,-0.20949,1.71674,0.00454
+8.37198,1.42554,-1.30534,-1.63026,-0.20957,1.71616,0.00454
+8.37447,1.42611,-1.30512,-1.63041,-0.20965,1.71559,0.00454
+8.37696,1.42667,-1.30490,-1.63056,-0.20972,1.71502,0.00455
+8.37946,1.42674,-1.30487,-1.63058,-0.20973,1.71496,0.00455
+8.38195,1.42737,-1.30462,-1.63075,-0.20981,1.71433,0.00455
+8.38444,1.42799,-1.30438,-1.63091,-0.20989,1.71371,0.00455
+8.38694,1.42860,-1.30414,-1.63108,-0.20997,1.71310,0.00455
+8.38943,1.42920,-1.30390,-1.63123,-0.21005,1.71250,0.00456
+8.39192,1.42979,-1.30367,-1.63139,-0.21013,1.71191,0.00456
+8.39442,1.43037,-1.30344,-1.63155,-0.21021,1.71133,0.00456
+8.39691,1.43095,-1.30322,-1.63170,-0.21028,1.71075,0.00456
+8.39940,1.43152,-1.30300,-1.63185,-0.21036,1.71019,0.00456
+8.40189,1.43164,-1.30295,-1.63188,-0.21037,1.71007,0.00456
+8.40439,1.43229,-1.30270,-1.63206,-0.21046,1.70941,0.00457
+8.40688,1.43294,-1.30244,-1.63223,-0.21054,1.70877,0.00457
+8.40937,1.43358,-1.30220,-1.63239,-0.21062,1.70813,0.00457
+8.41187,1.43420,-1.30195,-1.63256,-0.21071,1.70751,0.00457
+8.41436,1.43482,-1.30171,-1.63272,-0.21078,1.70689,0.00458
+8.41685,1.43543,-1.30148,-1.63288,-0.21086,1.70628,0.00458
+8.41935,1.43603,-1.30125,-1.63304,-0.21094,1.70569,0.00458
+8.42184,1.43661,-1.30102,-1.63320,-0.21102,1.70510,0.00458
+8.42433,1.43720,-1.30079,-1.63335,-0.21109,1.70452,0.00458
+8.42683,1.43777,-1.30057,-1.63350,-0.21116,1.70394,0.00459
+8.42932,1.43817,-1.30042,-1.63361,-0.21122,1.70354,0.00459
+8.43181,1.43880,-1.30017,-1.63377,-0.21130,1.70291,0.00459
+8.43431,1.43943,-1.29993,-1.63394,-0.21138,1.70229,0.00459
+8.43680,1.44004,-1.29969,-1.63410,-0.21146,1.70167,0.00460
+8.43929,1.44065,-1.29946,-1.63426,-0.21153,1.70107,0.00460
+8.44179,1.44124,-1.29923,-1.63441,-0.21161,1.70047,0.00460
+8.44428,1.44183,-1.29901,-1.63457,-0.21168,1.69989,0.00460
+8.44677,1.44241,-1.29879,-1.63472,-0.21176,1.69931,0.00460
+8.44926,1.44298,-1.29857,-1.63487,-0.21183,1.69874,0.00461
+8.45176,1.44310,-1.29852,-1.63490,-0.21184,1.69862,0.00461
+8.45425,1.44376,-1.29827,-1.63507,-0.21193,1.69796,0.00461
+8.45674,1.44441,-1.29802,-1.63524,-0.21201,1.69731,0.00461
+8.45924,1.44505,-1.29778,-1.63541,-0.21209,1.69667,0.00461
+8.46173,1.44568,-1.29754,-1.63557,-0.21217,1.69604,0.00462
+8.46422,1.44630,-1.29730,-1.63573,-0.21225,1.69543,0.00462
+8.46672,1.44691,-1.29707,-1.63589,-0.21232,1.69481,0.00462
+8.46921,1.44751,-1.29684,-1.63605,-0.21240,1.69421,0.00462
+8.47170,1.44810,-1.29661,-1.63620,-0.21247,1.69362,0.00463
+8.47420,1.44869,-1.29639,-1.63636,-0.21255,1.69304,0.00463
+8.47669,1.44926,-1.29617,-1.63651,-0.21262,1.69246,0.00463
+8.47918,1.44974,-1.29599,-1.63663,-0.21268,1.69198,0.00463
+8.48168,1.45053,-1.29569,-1.63685,-0.21276,1.69120,0.00463
+8.48417,1.45130,-1.29540,-1.63707,-0.21284,1.69043,0.00464
+8.48666,1.45206,-1.29511,-1.63729,-0.21292,1.68967,0.00464
+8.48915,1.45282,-1.29482,-1.63750,-0.21300,1.68892,0.00464
+8.49165,1.45356,-1.29454,-1.63770,-0.21307,1.68819,0.00465
+8.49414,1.45429,-1.29426,-1.63791,-0.21315,1.68746,0.00465
+8.49663,1.45500,-1.29399,-1.63811,-0.21322,1.68674,0.00465
+8.49913,1.45571,-1.29372,-1.63831,-0.21330,1.68604,0.00465
+8.50162,1.45641,-1.29346,-1.63850,-0.21337,1.68534,0.00466
+8.50411,1.45710,-1.29320,-1.63869,-0.21344,1.68466,0.00466
+8.50661,1.45777,-1.29295,-1.63888,-0.21351,1.68398,0.00466
+8.50910,1.45844,-1.29269,-1.63907,-0.21358,1.68332,0.00466
+8.51159,1.45909,-1.29245,-1.63925,-0.21364,1.68266,0.00467
+8.51409,1.45974,-1.29220,-1.63943,-0.21371,1.68201,0.00467
+8.51658,1.46038,-1.29196,-1.63961,-0.21378,1.68138,0.00467
+8.51907,1.46101,-1.29173,-1.63979,-0.21384,1.68075,0.00467
+8.52157,1.46163,-1.29150,-1.63996,-0.21390,1.68013,0.00468
+8.52406,1.46223,-1.29127,-1.64013,-0.21396,1.67952,0.00468
+8.52655,1.46283,-1.29104,-1.64030,-0.21403,1.67892,0.00468
+8.52905,1.46343,-1.29082,-1.64046,-0.21409,1.67833,0.00468
+8.53154,1.46401,-1.29060,-1.64062,-0.21414,1.67775,0.00469
+8.53403,1.46458,-1.29039,-1.64078,-0.21420,1.67717,0.00469
+8.53652,1.46471,-1.29034,-1.64082,-0.21422,1.67705,0.00469
+8.53902,1.46540,-1.29008,-1.64101,-0.21429,1.67636,0.00469
+8.54151,1.46608,-1.28983,-1.64119,-0.21436,1.67568,0.00469
+8.54400,1.46675,-1.28958,-1.64137,-0.21443,1.67501,0.00470
+8.54650,1.46741,-1.28934,-1.64155,-0.21450,1.67436,0.00470
+8.54899,1.46806,-1.28910,-1.64173,-0.21457,1.67371,0.00470
+8.55148,1.46870,-1.28886,-1.64190,-0.21464,1.67307,0.00470
+8.55398,1.46933,-1.28863,-1.64207,-0.21470,1.67244,0.00471
+8.55647,1.46995,-1.28840,-1.64224,-0.21477,1.67182,0.00471
+8.55896,1.47056,-1.28817,-1.64240,-0.21483,1.67120,0.00471
+8.56146,1.47116,-1.28795,-1.64257,-0.21489,1.67060,0.00471
+8.56395,1.47176,-1.28773,-1.64273,-0.21495,1.67001,0.00472
+8.56644,1.47234,-1.28751,-1.64288,-0.21502,1.66942,0.00472
+8.56894,1.47292,-1.28730,-1.64304,-0.21508,1.66884,0.00472
+8.57143,1.47305,-1.28726,-1.64307,-0.21509,1.66872,0.00472
+8.57392,1.47371,-1.28701,-1.64325,-0.21516,1.66805,0.00472
+8.57641,1.47437,-1.28677,-1.64342,-0.21523,1.66740,0.00473
+8.57891,1.47502,-1.28653,-1.64359,-0.21530,1.66675,0.00473
+8.58140,1.47566,-1.28630,-1.64376,-0.21537,1.66611,0.00473
+8.58389,1.47629,-1.28607,-1.64393,-0.21543,1.66548,0.00473
+8.58639,1.47691,-1.28585,-1.64409,-0.21550,1.66486,0.00474
+8.58888,1.47752,-1.28562,-1.64425,-0.21556,1.66425,0.00474
+8.59137,1.47812,-1.28540,-1.64441,-0.21563,1.66365,0.00474
+8.59387,1.47871,-1.28519,-1.64457,-0.21569,1.66306,0.00474
+8.59636,1.47929,-1.28498,-1.64472,-0.21575,1.66247,0.00475
+8.59885,1.47983,-1.28478,-1.64486,-0.21581,1.66194,0.00475
+8.60135,1.48052,-1.28453,-1.64506,-0.21587,1.66125,0.00475
+8.60384,1.48120,-1.28428,-1.64525,-0.21592,1.66057,0.00475
+8.60633,1.48188,-1.28403,-1.64545,-0.21598,1.65990,0.00476
+8.60883,1.48254,-1.28379,-1.64564,-0.21604,1.65923,0.00476
+8.61132,1.48320,-1.28355,-1.64582,-0.21609,1.65858,0.00476
+8.61381,1.48384,-1.28332,-1.64600,-0.21615,1.65794,0.00476
+8.61631,1.48447,-1.28309,-1.64619,-0.21620,1.65730,0.00477
+8.61880,1.48510,-1.28286,-1.64636,-0.21625,1.65668,0.00477
+8.62129,1.48572,-1.28264,-1.64654,-0.21631,1.65606,0.00477
+8.62378,1.48632,-1.28242,-1.64671,-0.21636,1.65545,0.00477
+8.62628,1.48692,-1.28220,-1.64688,-0.21641,1.65486,0.00478
+8.62877,1.48751,-1.28199,-1.64705,-0.21646,1.65427,0.00478
+8.63126,1.48809,-1.28178,-1.64721,-0.21651,1.65369,0.00478
+8.63376,1.48834,-1.28169,-1.64728,-0.21652,1.65344,0.00478
+8.63625,1.48906,-1.28143,-1.64750,-0.21657,1.65272,0.00478
+8.63874,1.48977,-1.28117,-1.64771,-0.21662,1.65201,0.00479
+8.64124,1.49047,-1.28092,-1.64792,-0.21667,1.65131,0.00479
+8.64373,1.49116,-1.28067,-1.64812,-0.21672,1.65063,0.00479
+8.64622,1.49184,-1.28042,-1.64833,-0.21677,1.64995,0.00480
+8.64872,1.49251,-1.28018,-1.64853,-0.21681,1.64928,0.00480
+8.65121,1.49317,-1.27994,-1.64872,-0.21686,1.64862,0.00480
+8.65370,1.49382,-1.27971,-1.64891,-0.21690,1.64797,0.00480
+8.65620,1.49446,-1.27948,-1.64910,-0.21695,1.64733,0.00481
+8.65869,1.49509,-1.27925,-1.64929,-0.21699,1.64670,0.00481
+8.66118,1.49571,-1.27903,-1.64948,-0.21703,1.64608,0.00481
+8.66367,1.49632,-1.27881,-1.64966,-0.21708,1.64546,0.00481
+8.66617,1.49693,-1.27859,-1.64984,-0.21712,1.64486,0.00482
+8.66866,1.49752,-1.27838,-1.65001,-0.21716,1.64427,0.00482
+8.67115,1.49811,-1.27817,-1.65019,-0.21720,1.64368,0.00482
+8.67365,1.49859,-1.27799,-1.65033,-0.21723,1.64319,0.00482
+8.67614,1.49939,-1.27770,-1.65059,-0.21726,1.64240,0.00483
+8.67863,1.50018,-1.27742,-1.65084,-0.21730,1.64161,0.00483
+8.68113,1.50096,-1.27714,-1.65109,-0.21733,1.64084,0.00483
+8.68362,1.50172,-1.27687,-1.65134,-0.21736,1.64007,0.00484
+8.68611,1.50248,-1.27660,-1.65158,-0.21739,1.63932,0.00484
+8.68861,1.50322,-1.27633,-1.65182,-0.21743,1.63858,0.00484
+8.69110,1.50395,-1.27607,-1.65205,-0.21746,1.63785,0.00485
+8.69359,1.50468,-1.27581,-1.65229,-0.21749,1.63713,0.00485
+8.69609,1.50539,-1.27556,-1.65251,-0.21752,1.63642,0.00485
+8.69858,1.50609,-1.27531,-1.65274,-0.21755,1.63572,0.00485
+8.70107,1.50678,-1.27506,-1.65296,-0.21758,1.63503,0.00486
+8.70357,1.50746,-1.27482,-1.65317,-0.21761,1.63435,0.00486
+8.70606,1.50813,-1.27458,-1.65339,-0.21764,1.63368,0.00486
+8.70855,1.50879,-1.27434,-1.65360,-0.21766,1.63302,0.00487
+8.71104,1.50944,-1.27411,-1.65381,-0.21769,1.63237,0.00487
+8.71354,1.51008,-1.27388,-1.65401,-0.21772,1.63173,0.00487
+8.71603,1.51071,-1.27366,-1.65421,-0.21775,1.63110,0.00487
+8.71852,1.51133,-1.27344,-1.65441,-0.21777,1.63048,0.00488
+8.72102,1.51195,-1.27322,-1.65460,-0.21780,1.62986,0.00488
+8.72351,1.51255,-1.27301,-1.65480,-0.21783,1.62926,0.00488
+8.72600,1.51314,-1.27280,-1.65498,-0.21785,1.62866,0.00488
+8.72850,1.51373,-1.27259,-1.65517,-0.21788,1.62808,0.00489
+8.73099,1.51421,-1.27242,-1.65532,-0.21789,1.62760,0.00489
+8.73348,1.51493,-1.27216,-1.65558,-0.21790,1.62687,0.00489
+8.73598,1.51565,-1.27190,-1.65583,-0.21791,1.62616,0.00489
+8.73847,1.51635,-1.27165,-1.65607,-0.21792,1.62546,0.00490
+8.74096,1.51705,-1.27141,-1.65631,-0.21793,1.62477,0.00490
+8.74346,1.51773,-1.27116,-1.65655,-0.21794,1.62408,0.00490
+8.74595,1.51840,-1.27092,-1.65678,-0.21795,1.62341,0.00491
+8.74844,1.51907,-1.27069,-1.65701,-0.21796,1.62275,0.00491
+8.75093,1.51972,-1.27046,-1.65724,-0.21797,1.62209,0.00491
+8.75343,1.52036,-1.27023,-1.65746,-0.21798,1.62145,0.00491
+8.75592,1.52100,-1.27000,-1.65768,-0.21799,1.62081,0.00492
+8.75841,1.52162,-1.26978,-1.65790,-0.21800,1.62019,0.00492
+8.76091,1.52224,-1.26956,-1.65811,-0.21801,1.61957,0.00492
+8.76340,1.52285,-1.26935,-1.65832,-0.21802,1.61896,0.00493
+8.76589,1.52345,-1.26914,-1.65852,-0.21803,1.61837,0.00493
+8.76839,1.52403,-1.26893,-1.65873,-0.21804,1.61777,0.00493
+8.77088,1.52462,-1.26872,-1.65893,-0.21805,1.61719,0.00493
+8.77337,1.52474,-1.26868,-1.65897,-0.21805,1.61707,0.00493
+8.77587,1.52539,-1.26845,-1.65918,-0.21807,1.61642,0.00494
+8.77836,1.52603,-1.26823,-1.65939,-0.21809,1.61578,0.00494
+8.78085,1.52665,-1.26801,-1.65959,-0.21810,1.61515,0.00494
+8.78335,1.52727,-1.26779,-1.65980,-0.21812,1.61453,0.00494
+8.78584,1.52789,-1.26758,-1.66000,-0.21814,1.61392,0.00495
+8.78833,1.52849,-1.26737,-1.66019,-0.21815,1.61332,0.00495
+8.79083,1.52908,-1.26716,-1.66038,-0.21817,1.61272,0.00495
+8.79332,1.52967,-1.26696,-1.66057,-0.21819,1.61214,0.00496
+8.79581,1.52985,-1.26690,-1.66064,-0.21819,1.61195,0.00496
+8.79830,1.53053,-1.26666,-1.66088,-0.21819,1.61128,0.00496
+8.80080,1.53119,-1.26642,-1.66113,-0.21818,1.61061,0.00496
+8.80329,1.53185,-1.26619,-1.66136,-0.21818,1.60996,0.00497
+8.80578,1.53250,-1.26597,-1.66160,-0.21817,1.60931,0.00497
+8.80828,1.53314,-1.26574,-1.66183,-0.21817,1.60867,0.00497
+8.81077,1.53376,-1.26552,-1.66206,-0.21817,1.60804,0.00497
+8.81326,1.53438,-1.26530,-1.66228,-0.21816,1.60742,0.00498
+8.81576,1.53499,-1.26509,-1.66250,-0.21816,1.60681,0.00498
+8.81825,1.53559,-1.26488,-1.66272,-0.21816,1.60621,0.00498
+8.82074,1.53619,-1.26467,-1.66293,-0.21815,1.60562,0.00498
+8.82324,1.53677,-1.26447,-1.66315,-0.21815,1.60503,0.00499
+8.82573,1.53712,-1.26434,-1.66327,-0.21815,1.60468,0.00499
+8.82822,1.53777,-1.26412,-1.66351,-0.21814,1.60403,0.00499
+8.83072,1.53841,-1.26389,-1.66375,-0.21813,1.60339,0.00499
+8.83321,1.53904,-1.26367,-1.66398,-0.21812,1.60276,0.00500
+8.83570,1.53966,-1.26346,-1.66421,-0.21811,1.60214,0.00500
+8.83819,1.54027,-1.26324,-1.66444,-0.21810,1.60153,0.00500
+8.84069,1.54087,-1.26303,-1.66466,-0.21809,1.60093,0.00501
+8.84318,1.54146,-1.26283,-1.66488,-0.21809,1.60033,0.00501
+8.84567,1.54205,-1.26262,-1.66510,-0.21808,1.59975,0.00501
+8.84817,1.54246,-1.26248,-1.66525,-0.21807,1.59934,0.00501
+8.85066,1.54311,-1.26225,-1.66549,-0.21806,1.59869,0.00502
+8.85315,1.54375,-1.26203,-1.66573,-0.21804,1.59805,0.00502
+8.85565,1.54438,-1.26181,-1.66597,-0.21803,1.59742,0.00502
+8.85814,1.54500,-1.26160,-1.66620,-0.21801,1.59680,0.00502
+8.86063,1.54561,-1.26138,-1.66643,-0.21800,1.59619,0.00503
+8.86313,1.54621,-1.26118,-1.66666,-0.21798,1.59559,0.00503
+8.86562,1.54680,-1.26097,-1.66688,-0.21797,1.59499,0.00503
+8.86811,1.54739,-1.26077,-1.66710,-0.21796,1.59441,0.00504
+8.87061,1.54779,-1.26062,-1.66725,-0.21795,1.59400,0.00504
+8.87310,1.54842,-1.26041,-1.66748,-0.21794,1.59338,0.00504
+8.87559,1.54903,-1.26020,-1.66770,-0.21794,1.59276,0.00504
+8.87809,1.54963,-1.25999,-1.66791,-0.21793,1.59216,0.00505
+8.88058,1.55023,-1.25979,-1.66813,-0.21793,1.59156,0.00505
+8.88307,1.55082,-1.25959,-1.66834,-0.21792,1.59097,0.00505
+8.88556,1.55123,-1.25944,-1.66849,-0.21792,1.59056,0.00505
+8.88806,1.55191,-1.25921,-1.66875,-0.21789,1.58988,0.00506
+8.89055,1.55257,-1.25898,-1.66901,-0.21786,1.58922,0.00506
+8.89304,1.55323,-1.25876,-1.66927,-0.21784,1.58856,0.00506
+8.89554,1.55388,-1.25853,-1.66952,-0.21782,1.58791,0.00506
+8.89803,1.55451,-1.25831,-1.66976,-0.21779,1.58728,0.00507
+8.90052,1.55514,-1.25810,-1.67001,-0.21777,1.58665,0.00507
+8.90302,1.55576,-1.25788,-1.67025,-0.21775,1.58603,0.00507
+8.90551,1.55637,-1.25767,-1.67048,-0.21772,1.58542,0.00508
+8.90800,1.55697,-1.25747,-1.67071,-0.21770,1.58482,0.00508
+8.91050,1.55757,-1.25726,-1.67094,-0.21768,1.58422,0.00508
+8.91299,1.55815,-1.25706,-1.67117,-0.21766,1.58364,0.00508
+8.91548,1.55856,-1.25692,-1.67133,-0.21764,1.58323,0.00509
+8.91798,1.55921,-1.25670,-1.67158,-0.21762,1.58258,0.00509
+8.92047,1.55985,-1.25648,-1.67183,-0.21759,1.58194,0.00509
+8.92296,1.56047,-1.25626,-1.67208,-0.21756,1.58131,0.00510
+8.92545,1.56109,-1.25605,-1.67232,-0.21754,1.58069,0.00510
+8.92795,1.56170,-1.25584,-1.67255,-0.21751,1.58008,0.00510
+8.93044,1.56231,-1.25564,-1.67279,-0.21749,1.57948,0.00510
+8.93293,1.56290,-1.25544,-1.67302,-0.21746,1.57888,0.00511
+8.93543,1.56348,-1.25524,-1.67325,-0.21744,1.57830,0.00511
+8.93792,1.56389,-1.25510,-1.67340,-0.21742,1.57789,0.00511
+8.94041,1.56452,-1.25489,-1.67363,-0.21741,1.57727,0.00511
+8.94291,1.56513,-1.25468,-1.67386,-0.21739,1.57665,0.00512
+8.94540,1.56573,-1.25447,-1.67408,-0.21737,1.57605,0.00512
+8.94789,1.56633,-1.25427,-1.67430,-0.21736,1.57545,0.00512
+8.95039,1.56692,-1.25408,-1.67452,-0.21734,1.57486,0.00513
+8.95288,1.56734,-1.25393,-1.67468,-0.21733,1.57444,0.00513
+8.95537,1.56810,-1.25368,-1.67494,-0.21732,1.57368,0.00513
+8.95787,1.56884,-1.25344,-1.67520,-0.21731,1.57294,0.00513
+8.96036,1.56958,-1.25320,-1.67545,-0.21730,1.57221,0.00514
+8.96285,1.57030,-1.25296,-1.67570,-0.21729,1.57149,0.00514
+8.96535,1.57101,-1.25273,-1.67595,-0.21728,1.57077,0.00515
+8.96784,1.57172,-1.25250,-1.67619,-0.21727,1.57007,0.00515
+8.97033,1.57241,-1.25227,-1.67643,-0.21727,1.56938,0.00515
+8.97282,1.57309,-1.25204,-1.67667,-0.21726,1.56870,0.00515
+8.97532,1.57377,-1.25182,-1.67690,-0.21725,1.56803,0.00516
+8.97781,1.57443,-1.25161,-1.67713,-0.21724,1.56736,0.00516
+8.98030,1.57508,-1.25139,-1.67736,-0.21723,1.56671,0.00516
+8.98280,1.57573,-1.25118,-1.67758,-0.21723,1.56607,0.00517
+8.98529,1.57636,-1.25097,-1.67780,-0.21722,1.56543,0.00517
+8.98778,1.57698,-1.25077,-1.67801,-0.21721,1.56481,0.00517
+8.99028,1.57760,-1.25057,-1.67822,-0.21721,1.56419,0.00518
+8.99277,1.57821,-1.25037,-1.67843,-0.21720,1.56358,0.00518
+8.99526,1.57881,-1.25017,-1.67864,-0.21719,1.56298,0.00518
+8.99776,1.57940,-1.24998,-1.67884,-0.21719,1.56239,0.00518
+9.00025,1.57963,-1.24990,-1.67892,-0.21718,1.56216,0.00519
+9.00274,1.58024,-1.24970,-1.67914,-0.21717,1.56155,0.00519
+9.00524,1.58083,-1.24951,-1.67936,-0.21715,1.56096,0.00519
+9.00773,1.58142,-1.24931,-1.67958,-0.21713,1.56037,0.00519
+9.01022,1.58165,-1.24923,-1.67966,-0.21712,1.56013,0.00520
+9.01272,1.58228,-1.24903,-1.67988,-0.21711,1.55950,0.00520
+9.01521,1.58290,-1.24883,-1.68010,-0.21710,1.55889,0.00520
+9.01770,1.58351,-1.24863,-1.68031,-0.21709,1.55828,0.00520
+9.02019,1.58411,-1.24843,-1.68052,-0.21708,1.55767,0.00521
+9.02269,1.58470,-1.24824,-1.68073,-0.21707,1.55708,0.00521
+9.02518,1.58506,-1.24813,-1.68085,-0.21706,1.55673,0.00521
+9.02767,1.58569,-1.24792,-1.68106,-0.21706,1.55609,0.00521
+9.03017,1.58631,-1.24772,-1.68127,-0.21705,1.55547,0.00522
+9.03266,1.58692,-1.24753,-1.68147,-0.21705,1.55486,0.00522
+9.03515,1.58753,-1.24733,-1.68167,-0.21705,1.55426,0.00522
+9.03765,1.58812,-1.24714,-1.68187,-0.21704,1.55366,0.00523
+9.04014,1.58854,-1.24701,-1.68201,-0.21704,1.55325,0.00523
+9.04263,1.58914,-1.24682,-1.68220,-0.21704,1.55264,0.00523
+9.04513,1.58974,-1.24662,-1.68240,-0.21704,1.55204,0.00523
+9.04762,1.59028,-1.24645,-1.68257,-0.21704,1.55150,0.00524
+9.05011,1.59091,-1.24625,-1.68277,-0.21705,1.55087,0.00524
+9.05261,1.59154,-1.24606,-1.68296,-0.21705,1.55024,0.00524
+9.05510,1.59215,-1.24586,-1.68315,-0.21706,1.54963,0.00525
+9.05759,1.59276,-1.24567,-1.68334,-0.21707,1.54902,0.00525
+9.06008,1.59336,-1.24548,-1.68352,-0.21707,1.54842,0.00525
+9.06258,1.59378,-1.24535,-1.68365,-0.21708,1.54800,0.00525
+9.06507,1.59439,-1.24516,-1.68384,-0.21709,1.54739,0.00526
+9.06756,1.59499,-1.24497,-1.68402,-0.21709,1.54679,0.00526
+9.07006,1.59558,-1.24479,-1.68420,-0.21710,1.54619,0.00526
+9.07255,1.59619,-1.24460,-1.68438,-0.21712,1.54558,0.00526
+9.07504,1.59680,-1.24441,-1.68456,-0.21713,1.54498,0.00527
+9.07754,1.59733,-1.24424,-1.68472,-0.21714,1.54444,0.00527
+9.08003,1.59794,-1.24406,-1.68487,-0.21717,1.54383,0.00527
+9.08252,1.59855,-1.24387,-1.68503,-0.21720,1.54323,0.00528
+9.08502,1.59882,-1.24380,-1.68505,-0.21726,1.54296,0.00528
+9.08751,1.59852,-1.24394,-1.68450,-0.21765,1.54325,0.00527
+9.09000,1.59822,-1.24408,-1.68397,-0.21805,1.54353,0.00527
+9.09250,1.59793,-1.24422,-1.68344,-0.21843,1.54381,0.00527
+9.09499,1.59764,-1.24435,-1.68292,-0.21881,1.54408,0.00527
+9.09748,1.59735,-1.24449,-1.68240,-0.21918,1.54436,0.00526
+9.09998,1.59707,-1.24462,-1.68190,-0.21954,1.54462,0.00526
+9.10247,1.59680,-1.24476,-1.68140,-0.21990,1.54489,0.00526
+9.10496,1.59653,-1.24489,-1.68092,-0.22025,1.54515,0.00526
+9.10745,1.59644,-1.24493,-1.68077,-0.22035,1.54523,0.00526
+9.10995,1.59609,-1.24508,-1.68026,-0.22071,1.54557,0.00525
+9.11244,1.59575,-1.24523,-1.67976,-0.22105,1.54590,0.00525
+9.11493,1.59541,-1.24538,-1.67926,-0.22139,1.54622,0.00525
+9.11743,1.59508,-1.24553,-1.67878,-0.22172,1.54654,0.00525
+9.11992,1.59476,-1.24567,-1.67830,-0.22205,1.54686,0.00525
+9.12241,1.59445,-1.24581,-1.67787,-0.22234,1.54715,0.00524
+9.12491,1.59398,-1.24600,-1.67734,-0.22267,1.54762,0.00524
+9.12740,1.59351,-1.24619,-1.67682,-0.22300,1.54807,0.00524
+9.12989,1.59305,-1.24637,-1.67631,-0.22332,1.54852,0.00523
+9.13239,1.59259,-1.24656,-1.67580,-0.22363,1.54896,0.00523
+9.13488,1.59214,-1.24674,-1.67531,-0.22394,1.54940,0.00523
+9.13737,1.59170,-1.24692,-1.67482,-0.22425,1.54983,0.00523
+9.13987,1.59127,-1.24710,-1.67434,-0.22455,1.55025,0.00522
+9.14236,1.59084,-1.24727,-1.67386,-0.22484,1.55067,0.00522
+9.14485,1.59041,-1.24745,-1.67340,-0.22513,1.55109,0.00522
+9.14734,1.59000,-1.24762,-1.67294,-0.22541,1.55149,0.00522
+9.14984,1.58959,-1.24779,-1.67249,-0.22569,1.55189,0.00521
+9.15233,1.58918,-1.24795,-1.67205,-0.22596,1.55229,0.00521
+9.15482,1.58889,-1.24807,-1.67174,-0.22615,1.55257,0.00521
+9.15732,1.58839,-1.24827,-1.67127,-0.22642,1.55306,0.00521
+9.15981,1.58790,-1.24846,-1.67081,-0.22668,1.55354,0.00520
+9.16230,1.58742,-1.24865,-1.67035,-0.22694,1.55402,0.00520
+9.16480,1.58694,-1.24884,-1.66990,-0.22720,1.55449,0.00520
+9.16729,1.58647,-1.24902,-1.66946,-0.22745,1.55495,0.00519
+9.16978,1.58600,-1.24921,-1.66903,-0.22769,1.55540,0.00519
+9.17228,1.58555,-1.24939,-1.66860,-0.22793,1.55585,0.00519
+9.17477,1.58510,-1.24957,-1.66818,-0.22817,1.55629,0.00519
+9.17726,1.58465,-1.24975,-1.66777,-0.22840,1.55673,0.00518
+9.17976,1.58459,-1.24977,-1.66772,-0.22843,1.55679,0.00518
+9.18225,1.58403,-1.24998,-1.66725,-0.22868,1.55734,0.00518
+9.18474,1.58347,-1.25020,-1.66679,-0.22892,1.55789,0.00518
+9.18724,1.58292,-1.25041,-1.66634,-0.22916,1.55844,0.00517
+9.18973,1.58237,-1.25062,-1.66589,-0.22939,1.55897,0.00517
+9.19222,1.58184,-1.25082,-1.66545,-0.22962,1.55950,0.00517
+9.19471,1.58131,-1.25103,-1.66502,-0.22985,1.56002,0.00516
+9.19721,1.58079,-1.25123,-1.66459,-0.23007,1.56053,0.00516
+9.19970,1.58028,-1.25143,-1.66417,-0.23029,1.56103,0.00516
+9.20219,1.57977,-1.25162,-1.66376,-0.23050,1.56153,0.00516
+9.20469,1.57928,-1.25182,-1.66335,-0.23071,1.56202,0.00515
+9.20718,1.57879,-1.25201,-1.66295,-0.23092,1.56250,0.00515
+9.20967,1.57830,-1.25220,-1.66256,-0.23112,1.56298,0.00515
+9.21217,1.57782,-1.25239,-1.66217,-0.23132,1.56346,0.00515
+9.21466,1.57725,-1.25261,-1.66175,-0.23152,1.56402,0.00514
+9.21715,1.57668,-1.25282,-1.66134,-0.23171,1.56458,0.00514
+9.21965,1.57612,-1.25303,-1.66093,-0.23191,1.56513,0.00514
+9.22214,1.57558,-1.25324,-1.66053,-0.23209,1.56567,0.00513
+9.22463,1.57504,-1.25345,-1.66013,-0.23228,1.56620,0.00513
+9.22713,1.57450,-1.25365,-1.65974,-0.23246,1.56673,0.00513
+9.22962,1.57398,-1.25385,-1.65936,-0.23264,1.56725,0.00513
+9.23211,1.57346,-1.25405,-1.65898,-0.23282,1.56776,0.00512
+9.23460,1.57295,-1.25424,-1.65861,-0.23299,1.56826,0.00512
+9.23710,1.57245,-1.25444,-1.65825,-0.23316,1.56876,0.00512
+9.23959,1.57238,-1.25446,-1.65820,-0.23318,1.56883,0.00512
+9.24208,1.57165,-1.25473,-1.65774,-0.23337,1.56955,0.00511
+9.24458,1.57093,-1.25500,-1.65729,-0.23355,1.57026,0.00511
+9.24707,1.57022,-1.25526,-1.65684,-0.23374,1.57096,0.00511
+9.24956,1.56953,-1.25551,-1.65640,-0.23391,1.57165,0.00510
+9.25206,1.56884,-1.25577,-1.65597,-0.23409,1.57233,0.00510
+9.25455,1.56816,-1.25602,-1.65554,-0.23426,1.57299,0.00510
+9.25704,1.56750,-1.25627,-1.65512,-0.23443,1.57365,0.00509
+9.25954,1.56684,-1.25651,-1.65471,-0.23460,1.57430,0.00509
+9.26203,1.56619,-1.25675,-1.65430,-0.23476,1.57494,0.00508
+9.26452,1.56556,-1.25699,-1.65390,-0.23492,1.57557,0.00508
+9.26702,1.56493,-1.25723,-1.65350,-0.23508,1.57620,0.00508
+9.26951,1.56431,-1.25746,-1.65311,-0.23523,1.57681,0.00508
+9.27200,1.56370,-1.25769,-1.65273,-0.23538,1.57741,0.00507
+9.27450,1.56310,-1.25792,-1.65235,-0.23553,1.57801,0.00507
+9.27699,1.56251,-1.25814,-1.65198,-0.23568,1.57859,0.00507
+9.27948,1.56193,-1.25836,-1.65161,-0.23582,1.57917,0.00506
+9.28197,1.56136,-1.25858,-1.65125,-0.23596,1.57974,0.00506
+9.28447,1.56079,-1.25880,-1.65090,-0.23610,1.58030,0.00506
+9.28696,1.56024,-1.25901,-1.65055,-0.23623,1.58085,0.00505
+9.28945,1.55969,-1.25922,-1.65020,-0.23636,1.58140,0.00505
+9.29195,1.55915,-1.25943,-1.64986,-0.23650,1.58194,0.00505
+9.29444,1.55862,-1.25963,-1.64953,-0.23662,1.58246,0.00505
+9.29693,1.55834,-1.25974,-1.64936,-0.23669,1.58274,0.00505
+9.29943,1.55772,-1.25997,-1.64899,-0.23682,1.58336,0.00504
+9.30192,1.55710,-1.26020,-1.64863,-0.23694,1.58397,0.00504
+9.30441,1.55650,-1.26043,-1.64828,-0.23707,1.58457,0.00504
+9.30691,1.55590,-1.26066,-1.64793,-0.23719,1.58516,0.00503
+9.30940,1.55531,-1.26088,-1.64758,-0.23731,1.58575,0.00503
+9.31189,1.55473,-1.26110,-1.64724,-0.23742,1.58632,0.00503
+9.31439,1.55416,-1.26132,-1.64691,-0.23754,1.58689,0.00502
+9.31688,1.55360,-1.26153,-1.64658,-0.23765,1.58745,0.00502
+9.31937,1.55304,-1.26174,-1.64625,-0.23776,1.58800,0.00502
+9.32186,1.55250,-1.26195,-1.64593,-0.23787,1.58854,0.00502
+9.32436,1.55200,-1.26214,-1.64564,-0.23797,1.58904,0.00501
+9.32685,1.55137,-1.26238,-1.64527,-0.23810,1.58967,0.00501
+9.32934,1.55074,-1.26262,-1.64491,-0.23822,1.59029,0.00501
+9.33184,1.55013,-1.26285,-1.64455,-0.23834,1.59090,0.00500
+9.33433,1.54952,-1.26309,-1.64420,-0.23846,1.59150,0.00500
+9.33682,1.54893,-1.26331,-1.64385,-0.23858,1.59210,0.00500
+9.33932,1.54834,-1.26354,-1.64351,-0.23869,1.59268,0.00500
+9.34181,1.54776,-1.26376,-1.64317,-0.23880,1.59326,0.00499
+9.34430,1.54719,-1.26398,-1.64284,-0.23892,1.59383,0.00499
+9.34680,1.54663,-1.26420,-1.64251,-0.23902,1.59439,0.00499
+9.34929,1.54607,-1.26442,-1.64219,-0.23913,1.59494,0.00498
+9.35178,1.54553,-1.26463,-1.64187,-0.23923,1.59548,0.00498
+9.35428,1.54509,-1.26480,-1.64161,-0.23932,1.59592,0.00498
+9.35677,1.54445,-1.26504,-1.64124,-0.23944,1.59655,0.00498
+9.35926,1.54383,-1.26528,-1.64088,-0.23956,1.59718,0.00497
+9.36176,1.54321,-1.26552,-1.64052,-0.23968,1.59779,0.00497
+9.36425,1.54261,-1.26576,-1.64017,-0.23979,1.59839,0.00497
+9.36674,1.54201,-1.26599,-1.63982,-0.23991,1.59899,0.00496
+9.36923,1.54142,-1.26622,-1.63948,-0.24002,1.59957,0.00496
+9.37173,1.54084,-1.26644,-1.63914,-0.24013,1.60015,0.00496
+9.37422,1.54027,-1.26667,-1.63881,-0.24023,1.60072,0.00496
+9.37671,1.53971,-1.26689,-1.63848,-0.24034,1.60128,0.00495
+9.37921,1.53915,-1.26710,-1.63816,-0.24044,1.60184,0.00495
+9.38170,1.53861,-1.26732,-1.63784,-0.24054,1.60238,0.00495
+9.38419,1.53817,-1.26749,-1.63758,-0.24062,1.60282,0.00495
+9.38669,1.53753,-1.26774,-1.63721,-0.24074,1.60345,0.00494
+9.38918,1.53691,-1.26798,-1.63685,-0.24086,1.60407,0.00494
+9.39167,1.53629,-1.26823,-1.63649,-0.24097,1.60469,0.00494
+9.39417,1.53569,-1.26846,-1.63614,-0.24109,1.60529,0.00493
+9.39666,1.53509,-1.26870,-1.63579,-0.24120,1.60589,0.00493
+9.39915,1.53450,-1.26893,-1.63545,-0.24130,1.60647,0.00493
+9.40165,1.53392,-1.26916,-1.63511,-0.24141,1.60705,0.00492
+9.40414,1.53335,-1.26938,-1.63478,-0.24151,1.60762,0.00492
+9.40663,1.53279,-1.26961,-1.63445,-0.24162,1.60818,0.00492
+9.40912,1.53224,-1.26983,-1.63413,-0.24172,1.60874,0.00492
+9.41162,1.53169,-1.27004,-1.63381,-0.24182,1.60928,0.00491
+9.41411,1.53125,-1.27022,-1.63355,-0.24190,1.60972,0.00491
+9.41660,1.53059,-1.27048,-1.63318,-0.24201,1.61038,0.00491
+9.41910,1.52994,-1.27073,-1.63281,-0.24212,1.61103,0.00491
+9.42159,1.52930,-1.27099,-1.63245,-0.24223,1.61167,0.00490
+9.42408,1.52867,-1.27123,-1.63209,-0.24234,1.61230,0.00490
+9.42658,1.52805,-1.27148,-1.63174,-0.24244,1.61291,0.00490
+9.42907,1.52744,-1.27172,-1.63139,-0.24254,1.61352,0.00489
+9.43156,1.52683,-1.27196,-1.63105,-0.24264,1.61413,0.00489
+9.43406,1.52624,-1.27220,-1.63071,-0.24274,1.61472,0.00489
+9.43655,1.52566,-1.27243,-1.63038,-0.24284,1.61530,0.00488
+9.43904,1.52508,-1.27266,-1.63005,-0.24294,1.61588,0.00488
+9.44154,1.52451,-1.27289,-1.62973,-0.24303,1.61644,0.00488
+9.44403,1.52396,-1.27311,-1.62941,-0.24312,1.61700,0.00488
+9.44652,1.52341,-1.27333,-1.62910,-0.24321,1.61755,0.00487
+9.44902,1.52286,-1.27355,-1.62879,-0.24330,1.61809,0.00487
+9.45151,1.52280,-1.27357,-1.62875,-0.24331,1.61816,0.00487
+9.45400,1.52216,-1.27383,-1.62839,-0.24342,1.61879,0.00487
+9.45649,1.52154,-1.27408,-1.62803,-0.24352,1.61942,0.00486
+9.45899,1.52092,-1.27432,-1.62767,-0.24363,1.62003,0.00486
+9.46148,1.52032,-1.27457,-1.62733,-0.24373,1.62064,0.00486
+9.46397,1.51972,-1.27481,-1.62698,-0.24383,1.62123,0.00486
+9.46647,1.51913,-1.27505,-1.62665,-0.24393,1.62182,0.00485
+9.46896,1.51855,-1.27528,-1.62631,-0.24402,1.62240,0.00485
+9.47145,1.51798,-1.27551,-1.62598,-0.24412,1.62297,0.00485
+9.47395,1.51741,-1.27574,-1.62566,-0.24421,1.62354,0.00484
+9.47644,1.51686,-1.27596,-1.62534,-0.24430,1.62409,0.00484
+9.47893,1.51631,-1.27619,-1.62503,-0.24439,1.62464,0.00484
+9.48143,1.51586,-1.27637,-1.62477,-0.24446,1.62509,0.00484
+9.48392,1.51507,-1.27668,-1.62435,-0.24457,1.62588,0.00483
+9.48641,1.51429,-1.27698,-1.62394,-0.24467,1.62665,0.00483
+9.48891,1.51353,-1.27729,-1.62354,-0.24477,1.62741,0.00483
+9.49140,1.51278,-1.27758,-1.62313,-0.24487,1.62816,0.00482
+9.49389,1.51203,-1.27788,-1.62274,-0.24497,1.62890,0.00482
+9.49638,1.51130,-1.27817,-1.62235,-0.24507,1.62963,0.00482
+9.49888,1.51059,-1.27845,-1.62197,-0.24516,1.63035,0.00481
+9.50137,1.50988,-1.27873,-1.62159,-0.24525,1.63105,0.00481
+9.50386,1.50918,-1.27901,-1.62122,-0.24534,1.63175,0.00481
+9.50636,1.50849,-1.27929,-1.62085,-0.24543,1.63243,0.00480
+9.50885,1.50782,-1.27956,-1.62049,-0.24552,1.63311,0.00480
+9.51134,1.50715,-1.27982,-1.62014,-0.24561,1.63377,0.00480
+9.51384,1.50649,-1.28009,-1.61979,-0.24569,1.63443,0.00479
+9.51633,1.50585,-1.28035,-1.61944,-0.24577,1.63507,0.00479
+9.51882,1.50521,-1.28061,-1.61910,-0.24585,1.63571,0.00479
+9.52132,1.50459,-1.28086,-1.61877,-0.24593,1.63634,0.00478
+9.52381,1.50397,-1.28111,-1.61844,-0.24601,1.63695,0.00478
+9.52630,1.50336,-1.28136,-1.61811,-0.24609,1.63756,0.00478
+9.52880,1.50276,-1.28160,-1.61779,-0.24616,1.63816,0.00478
+9.53129,1.50217,-1.28184,-1.61748,-0.24623,1.63875,0.00477
+9.53378,1.50159,-1.28208,-1.61716,-0.24631,1.63933,0.00477
+9.53628,1.50102,-1.28231,-1.61686,-0.24638,1.63990,0.00477
+9.53877,1.50046,-1.28254,-1.61656,-0.24645,1.64047,0.00477
+9.54126,1.49990,-1.28277,-1.61626,-0.24651,1.64102,0.00476
+9.54375,1.49929,-1.28302,-1.61592,-0.24660,1.64163,0.00476
+9.54625,1.49809,-1.28350,-1.61523,-0.24680,1.64282,0.00475
+9.54874,1.49691,-1.28398,-1.61455,-0.24699,1.64400,0.00475
+9.55123,1.49575,-1.28446,-1.61387,-0.24719,1.64515,0.00474
+9.55373,1.49460,-1.28492,-1.61321,-0.24737,1.64629,0.00474
+9.55622,1.49348,-1.28539,-1.61256,-0.24756,1.64741,0.00473
+9.55871,1.49237,-1.28584,-1.61191,-0.24774,1.64851,0.00473
+9.56121,1.49127,-1.28629,-1.61128,-0.24792,1.64960,0.00472
+9.56370,1.49020,-1.28674,-1.61065,-0.24810,1.65067,0.00472
+9.56619,1.48914,-1.28717,-1.61003,-0.24827,1.65172,0.00471
+9.56869,1.48810,-1.28761,-1.60943,-0.24844,1.65276,0.00471
+9.57118,1.48707,-1.28803,-1.60883,-0.24861,1.65378,0.00470
+9.57367,1.48606,-1.28846,-1.60824,-0.24877,1.65478,0.00470
+9.57617,1.48506,-1.28887,-1.60765,-0.24893,1.65578,0.00469
+9.57866,1.48408,-1.28928,-1.60708,-0.24909,1.65675,0.00469
+9.58115,1.48312,-1.28969,-1.60651,-0.24924,1.65771,0.00469
+9.58364,1.48217,-1.29009,-1.60596,-0.24940,1.65866,0.00468
+9.58614,1.48123,-1.29049,-1.60541,-0.24955,1.65959,0.00468
+9.58863,1.48031,-1.29088,-1.60487,-0.24969,1.66051,0.00467
+9.59112,1.47941,-1.29126,-1.60433,-0.24984,1.66142,0.00467
+9.59362,1.47851,-1.29164,-1.60381,-0.24998,1.66231,0.00466
+9.59611,1.47763,-1.29201,-1.60329,-0.25012,1.66318,0.00466
+9.59860,1.47677,-1.29238,-1.60278,-0.25025,1.66405,0.00466
+9.60110,1.47592,-1.29275,-1.60228,-0.25039,1.66490,0.00465
+9.60359,1.47508,-1.29311,-1.60178,-0.25052,1.66574,0.00465
+9.60608,1.47425,-1.29346,-1.60130,-0.25065,1.66656,0.00465
+9.60858,1.47344,-1.29381,-1.60082,-0.25077,1.66738,0.00464
+9.61107,1.47264,-1.29416,-1.60034,-0.25090,1.66818,0.00464
+9.61356,1.47185,-1.29450,-1.59988,-0.25102,1.66896,0.00463
+9.61606,1.47107,-1.29484,-1.59942,-0.25114,1.66974,0.00463
+9.61855,1.47031,-1.29517,-1.59896,-0.25126,1.67051,0.00463
+9.62104,1.46956,-1.29550,-1.59852,-0.25137,1.67126,0.00462
+9.62354,1.46882,-1.29582,-1.59808,-0.25149,1.67200,0.00462
+9.62603,1.46809,-1.29614,-1.59764,-0.25160,1.67273,0.00462
+9.62852,1.46737,-1.29645,-1.59722,-0.25171,1.67345,0.00461
+9.63101,1.46666,-1.29676,-1.59680,-0.25182,1.67416,0.00461
+9.63351,1.46596,-1.29707,-1.59638,-0.25192,1.67486,0.00461
+9.63600,1.46528,-1.29737,-1.59597,-0.25202,1.67555,0.00460
+9.63849,1.46460,-1.29767,-1.59557,-0.25213,1.67622,0.00460
+9.64099,1.46394,-1.29796,-1.59517,-0.25223,1.67689,0.00460
+9.64348,1.46328,-1.29825,-1.59478,-0.25233,1.67755,0.00459
+9.64597,1.46264,-1.29853,-1.59440,-0.25242,1.67819,0.00459
+9.64847,1.46200,-1.29882,-1.59402,-0.25252,1.67883,0.00459
+9.65096,1.46138,-1.29909,-1.59365,-0.25261,1.67946,0.00459
+9.65345,1.46076,-1.29937,-1.59328,-0.25270,1.68008,0.00458
+9.65595,1.46016,-1.29964,-1.59292,-0.25279,1.68069,0.00458
+9.65844,1.45956,-1.29990,-1.59256,-0.25288,1.68129,0.00458
+9.66093,1.45898,-1.30017,-1.59221,-0.25297,1.68188,0.00457
+9.66343,1.45840,-1.30042,-1.59186,-0.25305,1.68246,0.00457
+9.66592,1.45783,-1.30068,-1.59152,-0.25314,1.68303,0.00457
+9.66841,1.45727,-1.30093,-1.59118,-0.25322,1.68360,0.00457
+9.67091,1.45671,-1.30118,-1.59085,-0.25330,1.68415,0.00456
+9.67340,1.45617,-1.30142,-1.59053,-0.25338,1.68470,0.00456
+9.67589,1.45564,-1.30166,-1.59021,-0.25346,1.68524,0.00456
+9.67838,1.45517,-1.30187,-1.58993,-0.25352,1.68571,0.00456
+9.68088,1.45422,-1.30228,-1.58942,-0.25363,1.68665,0.00455
+9.68337,1.45329,-1.30268,-1.58891,-0.25373,1.68758,0.00455
+9.68586,1.45238,-1.30308,-1.58840,-0.25383,1.68849,0.00454
+9.68836,1.45147,-1.30347,-1.58791,-0.25393,1.68939,0.00454
+9.69085,1.45058,-1.30386,-1.58742,-0.25403,1.69028,0.00454
+9.69334,1.44971,-1.30424,-1.58694,-0.25412,1.69115,0.00453
+9.69584,1.44885,-1.30461,-1.58647,-0.25422,1.69201,0.00453
+9.69833,1.44800,-1.30498,-1.58600,-0.25431,1.69286,0.00453
+9.70082,1.44717,-1.30535,-1.58554,-0.25440,1.69369,0.00452
+9.70332,1.44634,-1.30571,-1.58509,-0.25449,1.69451,0.00452
+9.70581,1.44554,-1.30607,-1.58464,-0.25458,1.69532,0.00451
+9.70830,1.44474,-1.30642,-1.58420,-0.25466,1.69612,0.00451
+9.71080,1.44396,-1.30676,-1.58377,-0.25475,1.69690,0.00451
+9.71329,1.44318,-1.30710,-1.58334,-0.25483,1.69767,0.00450
+9.71578,1.44242,-1.30744,-1.58292,-0.25491,1.69843,0.00450
+9.71827,1.44168,-1.30777,-1.58250,-0.25499,1.69918,0.00450
+9.72077,1.44094,-1.30810,-1.58210,-0.25507,1.69992,0.00449
+9.72326,1.44021,-1.30842,-1.58169,-0.25515,1.70064,0.00449
+9.72575,1.43950,-1.30874,-1.58130,-0.25523,1.70136,0.00449
+9.72825,1.43880,-1.30906,-1.58090,-0.25530,1.70206,0.00448
+9.73074,1.43811,-1.30937,-1.58052,-0.25537,1.70276,0.00448
+9.73323,1.43743,-1.30967,-1.58014,-0.25545,1.70344,0.00448
+9.73573,1.43676,-1.30997,-1.57976,-0.25552,1.70411,0.00448
+9.73822,1.43610,-1.31027,-1.57940,-0.25559,1.70477,0.00447
+9.74071,1.43545,-1.31056,-1.57903,-0.25566,1.70542,0.00447
+9.74321,1.43481,-1.31085,-1.57867,-0.25572,1.70607,0.00447
+9.74570,1.43418,-1.31113,-1.57832,-0.25579,1.70670,0.00446
+9.74819,1.43356,-1.31142,-1.57797,-0.25585,1.70732,0.00446
+9.75069,1.43295,-1.31169,-1.57763,-0.25592,1.70793,0.00446
+9.75318,1.43235,-1.31196,-1.57729,-0.25598,1.70854,0.00446
+9.75567,1.43175,-1.31223,-1.57696,-0.25604,1.70913,0.00445
+9.75817,1.43117,-1.31250,-1.57663,-0.25610,1.70972,0.00445
+9.76066,1.43060,-1.31276,-1.57631,-0.25616,1.71029,0.00445
+9.76315,1.43003,-1.31302,-1.57599,-0.25622,1.71086,0.00445
+9.76564,1.42948,-1.31327,-1.57568,-0.25628,1.71142,0.00444
+9.76814,1.42893,-1.31352,-1.57537,-0.25634,1.71197,0.00444
+9.77063,1.42839,-1.31377,-1.57506,-0.25639,1.71251,0.00444
+9.77312,1.42793,-1.31398,-1.57481,-0.25644,1.71297,0.00444
+9.77562,1.42706,-1.31437,-1.57432,-0.25653,1.71384,0.00443
+9.77811,1.42621,-1.31475,-1.57384,-0.25662,1.71469,0.00443
+9.78060,1.42537,-1.31514,-1.57336,-0.25671,1.71554,0.00443
+9.78310,1.42454,-1.31551,-1.57290,-0.25680,1.71636,0.00442
+9.78559,1.42372,-1.31588,-1.57244,-0.25689,1.71718,0.00442
+9.78808,1.42292,-1.31624,-1.57199,-0.25697,1.71798,0.00441
+9.79058,1.42213,-1.31660,-1.57154,-0.25705,1.71877,0.00441
+9.79307,1.42135,-1.31696,-1.57110,-0.25714,1.71955,0.00441
+9.79556,1.42059,-1.31731,-1.57067,-0.25722,1.72031,0.00440
+9.79806,1.41983,-1.31765,-1.57024,-0.25729,1.72107,0.00440
+9.80055,1.41909,-1.31799,-1.56982,-0.25737,1.72181,0.00440
+9.80304,1.41836,-1.31833,-1.56940,-0.25745,1.72254,0.00439
+9.80553,1.41764,-1.31866,-1.56900,-0.25752,1.72326,0.00439
+9.80803,1.41693,-1.31899,-1.56859,-0.25760,1.72397,0.00439
+9.81052,1.41624,-1.31931,-1.56820,-0.25767,1.72467,0.00439
+9.81301,1.41555,-1.31962,-1.56781,-0.25774,1.72535,0.00438
+9.81551,1.41488,-1.31994,-1.56742,-0.25781,1.72603,0.00438
+9.81800,1.41421,-1.32024,-1.56704,-0.25788,1.72670,0.00438
+9.82049,1.41356,-1.32055,-1.56667,-0.25795,1.72735,0.00437
+9.82299,1.41291,-1.32085,-1.56630,-0.25802,1.72800,0.00437
+9.82548,1.41228,-1.32114,-1.56593,-0.25808,1.72863,0.00437
+9.82797,1.41166,-1.32143,-1.56558,-0.25815,1.72926,0.00437
+9.83047,1.41104,-1.32172,-1.56522,-0.25821,1.72988,0.00436
+9.83296,1.41044,-1.32200,-1.56488,-0.25827,1.73048,0.00436
+9.83545,1.40984,-1.32228,-1.56454,-0.25833,1.73108,0.00436
+9.83795,1.40926,-1.32255,-1.56420,-0.25839,1.73167,0.00435
+9.84044,1.40868,-1.32283,-1.56387,-0.25845,1.73225,0.00435
+9.84293,1.40811,-1.32309,-1.56354,-0.25851,1.73282,0.00435
+9.84543,1.40755,-1.32336,-1.56322,-0.25857,1.73338,0.00435
+9.84792,1.40700,-1.32361,-1.56290,-0.25863,1.73393,0.00434
+9.85041,1.40646,-1.32387,-1.56259,-0.25868,1.73448,0.00434
+9.85290,1.40593,-1.32412,-1.56228,-0.25874,1.73502,0.00434
+9.85540,1.40547,-1.32434,-1.56201,-0.25878,1.73548,0.00434
+9.85789,1.40453,-1.32477,-1.56152,-0.25885,1.73641,0.00433
+9.86038,1.40361,-1.32519,-1.56103,-0.25891,1.73733,0.00433
+9.86288,1.40271,-1.32560,-1.56055,-0.25897,1.73823,0.00433
+9.86537,1.40182,-1.32601,-1.56007,-0.25903,1.73911,0.00432
+9.86786,1.40095,-1.32641,-1.55961,-0.25910,1.73999,0.00432
+9.87036,1.40008,-1.32681,-1.55915,-0.25916,1.74085,0.00432
+9.87285,1.39924,-1.32720,-1.55869,-0.25921,1.74169,0.00431
+9.87534,1.39840,-1.32759,-1.55824,-0.25927,1.74252,0.00431
+9.87784,1.39758,-1.32797,-1.55780,-0.25933,1.74334,0.00431
+9.88033,1.39677,-1.32835,-1.55737,-0.25939,1.74415,0.00430
+9.88282,1.39598,-1.32872,-1.55694,-0.25944,1.74495,0.00430
+9.88532,1.39519,-1.32908,-1.55652,-0.25950,1.74573,0.00430
+9.88781,1.39442,-1.32944,-1.55610,-0.25955,1.74650,0.00429
+9.89030,1.39366,-1.32980,-1.55569,-0.25960,1.74726,0.00429
+9.89279,1.39292,-1.33015,-1.55528,-0.25965,1.74800,0.00429
+9.89529,1.39218,-1.33049,-1.55489,-0.25971,1.74874,0.00428
+9.89778,1.39146,-1.33083,-1.55449,-0.25976,1.74946,0.00428
+9.90027,1.39075,-1.33117,-1.55411,-0.25981,1.75018,0.00428
+9.90277,1.39005,-1.33150,-1.55372,-0.25985,1.75088,0.00427
+9.90526,1.38936,-1.33182,-1.55335,-0.25990,1.75157,0.00427
+9.90775,1.38868,-1.33214,-1.55298,-0.25995,1.75225,0.00427
+9.91025,1.38801,-1.33246,-1.55261,-0.26000,1.75292,0.00426
+9.91274,1.38736,-1.33277,-1.55225,-0.26004,1.75358,0.00426
+9.91523,1.38671,-1.33308,-1.55190,-0.26009,1.75422,0.00426
+9.91773,1.38607,-1.33338,-1.55155,-0.26013,1.75486,0.00426
+9.92022,1.38545,-1.33368,-1.55120,-0.26017,1.75549,0.00425
+9.92271,1.38483,-1.33397,-1.55086,-0.26022,1.75611,0.00425
+9.92521,1.38422,-1.33426,-1.55053,-0.26026,1.75672,0.00425
+9.92770,1.38362,-1.33455,-1.55020,-0.26030,1.75732,0.00425
+9.93019,1.38304,-1.33483,-1.54987,-0.26034,1.75791,0.00424
+9.93269,1.38246,-1.33511,-1.54955,-0.26038,1.75849,0.00424
+9.93518,1.38189,-1.33538,-1.54924,-0.26042,1.75906,0.00424
+9.93767,1.38133,-1.33565,-1.54893,-0.26046,1.75963,0.00424
+9.94016,1.38078,-1.33592,-1.54862,-0.26050,1.76018,0.00423
+9.94266,1.38023,-1.33618,-1.54832,-0.26054,1.76073,0.00423
+9.94515,1.37970,-1.33644,-1.54802,-0.26058,1.76127,0.00423
+9.94764,1.37917,-1.33669,-1.54773,-0.26061,1.76180,0.00423
+9.95014,1.37906,-1.33675,-1.54767,-0.26062,1.76191,0.00423
+9.95263,1.37850,-1.33702,-1.54735,-0.26067,1.76247,0.00422
+9.95512,1.37794,-1.33729,-1.54703,-0.26071,1.76303,0.00422
+9.95762,1.37740,-1.33755,-1.54672,-0.26076,1.76358,0.00422
+9.96011,1.37686,-1.33782,-1.54641,-0.26080,1.76412,0.00422
+9.96260,1.37633,-1.33807,-1.54610,-0.26085,1.76465,0.00422
+9.96510,1.37585,-1.33831,-1.54583,-0.26088,1.76513,0.00421
+9.96759,1.37529,-1.33858,-1.54552,-0.26092,1.76570,0.00421
+9.97008,1.37474,-1.33884,-1.54522,-0.26096,1.76625,0.00421
+9.97258,1.37420,-1.33911,-1.54492,-0.26099,1.76680,0.00421
+9.97507,1.37366,-1.33937,-1.54462,-0.26102,1.76734,0.00420
+9.97756,1.37313,-1.33962,-1.54433,-0.26106,1.76787,0.00420
+9.98005,1.37292,-1.33973,-1.54421,-0.26107,1.76808,0.00420
+9.98255,1.37235,-1.34000,-1.54391,-0.26110,1.76865,0.00420
+9.98504,1.37180,-1.34027,-1.54362,-0.26112,1.76920,0.00420
+9.98753,1.37125,-1.34053,-1.54333,-0.26115,1.76975,0.00419
+9.99003,1.37072,-1.34079,-1.54304,-0.26118,1.77029,0.00419
+9.99252,1.37019,-1.34104,-1.54276,-0.26120,1.77082,0.00419
+9.99501,1.37003,-1.34112,-1.54267,-0.26121,1.77098,0.00419
+9.99751,1.36949,-1.34138,-1.54239,-0.26123,1.77153,0.00419
+10.00000,1.36895,-1.34164,-1.54211,-0.26125,1.77206,0.00418
diff --git a/python/examples/path_in_pixels.csv b/python/examples/path_in_pixels.csv
index 27f2904f3fe3d6f4c69b91b42d2496af29f3bfba..9f0fa48dd35d6f8bf2035fd69192a8b36fc3458a 100644
--- a/python/examples/path_in_pixels.csv
+++ b/python/examples/path_in_pixels.csv
@@ -1,262 +1,431 @@
-0.30495,0.56198
-0.30643,0.56348
-0.31683,0.57098
-0.35692,0.59947
-0.38216,0.61897
-0.42967,0.66096
-0.47719,0.70445
-0.48461,0.71495
-0.49204,0.72544
-0.49649,0.72694
-0.49649,0.72844
-0.49798,0.72844
-0.49798,0.72994
-0.49946,0.72994
-0.49946,0.73144
-0.50095,0.73144
-0.50243,0.72994
-0.50392,0.72694
-0.50540,0.71944
-0.50540,0.70295
-0.50540,0.69845
-0.50540,0.68195
-0.50243,0.67146
-0.49352,0.62947
-0.49055,0.62047
-0.48907,0.61597
-0.48016,0.58747
-0.48016,0.58298
-0.47867,0.56048
-0.47719,0.55898
-0.47273,0.54099
-0.47273,0.53949
-0.47125,0.53499
-0.47125,0.51849
-0.46828,0.51399
-0.46828,0.51249
-0.46828,0.51099
-0.46977,0.51099
-0.47125,0.51099
-0.47273,0.51099
-0.48164,0.51099
-0.50243,0.51099
-0.50689,0.51099
-0.51134,0.51099
-0.51579,0.51099
-0.51876,0.51099
-0.52173,0.51099
-0.52767,0.50799
-0.54401,0.50799
-0.56034,0.50799
-0.56479,0.50799
-0.56925,0.50799
-0.57370,0.50799
-0.57519,0.50799
-0.58855,0.50499
-0.59301,0.50499
-0.60192,0.50349
-0.61082,0.50349
-0.61528,0.50049
-0.62864,0.50049
-0.63310,0.49900
-0.64646,0.49600
-0.64795,0.49600
-0.65240,0.49600
-0.66576,0.49300
-0.67616,0.49000
-0.69694,0.48700
-0.69991,0.48700
-0.71625,0.48250
-0.71773,0.48250
-0.72813,0.47950
-0.73407,0.47950
-0.74001,0.47650
-0.74149,0.47650
-0.74297,0.47500
-0.74743,0.47350
-0.74743,0.47200
-0.74891,0.47200
-0.74891,0.47050
-0.74594,0.46900
-0.74297,0.46450
-0.74149,0.46450
-0.72219,0.45401
-0.71179,0.44651
-0.65982,0.41801
-0.64498,0.40752
-0.63755,0.40452
-0.61082,0.38952
-0.59895,0.38052
-0.58855,0.37752
-0.57964,0.37302
-0.56925,0.37002
-0.54846,0.36103
-0.53807,0.35803
-0.52619,0.35353
-0.52470,0.35203
-0.52322,0.35203
-0.52173,0.35203
-0.52173,0.35053
-0.52173,0.34903
-0.53064,0.33553
-0.54104,0.32054
-0.56182,0.28904
-0.56479,0.28005
-0.58707,0.24855
-0.58855,0.24405
-0.61082,0.20806
-0.61231,0.20356
-0.62864,0.17657
-0.63755,0.16307
-0.64052,0.15257
-0.65388,0.13158
-0.65537,0.13008
-0.65834,0.11958
-0.65982,0.11958
-0.65982,0.11508
-0.65982,0.11358
-0.65982,0.11208
-0.65834,0.11208
-0.65685,0.11208
-0.65537,0.11208
-0.65092,0.11208
-0.63607,0.11508
-0.62716,0.11508
-0.59598,0.12708
-0.58558,0.13008
-0.57816,0.13308
-0.54401,0.14958
-0.53361,0.15407
-0.50392,0.16907
-0.49649,0.17207
-0.46383,0.19007
-0.45937,0.19457
-0.44898,0.20206
-0.44749,0.20506
-0.44452,0.20656
-0.44304,0.20806
-0.44155,0.20956
-0.44155,0.21106
-0.43710,0.21706
-0.43561,0.21856
-0.43561,0.22156
-0.43413,0.22306
-0.43264,0.22456
-0.42522,0.23656
-0.42374,0.24105
-0.41631,0.24855
-0.41631,0.25305
-0.41483,0.25605
-0.41334,0.25905
-0.41334,0.26055
-0.41186,0.26055
-0.41186,0.26205
-0.41037,0.26205
-0.40889,0.26205
-0.40889,0.26355
-0.40740,0.26355
-0.40592,0.26205
-0.39701,0.25605
-0.36880,0.23506
-0.34207,0.20806
-0.33316,0.20206
-0.32871,0.19756
-0.29604,0.16907
-0.27525,0.14808
-0.26040,0.13908
-0.25446,0.13458
-0.23516,0.11958
-0.22180,0.10759
-0.21586,0.10459
-0.20398,0.09859
-0.20398,0.09709
-0.20546,0.10009
-0.20546,0.10159
-0.20843,0.11208
-0.21437,0.13008
-0.22477,0.15857
-0.23516,0.17957
-0.25298,0.21556
-0.25892,0.23356
-0.27525,0.27255
-0.28416,0.28754
-0.28713,0.29804
-0.30643,0.32803
-0.31980,0.36403
-0.32128,0.36553
-0.32128,0.37002
-0.32277,0.37752
-0.32425,0.37752
-0.32425,0.37902
-0.32277,0.37902
-0.32128,0.37902
-0.31831,0.37902
-0.30792,0.37902
-0.29901,0.38052
-0.28862,0.38052
-0.28119,0.38052
-0.27525,0.38052
-0.26931,0.38352
-0.26634,0.38352
-0.26040,0.38352
-0.25595,0.38502
-0.25446,0.38502
-0.23665,0.38502
-0.23516,0.38502
-0.22922,0.38802
-0.22774,0.38802
-0.21289,0.38802
-0.20398,0.38802
-0.19062,0.38802
-0.18171,0.38802
-0.17131,0.39102
-0.16686,0.39102
-0.16240,0.39102
-0.14607,0.39552
-0.14162,0.39552
-0.12528,0.39552
-0.12231,0.39702
-0.11637,0.39702
-0.11489,0.39702
-0.11340,0.39702
-0.11192,0.39702
-0.11192,0.39852
-0.11340,0.40002
-0.11489,0.40152
-0.13122,0.41052
-0.13716,0.41651
-0.14310,0.41951
-0.14607,0.42401
-0.15053,0.42701
-0.15646,0.43301
-0.16092,0.44051
-0.16092,0.44201
-0.16240,0.44351
-0.16389,0.44501
-0.16686,0.44801
-0.16686,0.44951
-0.16983,0.45251
-0.17725,0.46300
-0.18468,0.47350
-0.18913,0.47950
-0.20992,0.50049
-0.21883,0.51099
-0.24259,0.52449
-0.25595,0.53349
-0.27377,0.54249
-0.28119,0.54698
-0.28565,0.55148
-0.28713,0.55148
-0.29604,0.55598
-0.29752,0.55748
-0.30792,0.56348
-0.30940,0.56498
-0.31237,0.56648
-0.31386,0.56648
-0.31534,0.56648
-0.31534,0.56798
-0.31683,0.56798
-0.31831,0.56798
-0.31831,0.56948
-0.31980,0.56948
-0.31980,0.56948
+0.31307,0.56072
+0.31456,0.56733
+0.32351,0.58849
+0.32799,0.59642
+0.33395,0.60436
+0.34141,0.61362
+0.34887,0.62287
+0.35484,0.62949
+0.36230,0.64007
+0.36677,0.64800
+0.37423,0.65858
+0.38169,0.67313
+0.38766,0.68371
+0.39810,0.69693
+0.40406,0.70355
+0.41003,0.71016
+0.41600,0.71809
+0.42644,0.72735
+0.43539,0.73793
+0.44285,0.74719
+0.45031,0.75645
+0.45777,0.76438
+0.46522,0.77232
+0.47268,0.78025
+0.48909,0.79744
+0.49357,0.80141
+0.49655,0.80670
+0.49804,0.80935
+0.49953,0.81199
+0.50252,0.81596
+0.50401,0.81861
+0.50401,0.81993
+0.50401,0.82125
+0.50401,0.81728
+0.50401,0.81067
+0.50252,0.79348
+0.50699,0.76835
+0.50848,0.75645
+0.51147,0.74719
+0.51147,0.73925
+0.51147,0.73529
+0.51147,0.73132
+0.51147,0.72867
+0.51147,0.72338
+0.51296,0.71677
+0.51445,0.70884
+0.51594,0.70222
+0.51743,0.69561
+0.51893,0.69164
+0.52042,0.68503
+0.52191,0.68106
+0.52340,0.67842
+0.52638,0.67313
+0.52788,0.66916
+0.52788,0.66652
+0.52937,0.66387
+0.53235,0.65990
+0.53533,0.65594
+0.53832,0.65065
+0.54279,0.64403
+0.54727,0.63874
+0.55174,0.63213
+0.55473,0.62684
+0.56069,0.62023
+0.56368,0.61626
+0.56517,0.61494
+0.56815,0.61097
+0.56964,0.60700
+0.57114,0.60436
+0.57263,0.60039
+0.57561,0.59775
+0.57859,0.59113
+0.58009,0.58849
+0.58009,0.58717
+0.58009,0.58584
+0.58009,0.58452
+0.58009,0.58320
+0.58456,0.58320
+0.60395,0.58320
+0.62633,0.58320
+0.63677,0.58320
+0.64423,0.58320
+0.65020,0.58320
+0.65765,0.58320
+0.66511,0.58320
+0.67406,0.58452
+0.68003,0.58452
+0.69346,0.58584
+0.69942,0.58584
+0.70539,0.58584
+0.71136,0.58584
+0.71732,0.58584
+0.72478,0.58584
+0.73224,0.58452
+0.75014,0.58320
+0.75611,0.58320
+0.76357,0.58188
+0.76804,0.58188
+0.77401,0.58188
+0.77699,0.58055
+0.78296,0.58055
+0.78892,0.58055
+0.79489,0.58055
+0.80981,0.58055
+0.81577,0.58055
+0.82771,0.58055
+0.83069,0.58055
+0.83368,0.58055
+0.83666,0.58055
+0.83815,0.58055
+0.83964,0.58055
+0.84113,0.58055
+0.84263,0.58055
+0.84412,0.58055
+0.84561,0.58055
+0.84561,0.57791
+0.84561,0.57526
+0.82920,0.55939
+0.82025,0.55543
+0.81727,0.55278
+0.80533,0.54485
+0.79937,0.54088
+0.79340,0.53823
+0.78445,0.53294
+0.77699,0.52898
+0.76804,0.52501
+0.76357,0.52369
+0.75909,0.52104
+0.75461,0.51972
+0.74865,0.51707
+0.73224,0.51311
+0.72329,0.51046
+0.71285,0.50782
+0.70390,0.50517
+0.69495,0.50253
+0.68898,0.50120
+0.68450,0.49988
+0.67705,0.49724
+0.67257,0.49724
+0.66810,0.49591
+0.66213,0.49327
+0.65616,0.49195
+0.65169,0.49062
+0.64423,0.48930
+0.64125,0.48930
+0.63975,0.48930
+0.63826,0.48930
+0.63677,0.48930
+0.63528,0.48930
+0.63230,0.48798
+0.63080,0.48798
+0.62931,0.48798
+0.62782,0.48798
+0.62484,0.48666
+0.62036,0.48401
+0.61738,0.48401
+0.61589,0.48401
+0.61290,0.48401
+0.61290,0.48269
+0.61290,0.47740
+0.61290,0.45756
+0.61439,0.43905
+0.61589,0.42714
+0.61738,0.41656
+0.61887,0.40731
+0.61887,0.40069
+0.61887,0.39276
+0.61887,0.38615
+0.61887,0.37821
+0.61887,0.36763
+0.62036,0.36102
+0.62036,0.35441
+0.62036,0.34779
+0.62036,0.34250
+0.62036,0.33721
+0.62036,0.33192
+0.62036,0.32663
+0.62185,0.31605
+0.62185,0.31341
+0.62185,0.30944
+0.62335,0.30415
+0.62484,0.30018
+0.62782,0.29489
+0.63230,0.27902
+0.63379,0.27241
+0.63528,0.26976
+0.63528,0.26712
+0.63528,0.26447
+0.63528,0.26183
+0.63528,0.26051
+0.63528,0.25918
+0.63528,0.25786
+0.63528,0.25654
+0.63528,0.25522
+0.63528,0.25257
+0.63528,0.24993
+0.63677,0.24728
+0.63677,0.24596
+0.63677,0.24331
+0.63677,0.24067
+0.63826,0.23802
+0.63826,0.23273
+0.63826,0.23009
+0.63826,0.22877
+0.63826,0.22744
+0.63230,0.23273
+0.60843,0.26051
+0.58605,0.29092
+0.57859,0.30415
+0.57561,0.30944
+0.57263,0.31473
+0.57114,0.31870
+0.56815,0.32399
+0.56666,0.32928
+0.56368,0.33589
+0.56069,0.34250
+0.55622,0.35705
+0.55324,0.36499
+0.55174,0.37160
+0.54727,0.37689
+0.54428,0.38350
+0.54130,0.38879
+0.53981,0.39276
+0.53683,0.39805
+0.53384,0.40202
+0.53086,0.40598
+0.52638,0.41524
+0.52340,0.41789
+0.52191,0.42053
+0.51893,0.42318
+0.51743,0.42450
+0.51594,0.42714
+0.51147,0.43376
+0.50848,0.43772
+0.50550,0.44301
+0.50252,0.44963
+0.50103,0.45095
+0.49953,0.45359
+0.49804,0.45624
+0.49655,0.45756
+0.49506,0.46417
+0.49208,0.47079
+0.49058,0.47343
+0.48909,0.47475
+0.48760,0.47608
+0.48760,0.47740
+0.48611,0.48004
+0.48462,0.48137
+0.48462,0.48269
+0.48313,0.48401
+0.48313,0.48533
+0.48163,0.48798
+0.48014,0.48930
+0.47716,0.48798
+0.47268,0.48533
+0.46821,0.48137
+0.46672,0.47872
+0.46522,0.47475
+0.46373,0.46946
+0.46224,0.46550
+0.45926,0.46153
+0.45777,0.45888
+0.45478,0.45756
+0.45329,0.45492
+0.45180,0.45359
+0.45031,0.45095
+0.44882,0.44830
+0.44583,0.44566
+0.44434,0.44301
+0.43539,0.43508
+0.43092,0.43111
+0.42644,0.42582
+0.42047,0.42053
+0.41600,0.41656
+0.41152,0.41127
+0.40556,0.40466
+0.39362,0.39540
+0.38915,0.39144
+0.38467,0.38879
+0.37721,0.38350
+0.37274,0.38086
+0.36826,0.37821
+0.36379,0.37557
+0.36081,0.37292
+0.35633,0.37028
+0.35036,0.36631
+0.33843,0.35573
+0.33246,0.34912
+0.32650,0.34383
+0.32202,0.33721
+0.32053,0.33325
+0.31605,0.32796
+0.31307,0.32399
+0.31009,0.32002
+0.30561,0.30944
+0.30263,0.30547
+0.29965,0.30283
+0.29666,0.29886
+0.29368,0.29489
+0.29219,0.29092
+0.28920,0.28828
+0.28771,0.28299
+0.28175,0.27241
+0.28025,0.26844
+0.27876,0.26580
+0.27727,0.26315
+0.27578,0.26183
+0.27429,0.26051
+0.27429,0.25918
+0.27429,0.25786
+0.27429,0.25654
+0.27429,0.25522
+0.27429,0.25654
+0.27429,0.26447
+0.27429,0.27505
+0.27429,0.28828
+0.27429,0.30547
+0.27429,0.31076
+0.27429,0.31341
+0.27429,0.31738
+0.27429,0.32002
+0.27429,0.32399
+0.27578,0.32928
+0.27876,0.33854
+0.28175,0.34383
+0.28473,0.35044
+0.28622,0.35441
+0.29070,0.36102
+0.29368,0.36631
+0.29666,0.37028
+0.29815,0.37424
+0.30114,0.37821
+0.30412,0.38218
+0.31009,0.39144
+0.31605,0.39805
+0.31904,0.40334
+0.32053,0.40731
+0.32351,0.41127
+0.32500,0.41392
+0.32650,0.41524
+0.32799,0.41789
+0.33246,0.42450
+0.33545,0.42847
+0.33843,0.43243
+0.33992,0.43508
+0.34291,0.44037
+0.34589,0.44434
+0.34887,0.44698
+0.35036,0.45095
+0.35335,0.45492
+0.35633,0.45756
+0.35931,0.46285
+0.36528,0.47211
+0.36677,0.47608
+0.36826,0.47872
+0.36826,0.48004
+0.36528,0.48004
+0.34738,0.47740
+0.33246,0.47740
+0.31158,0.47475
+0.28771,0.47343
+0.27578,0.47211
+0.26683,0.47211
+0.26086,0.47211
+0.25191,0.47211
+0.23699,0.47211
+0.22954,0.47211
+0.22208,0.47211
+0.20865,0.47211
+0.20119,0.47211
+0.19672,0.47211
+0.19075,0.47211
+0.18628,0.47211
+0.18031,0.47211
+0.16688,0.47079
+0.15943,0.47079
+0.15346,0.47079
+0.14600,0.46946
+0.13705,0.46814
+0.12362,0.46550
+0.11467,0.46285
+0.11020,0.46285
+0.10423,0.46021
+0.09976,0.45888
+0.09528,0.45756
+0.09230,0.45756
+0.08633,0.45492
+0.08186,0.45359
+0.07887,0.45359
+0.06843,0.45227
+0.06694,0.45095
+0.06396,0.45095
+0.06097,0.45095
+0.05948,0.45095
+0.05650,0.45095
+0.05501,0.45095
+0.05351,0.45095
+0.05202,0.45227
+0.05202,0.45624
+0.05650,0.46153
+0.06097,0.46550
+0.06694,0.47079
+0.06992,0.47343
+0.07440,0.47608
+0.07738,0.47740
+0.08186,0.48004
+0.08633,0.48269
+0.09528,0.48666
+0.10274,0.48930
+0.10722,0.49062
+0.11617,0.49327
+0.12213,0.49459
+0.12959,0.49724
+0.13556,0.49856
+0.14898,0.50253
+0.15495,0.50385
+0.16092,0.50649
+0.16688,0.50914
+0.17285,0.51178
+0.18031,0.51443
+0.18628,0.51707
+0.20119,0.52104
+0.23998,0.53823
+0.26534,0.54485
+0.28622,0.55146
+0.31158,0.55675
+0.31456,0.55807
+0.31755,0.55807
+0.32053,0.55807
+0.32202,0.55807
+0.32202,0.55807
diff --git a/python/fts.png b/python/fts.png
new file mode 100644
index 0000000000000000000000000000000000000000..16481cb3bc6a9c6055fdad6d215d40089f7d4627
Binary files /dev/null and b/python/fts.png differ