diff --git a/CMake/CXX11.cmake b/CMake/CXX11.cmake deleted file mode 100644 index ac2ca53139..0000000000 --- a/CMake/CXX11.cmake +++ /dev/null @@ -1,48 +0,0 @@ -# This is cloned from -# https://github.com/nitroshare/CXX11-CMake-Macros -# until C++11 support finally hits CMake stable (should be 3.1, I think). - -# Copyright (c) 2013 Nathan Osman - -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: - -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. - -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -# Determines whether or not the compiler supports C++11 -macro(check_for_cxx11_compiler _VAR) - message(STATUS "Checking for C++11 compiler") - set(${_VAR}) - if((MSVC AND (MSVC14)) OR - (CMAKE_COMPILER_IS_GNUCXX AND NOT ${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS 4.6) OR - (CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND NOT ${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS 3.1) OR - (CMAKE_CXX_COMPILER_ID STREQUAL "Intel" AND NOT ${CMAKE_CXX_COMPILER_VERSION} VERSION_LESS 12.0)) - set(${_VAR} 1) - message(STATUS "Checking for C++11 compiler - available") - else() - message(STATUS "Checking for C++11 compiler - unavailable") - endif() -endmacro() - -# Sets the appropriate flag to enable C++11 support -macro(enable_cxx11) - if(CMAKE_COMPILER_IS_GNUCXX OR - CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR - CMAKE_CXX_COMPILER_ID STREQUAL "Intel") - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") - endif() -endmacro() - diff --git a/CMake/FindPythonModule.cmake b/CMake/FindPythonModule.cmake index 60fd7a9f55..73a0b3e180 100644 --- a/CMake/FindPythonModule.cmake +++ b/CMake/FindPythonModule.cmake @@ -20,7 +20,7 @@ function(find_python_module module) endif () # A module's location is usually a directory, but for binary modules # it's a .so file. - execute_process(COMMAND "${PYTHON}" "-c" + execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c" "import re, ${module}; print(re.compile('/__init__.py.*').sub('',${module}.__file__))" RESULT_VARIABLE _${module}_status OUTPUT_VARIABLE _${module}_location @@ -28,7 +28,7 @@ function(find_python_module module) if (NOT _${module}_status) # Now we have to check the version. if (VERSION_REQ) - execute_process(COMMAND "${PYTHON}" "-c" + execute_process(COMMAND "${PYTHON_EXECUTABLE}" "-c" "import ${module}; from distutils.version import StrictVersion; print(StrictVersion(${module}.__version__) >= StrictVersion('${VERSION_REQ}'));" RESULT_VARIABLE _version_status OUTPUT_VARIABLE _version_compare diff --git a/CMakeLists.txt b/CMakeLists.txt index ea42a24c60..5c5ffbe4a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.10) +cmake_minimum_required(VERSION 3.3.2) project(mlpack C CXX) include(CMake/cotire.cmake) @@ -12,7 +12,16 @@ option(MATLAB_BINDINGS "Compile MATLAB bindings if MATLAB is found." OFF) option(TEST_VERBOSE "Run test cases with verbose output." OFF) option(BUILD_TESTS "Build tests." ON) option(BUILD_CLI_EXECUTABLES "Build command-line executables." ON) -option(BUILD_PYTHON_BINDINGS "Build Python bindings." ON) + +# Currently Python bindings aren't known to build successfully on Windows, so +# set BUILD_PYTHON_BINDINGS to OFF when the platform is Windows. +if (WIN32) + option(BUILD_PYTHON_BINDINGS "Build Python bindings." OFF) + message(WARNING "By default Python bindings are not compiled for Windows because they are not known to work. Set BUILD_PYTHON_BINDINGS to ON if you want them built.") +else () + option(BUILD_PYTHON_BINDINGS "Build Python bindings." ON) +endif() + option(BUILD_SHARED_LIBS "Compile shared libraries (if OFF, static libraries are compiled)." ON) option(BUILD_WITH_COVERAGE @@ -24,34 +33,9 @@ option(FORCE_CXX11 option(USE_OPENMP "If available, use OpenMP for parallelization." ON) enable_testing() -# Currently Python bindings aren't known to build successfully on Windows, so -# set BUILD_PYTHON_BINDINGS to OFF when the platform is Windows. -if (WIN32) - option(BUILD_PYTHON_BINDINGS "Build Python bindings." OFF) - message(WARNING "By default Python bindings are not compiled for Windows because they are not known to work. Set BUILD_PYTHON_BINDINGS to ON if you want them built.") -endif() - -# Ensure that we have a C++11 compiler. In newer versions of CMake, this is -# done with target_compile_features() when the mlpack library target is added in -# src/mlpack/CMakeLists.txt. -if ((${CMAKE_MAJOR_VERSION} LESS 3 OR - (${CMAKE_MAJOR_VERSION} EQUAL 3 AND ${CMAKE_MINOR_VERSION} LESS 1)) - AND NOT FORCE_CXX11) - # Older versions of CMake do not support target_compile_features(), so we have - # to use something kind of hacky. - include(CMake/CXX11.cmake) - check_for_cxx11_compiler(HAS_CXX11) - if(NOT HAS_CXX11) - message(FATAL_ERROR "No C++11 compiler available!") - endif() - enable_cxx11() -else() - # set required standard to c++11 - set(CMAKE_CXX_STANDARD 11) - set(CMAKE_CXX_STANDARD_REQUIRED ON) -endif () -# Otherwise, we may have to set the C++11 mode after the mlpack target is -# defined. +# Set required standard to c++11 +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_STANDARD_REQUIRED ON) # Include modules in the CMake directory. set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMake") @@ -462,13 +446,13 @@ add_subdirectory(src/mlpack) # If we need to keep gitversion.hpp up to date, then make sure the mlpack target # depends on it. if (USING_GIT STREQUAL "YES") - add_dependencies(mlpack mlpack_gitversion) + add_dependencies(mlpack_headers mlpack_gitversion) endif () # Make the mlpack_arma_config target depend on mlpack (we couldn't do this # before the add_subdirectory() call because the mlpack target didn't exist # before that). -add_dependencies(mlpack mlpack_arma_config) +add_dependencies(mlpack_headers mlpack_arma_config) # Make a target to generate the documentation. If Doxygen isn't installed, then # I guess this option will just be unavailable. diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt index 79dcae12ad..61b23a0360 100644 --- a/COPYRIGHT.txt +++ b/COPYRIGHT.txt @@ -105,6 +105,7 @@ Copyright: Copyright 2018, Yasmine Dumouchel Copyright 2018, German Lancioni Copyright 2018, Ayush Chamoli + Copyright 2018, Tommi Laivamaa License: BSD-3-clause All rights reserved. diff --git a/HISTORY.md b/HISTORY.md index 2e0728f347..c2f530f2d2 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +### mlpack 3.0.4 +###### ????-??-?? + * Bump minimum CMake version to 3.3.2. + + * CMake fixes for Ninja generator by Marc Espie. + ### mlpack 3.0.3 ###### 2018-07-27 * Fix Visual Studio compilation issue (#1443). diff --git a/README.md b/README.md index 3f39ae086f..d010911173 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Python bindings. ### 1. Introduction -The mlpack website can be found at http://www.mlpack.org and contains numerous +The mlpack website can be found at http://www.mlpack.org and it contains numerous tutorials and extensive documentation. This README serves as a guide for what mlpack is, how to install it, how to run it, and where to find more documentation. The website should be consulted for further information: @@ -84,13 +84,13 @@ mlpack has the following dependencies: Armadillo >= 6.500.0 Boost (program_options, math_c99, unit_test_framework, serialization, spirit) - CMake >= 2.8.5 + CMake >= 3.3.2 All of those should be available in your distribution's package manager. If not, you will have to compile each of them by hand. See the documentation for each of those packages for more information. -If you would like use or build the mlpack Python bindings, make sure that the +If you would like to use or build the mlpack Python bindings, make sure that the following Python packages are installed: setuptools diff --git a/src/mlpack/CMakeLists.txt b/src/mlpack/CMakeLists.txt index 29c545c9ee..fa8ce2ac22 100644 --- a/src/mlpack/CMakeLists.txt +++ b/src/mlpack/CMakeLists.txt @@ -85,7 +85,8 @@ foreach(incl_file ${INCLUDE_FILES}) add_custom_command(TARGET mlpack_headers POST_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${incl_file} - ${CMAKE_BINARY_DIR}/include/mlpack/${incl_file}) + ${CMAKE_BINARY_DIR}/include/mlpack/${incl_file} + BYPRODUCTS ${CMAKE_BINARY_DIR}/include/mlpack/${incl_file}) endforeach() # At install time, we simply install that directory of header files we diff --git a/src/mlpack/bindings/python/CMakeLists.txt b/src/mlpack/bindings/python/CMakeLists.txt index 18f1ce81cd..bde38e552e 100644 --- a/src/mlpack/bindings/python/CMakeLists.txt +++ b/src/mlpack/bindings/python/CMakeLists.txt @@ -15,11 +15,11 @@ endif () # Generate Python setuptools file. # We can probably use FindPythonInterp when we require CMake 3.0. -find_program(PYTHON "python" REQUIRED) -if (NOT PYTHON) +find_package(PythonInterp) +if (NOT PYTHON_EXECUTABLE) not_found_return("Python not found; not building Python bindings.") else () - message(STATUS "Found Python: ${PYTHON}") + message(STATUS "Found Python: ${PYTHON_EXECUTABLE}") endif () # Import find_python_module. @@ -116,7 +116,8 @@ endforeach() add_custom_command(TARGET python_copy PRE_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/setup.cfg - ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/) + ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/ + BYPRODUCTS ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/mlpack/${cython_file}) add_custom_command(TARGET python_copy PRE_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/copy_artifacts.py @@ -127,20 +128,21 @@ if (BUILD_TESTS) add_custom_command(TARGET python_copy PRE_BUILD COMMAND ${CMAKE_COMMAND} ARGS -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${test_file} - ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/tests/) + ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/tests/ + BYPRODUCTS ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/tests/${test_file}) endforeach () endif () # Install any dependencies via setuptools automatically. add_custom_command(TARGET python_copy POST_BUILD - COMMAND ${CMAKE_COMMAND} -E env NO_BUILD=1 ${PYTHON} + COMMAND ${CMAKE_COMMAND} -E env NO_BUILD=1 ${PYTHON_EXECUTABLE} ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py build WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/) # Then do the actual build. add_custom_command(TARGET python POST_BUILD - COMMAND ${PYTHON} ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py - build_ext + COMMAND ${PYTHON_EXECUTABLE} + ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py build_ext DEPENDS mlpack/arma_numpy.pxd mlpack/arma_numpy.pyx mlpack/arma.pxd @@ -153,19 +155,19 @@ add_custom_command(TARGET python POST_BUILD # Copy the built artifacts, so that it is also an in-place build. add_custom_command(TARGET python POST_BUILD - COMMAND ${PYTHON} + COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/copy_artifacts.py WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/) add_dependencies(python python_copy) # Configure installation script file. -execute_process(COMMAND ${PYTHON} +execute_process(COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/print_python_version.py" "${CMAKE_INSTALL_PREFIX}" OUTPUT_VARIABLE NEW_PYTHONPATH) install(CODE "set(ENV{PYTHONPATH} ${NEW_PYTHONPATH})") install(CODE "execute_process(COMMAND mkdir -p $ENV{DESTDIR}${NEW_PYTHONPATH})") -install(CODE "execute_process(COMMAND ${PYTHON} +install(CODE "execute_process(COMMAND ${PYTHON_EXECUTABLE} \"${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py\" install --prefix=${CMAKE_INSTALL_PREFIX} --root=$ENV{DESTDIR} WORKING_DIRECTORY \"${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/\")") @@ -205,7 +207,8 @@ if (BUILD_PYTHON_BINDINGS) # enforce it here. Although this will always be rebuilt, that's okay because # distutils will determine whether or not it *actually* needs to be rebuilt. add_custom_target(build_pyx_${name} - ${PYTHON} ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py + ${PYTHON_EXECUTABLE} + ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py build_ext --module=${name}.pyx DEPENDS generate_pyx_${name} WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/ @@ -225,8 +228,8 @@ endmacro () # Add a test. if (BUILD_PYTHON_BINDINGS) add_test(NAME python_bindings_test - COMMAND ${PYTHON} ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py - test + COMMAND ${PYTHON_EXECUTABLE} + ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/setup.py test WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/src/mlpack/bindings/python/) set_tests_properties(python_bindings_test PROPERTIES ENVIRONMENT "NO_BUILD=1;LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:${CMAKE_BINARY_DIR}/lib/") diff --git a/src/mlpack/core.hpp b/src/mlpack/core.hpp index 9de5b4b4b3..74924248b5 100644 --- a/src/mlpack/core.hpp +++ b/src/mlpack/core.hpp @@ -250,6 +250,7 @@ * - Shashank Shekhar * - Yasmine Dumouchel * - German Lancioni + * - Tommi Laivamaa */ // First, include all of the prerequisites. @@ -293,6 +294,7 @@ #include #include #include +#include // Use OpenMP if compiled with -DHAS_OPENMP. #ifdef HAS_OPENMP diff --git a/src/mlpack/core/kernels/CMakeLists.txt b/src/mlpack/core/kernels/CMakeLists.txt index 926f61fe8c..fa77bd7beb 100644 --- a/src/mlpack/core/kernels/CMakeLists.txt +++ b/src/mlpack/core/kernels/CMakeLists.txt @@ -1,6 +1,7 @@ # Define the files we need to compile. # Anything not in this list will not be compiled into mlpack. set(SOURCES + cauchy_kernel.hpp cosine_distance.hpp cosine_distance_impl.hpp epanechnikov_kernel.hpp diff --git a/src/mlpack/core/kernels/cauchy_kernel.hpp b/src/mlpack/core/kernels/cauchy_kernel.hpp new file mode 100644 index 0000000000..d7953fb140 --- /dev/null +++ b/src/mlpack/core/kernels/cauchy_kernel.hpp @@ -0,0 +1,98 @@ +/** + * @file cauchy_kernel.hpp + * @author Tommi Laivamaa + * + * Implementation of the Cauchy kernel (CauchyKernel), + * + * mlpack is free software; you may redistribute it and/or modify it under the + * terms of the 3-clause BSD license. You should have received a copy of the + * 3-clause BSD license along with mlpack. If not, see + * http://www.opensource.org/licenses/BSD-3-Clause for more information. + */ +#ifndef MLPACK_CORE_KERNELS_CAUCHY_KERNEL_HPP +#define MLPACK_CORE_KERNELS_CAUCHY_KERNEL_HPP + +#include +#include +#include + +namespace mlpack { +namespace kernel { + +/** + * The Cauchy kernel. Given two vector @f$ x @f$, @f$ y @f$, and a bandwidth + * @f$ \sigma @f$ (set in the constructor), + * + * @f[ + * K(x, y) = \frac{1}{1 + (\frac{|| x - y ||}{\sigma})^2}. + * @f] + * + * For more details, see the following published paper: + * + * @code + * @inproceedings{Basak2008, + * title={A least square kernel machine with box constraints}, + * author={Basak, Jayanta}, + * booktitle={Pattern Recognition, 2008. ICPR 2008. 19th International + * Conference on}, + * pages={1--4}, + * year={2008}, + * organization={IEEE} + * } + * @endcode + */ +class CauchyKernel +{ + public: + /** + * Construct the Cauchy kernel; by default, the bandwidth is 1.0. + */ + CauchyKernel(double bandwidth = 1.0) : bandwidth(bandwidth) + { } + + /** + * Evaluation of the Cauchy kernel. This could be generalized to use any + * distance metric, not the Euclidean distance, but for now, the Euclidean + * distance is used. + * + * @tparam VecTypeA Type of first vector (arma::vec, arma::sp_vec). + * @tparam VecTypeB Type of second vector (arma::vec, arma::sp_vec). + * @param a First vector. + * @param b Second vector. + * @return K(a, b). + */ + template + double Evaluate(const VecTypeA& a, const VecTypeB& b) + { + return 1 / (1 + ( + std::pow(metric::EuclideanDistance::Evaluate(a, b) / bandwidth, 2))); + } + + /** + * Serialize the kernel. + */ + template + void serialize(Archive& ar, const unsigned int /* version */) + { + ar & BOOST_SERIALIZATION_NVP(bandwidth); + } + + private: + //! Kernel bandwidth. + double bandwidth; +}; + +//! Kernel traits for the Cauchy kernel. +template<> +class KernelTraits +{ + public: + //! The Cauchy kernel is normalized: K(x, x) = 1 for all x. + static const bool IsNormalized = true; +}; + +} // namespace kernel +} // namespace mlpack + +#endif + diff --git a/src/mlpack/core/tree/binary_space_tree/vantage_point_split_impl.hpp b/src/mlpack/core/tree/binary_space_tree/vantage_point_split_impl.hpp index fd15b45746..b1714b7c7d 100644 --- a/src/mlpack/core/tree/binary_space_tree/vantage_point_split_impl.hpp +++ b/src/mlpack/core/tree/binary_space_tree/vantage_point_split_impl.hpp @@ -25,7 +25,7 @@ SplitNode(const BoundType& bound, MatType& data, const size_t begin, const size_t count, SplitInfo& splitInfo) { ElemType mu = 0; - size_t vantagePointIndex; + size_t vantagePointIndex = 0; // Find the best vantage point. SelectVantagePoint(bound.Metric(), data, begin, count, vantagePointIndex, mu); diff --git a/src/mlpack/methods/adaboost/CMakeLists.txt b/src/mlpack/methods/adaboost/CMakeLists.txt index 5505f057fb..583131ad45 100644 --- a/src/mlpack/methods/adaboost/CMakeLists.txt +++ b/src/mlpack/methods/adaboost/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 2.8) - # Define the files we need to compile. # Anything not in this list will not be compiled into mlpack. set(SOURCES diff --git a/src/mlpack/methods/ann/ffn.hpp b/src/mlpack/methods/ann/ffn.hpp index 8c9a8356e4..34b4c96660 100644 --- a/src/mlpack/methods/ann/ffn.hpp +++ b/src/mlpack/methods/ann/ffn.hpp @@ -28,6 +28,7 @@ #include "init_rules/network_init.hpp" #include +#include #include #include @@ -462,6 +463,24 @@ class FFN } // namespace ann } // namespace mlpack + +//! Set the serialization version of the FFN class. Multiple template arguments +//! makes this ugly... +namespace boost { +namespace serialization { + +template +struct version< + mlpack::ann::FFN> +{ + BOOST_STATIC_CONSTANT(int, value = 1); +}; + +} // namespace serialization +} // namespace boost + // Include implementation. #include "ffn_impl.hpp" diff --git a/src/mlpack/methods/ann/ffn_impl.hpp b/src/mlpack/methods/ann/ffn_impl.hpp index 9aca45fa5d..878060a4d4 100644 --- a/src/mlpack/methods/ann/ffn_impl.hpp +++ b/src/mlpack/methods/ann/ffn_impl.hpp @@ -495,13 +495,20 @@ template template void FFN::serialize( - Archive& ar, const unsigned int /* version */) + Archive& ar, const unsigned int version) { ar & BOOST_SERIALIZATION_NVP(parameter); ar & BOOST_SERIALIZATION_NVP(width); ar & BOOST_SERIALIZATION_NVP(height); ar & BOOST_SERIALIZATION_NVP(currentInput); + // Earlier versions of the FFN code did not serialize whether or not the model + // was reset. + if (version > 0) + { + ar & BOOST_SERIALIZATION_NVP(reset); + } + // Be sure to clear other layers before loading. if (Archive::is_loading::value) { @@ -515,7 +522,10 @@ void FFN::serialize( // If we are loading, we need to initialize the weights. if (Archive::is_loading::value) { - reset = false; + // The behavior in earlier versions was to always assume the weights needed + // to be reset. + if (version == 0) + reset = false; size_t offset = 0; for (size_t i = 0; i < network.size(); ++i) diff --git a/src/mlpack/methods/ann/rnn.hpp b/src/mlpack/methods/ann/rnn.hpp index 95e457551d..3e5490e1ea 100644 --- a/src/mlpack/methods/ann/rnn.hpp +++ b/src/mlpack/methods/ann/rnn.hpp @@ -22,6 +22,7 @@ #include "init_rules/network_init.hpp" #include +#include #include #include @@ -385,6 +386,23 @@ class RNN } // namespace ann } // namespace mlpack +//! Set the serialization version of the RNN class. Multiple template arguments +//! makes this ugly... +namespace boost { +namespace serialization { + +template +struct version< + mlpack::ann::RNN> +{ + BOOST_STATIC_CONSTANT(int, value = 1); +}; + +} // namespace serialization +} // namespace boost + // Include implementation. #include "rnn_impl.hpp" diff --git a/src/mlpack/methods/ann/rnn_impl.hpp b/src/mlpack/methods/ann/rnn_impl.hpp index 1dec206daf..0b1567b4ea 100644 --- a/src/mlpack/methods/ann/rnn_impl.hpp +++ b/src/mlpack/methods/ann/rnn_impl.hpp @@ -504,7 +504,7 @@ template template void RNN::serialize( - Archive& ar, const unsigned int /* version */) + Archive& ar, const unsigned int version) { ar & BOOST_SERIALIZATION_NVP(parameter); ar & BOOST_SERIALIZATION_NVP(rho); @@ -513,6 +513,12 @@ void RNN::serialize( ar & BOOST_SERIALIZATION_NVP(outputSize); ar & BOOST_SERIALIZATION_NVP(targetSize); + // Earlier versions of the RNN code did not serialize the 'reset' variable. + if (version > 0) + { + ar & BOOST_SERIALIZATION_NVP(reset); + } + if (Archive::is_loading::value) { std::for_each(network.begin(), network.end(), @@ -525,7 +531,10 @@ void RNN::serialize( // If we are loading, we need to initialize the weights. if (Archive::is_loading::value) { - reset = false; + // Earlier versions of the RNN code assumed that the weights needed to be + // reset on load. + if (version == 0) + reset = false; size_t offset = 0; for (LayerTypes& layer : network) diff --git a/src/mlpack/methods/cf/cf.hpp b/src/mlpack/methods/cf/cf.hpp index f44517eb94..5154c60d53 100644 --- a/src/mlpack/methods/cf/cf.hpp +++ b/src/mlpack/methods/cf/cf.hpp @@ -179,6 +179,9 @@ class CFType //! Get the cleaned data matrix. const arma::sp_mat& CleanedData() const { return cleanedData; } + //! Get the normalization object. + const NormalizationType& Normalization() const { return normalization; } + /** * Generates the given number of recommendations for all users. * diff --git a/src/mlpack/methods/cf/normalization/combined_normalization.hpp b/src/mlpack/methods/cf/normalization/combined_normalization.hpp index 3bd36a8451..6836707f14 100644 --- a/src/mlpack/methods/cf/normalization/combined_normalization.hpp +++ b/src/mlpack/methods/cf/normalization/combined_normalization.hpp @@ -93,7 +93,7 @@ class CombinedNormalization /** * Return normalizations tuple. */ - TupleType Normalizations() const + const TupleType& Normalizations() const { return normalizations; } diff --git a/src/mlpack/methods/decision_stump/CMakeLists.txt b/src/mlpack/methods/decision_stump/CMakeLists.txt index e9d9c04c1a..26042b4435 100644 --- a/src/mlpack/methods/decision_stump/CMakeLists.txt +++ b/src/mlpack/methods/decision_stump/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 2.8) - # Define the files we need to compile. # Anything not in this list will not be compiled into mlpack. set(SOURCES diff --git a/src/mlpack/methods/decision_tree/CMakeLists.txt b/src/mlpack/methods/decision_tree/CMakeLists.txt index 448e4d62ee..25598133b7 100644 --- a/src/mlpack/methods/decision_tree/CMakeLists.txt +++ b/src/mlpack/methods/decision_tree/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 2.8) - # Define the files we need to compile. # Anything not in this list will not be compiled into mlpack. set(SOURCES diff --git a/src/mlpack/methods/decision_tree/decision_tree.hpp b/src/mlpack/methods/decision_tree/decision_tree.hpp index a8108cdd94..b20b33ac25 100644 --- a/src/mlpack/methods/decision_tree/decision_tree.hpp +++ b/src/mlpack/methods/decision_tree/decision_tree.hpp @@ -56,6 +56,8 @@ class DecisionTree : * minimumGainSplit too small may cause the tree to overfit, but setting them * too large may cause it to underfit. * + * Use std::move if data or labels are no longer needed to avoid copies. + * * @param data Dataset to train on. * @param datasetInfo Type information for each dimension of the dataset. * @param labels Labels for each training point. @@ -64,9 +66,9 @@ class DecisionTree : * @param minimumGainSplit Minimum gain for the node to split. */ template - DecisionTree(MatType&& data, + DecisionTree(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7); @@ -77,6 +79,8 @@ class DecisionTree : * minimumGainSplit too small may cause the tree to overfit, but setting them * too large may cause it to underfit. * + * Use std::move if data or labels are no longer needed to avoid copies. + * * @param data Dataset to train on. * @param labels Labels for each training point. * @param numClasses Number of classes in the dataset. @@ -84,8 +88,8 @@ class DecisionTree : * @param minimumGainSplit Minimum gain for the node to split. */ template - DecisionTree(MatType&& data, - LabelsType&& labels, + DecisionTree(MatType data, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7); @@ -96,6 +100,9 @@ class DecisionTree : * and minimumGainSplit too small may cause the tree to overfit, but setting * them too large may cause it to underfit. * + * Use std::move if data, labels or weights are no longer needed to avoid + * copies. + * * @param data Dataset to train on. * @param datasetInfo Type information for each dimension of the dataset. * @param labels Labels for each training point. @@ -105,11 +112,11 @@ class DecisionTree : * @param minimumGainSplit Minimum gain for the node to split. */ template - DecisionTree(MatType&& data, + DecisionTree(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7, const std::enable_if_t - DecisionTree(MatType&& data, - LabelsType&& labels, + DecisionTree(MatType data, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7, const std::enable_if_t - void Train(MatType&& data, + void Train(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7); @@ -213,6 +225,8 @@ class DecisionTree : * minimumGainSplit too small may cause the tree to overfit, but setting them * too large may cause it to underfit. * + * Use std::move if data or labels are no longer needed to avoid copies. + * * @param data Dataset to train on. * @param labels Labels for each training point. * @param numClasses Number of classes in the dataset. @@ -221,8 +235,8 @@ class DecisionTree : * @param minimumGainSplit Minimum gain for the node to split. */ template - void Train(MatType&& data, - LabelsType&& labels, + void Train(MatType data, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7); @@ -234,6 +248,9 @@ class DecisionTree : * minimumGainSplit too small may cause the tree to overfit, but setting them * too large may cause it to underfit. * + * Use std::move if data, labels or weights are no longer needed to avoid + * copies. + * * @param data Dataset to train on. * @param datasetInfo Type information for each dimension. * @param labels Labels for each training point. @@ -243,11 +260,11 @@ class DecisionTree : * @param minimumGainSplit Minimum gain for the node to split. */ template - void Train(MatType&& data, + void Train(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7, const std::enable_if_t - void Train(MatType&& data, - LabelsType&& labels, + void Train(MatType data, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize = 10, const double minimumGainSplit = 1e-7, const std::enable_if_t::DecisionTree(MatType&& data, + NoRecursion>::DecisionTree(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize, const double minimumGainSplit) @@ -39,8 +39,8 @@ DecisionTree::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); // Pass off work to the Train() method. arma::rowvec weights; // Fake weights, not used. @@ -61,8 +61,8 @@ DecisionTree::DecisionTree(MatType&& data, - LabelsType&& labels, + NoRecursion>::DecisionTree(MatType data, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize, const double minimumGainSplit) @@ -71,8 +71,8 @@ DecisionTree::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); // Pass off work to the Train() method. arma::rowvec weights; // Fake weights, not used. @@ -93,11 +93,11 @@ DecisionTree::DecisionTree(MatType&& data, + NoRecursion>::DecisionTree(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize, const double minimumGainSplit, const std::enable_if_t< @@ -110,9 +110,9 @@ DecisionTree::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); - TrueWeightsType tmpWeights(std::forward(weights)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); + TrueWeightsType tmpWeights(std::move(weights)); // Pass off work to the weighted Train() method. Train(tmpData, 0, tmpData.n_cols, datasetInfo, tmpLabels, numClasses, @@ -132,10 +132,10 @@ DecisionTree::DecisionTree(MatType&& data, - LabelsType&& labels, + NoRecursion>::DecisionTree(MatType data, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize, const double minimumGainSplit, const std::enable_if_t< @@ -148,9 +148,9 @@ DecisionTree::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); - TrueWeightsType tmpWeights(std::forward(weights)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); + TrueWeightsType tmpWeights(std::move(weights)); // Pass off work to the weighted Train() method. Train(tmpData, 0, tmpData.n_cols, tmpLabels, numClasses, tmpWeights, @@ -345,9 +345,9 @@ void DecisionTree::Train(MatType&& data, + NoRecursion>::Train(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize, const double minimumGainSplit) @@ -366,8 +366,8 @@ void DecisionTree::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); // Pass off work to the Train() method. arma::rowvec weights; // Fake weights, not used. @@ -388,8 +388,8 @@ void DecisionTree::Train(MatType&& data, - LabelsType&& labels, + NoRecursion>::Train(MatType data, + LabelsType labels, const size_t numClasses, const size_t minimumLeafSize, const double minimumGainSplit) @@ -408,8 +408,8 @@ void DecisionTree::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); // Pass off work to the Train() method. arma::rowvec weights; // Fake weights, not used. @@ -430,11 +430,11 @@ void DecisionTree::Train(MatType&& data, + NoRecursion>::Train(MatType data, const data::DatasetInfo& datasetInfo, - LabelsType&& labels, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize, const double minimumGainSplit, const std::enable_if_t::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); - TrueWeightsType tmpWeights(std::forward(weights)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); + TrueWeightsType tmpWeights(std::move(weights)); // Pass off work to the Train() method. Train(tmpData, 0, tmpData.n_cols, datasetInfo, tmpLabels, numClasses, @@ -478,10 +478,10 @@ void DecisionTree::Train(MatType&& data, - LabelsType&& labels, + NoRecursion>::Train(MatType data, + LabelsType labels, const size_t numClasses, - WeightsType&& weights, + WeightsType weights, const size_t minimumLeafSize, const double minimumGainSplit, const std::enable_if_t::type; // Copy or move data. - TrueMatType tmpData(std::forward(data)); - TrueLabelsType tmpLabels(std::forward(labels)); - TrueWeightsType tmpWeights(std::forward(weights)); + TrueMatType tmpData(std::move(data)); + TrueLabelsType tmpLabels(std::move(labels)); + TrueWeightsType tmpWeights(std::move(weights)); // Pass off work to the Train() method. Train(tmpData, 0, tmpData.n_cols, tmpLabels, numClasses, tmpWeights, diff --git a/src/mlpack/methods/decision_tree/decision_tree_main.cpp b/src/mlpack/methods/decision_tree/decision_tree_main.cpp index 0e4be96c0c..8369312d1d 100644 --- a/src/mlpack/methods/decision_tree/decision_tree_main.cpp +++ b/src/mlpack/methods/decision_tree/decision_tree_main.cpp @@ -180,13 +180,30 @@ static void mlpackMain() { arma::Row weights = std::move(CLI::GetParam>("weights")); - model->tree = DecisionTree<>(trainingSet, model->info, labels, - numClasses, weights, minLeafSize, minimumGainSplit); + if (CLI::HasParam("print_training_error")) + { + model->tree = DecisionTree<>(trainingSet, model->info, labels, + numClasses, std::move(weights), minLeafSize, minimumGainSplit); + } + else + { + model->tree = DecisionTree<>(std::move(trainingSet), model->info, + std::move(labels), numClasses, std::move(weights), minLeafSize, + minimumGainSplit); + } } else { - model->tree = DecisionTree<>(trainingSet, model->info, labels, - numClasses, minLeafSize, minimumGainSplit); + if (CLI::HasParam("print_training_error")) + { + model->tree = DecisionTree<>(trainingSet, model->info, labels, + numClasses, minLeafSize, minimumGainSplit); + } + else + { + model->tree = DecisionTree<>(std::move(trainingSet), model->info, + std::move(labels), numClasses, minLeafSize, minimumGainSplit); + } } // Do we need to print training error? diff --git a/src/mlpack/methods/mean_shift/mean_shift_impl.hpp b/src/mlpack/methods/mean_shift/mean_shift_impl.hpp index dabe2980a6..f7e6a1beb2 100644 --- a/src/mlpack/methods/mean_shift/mean_shift_impl.hpp +++ b/src/mlpack/methods/mean_shift/mean_shift_impl.hpp @@ -68,7 +68,7 @@ EstimateRadius(const MatType& data, double ratio) arma::rowvec maxDistances = max(distances); // Calculate and return the radius. - return sum(maxDistances) / (double) data.n_cols; + return arma::sum(maxDistances) / (double) data.n_cols; } // Class to compare two vectors. @@ -218,14 +218,14 @@ inline void MeanShift::Cluster( // Initial centroid is the seed itself. allCentroids.col(i) = pSeeds->unsafe_col(i); for (size_t completedIterations = 0; completedIterations < maxIterations - || forceConvergence; completedIterations++) + || forceConvergence; completedIterations++) { // Store new centroid in this. arma::colvec newCentroid = arma::zeros(pSeeds->n_rows); rangeSearcher.Search(allCentroids.unsafe_col(i), validRadius, neighbors, distances); - if (neighbors[0].size() <= 1) + if (neighbors[0].size() == 0) // There are no points in the cluster. break; // Calculate new centroid. @@ -265,8 +265,9 @@ inline void MeanShift::Cluster( // forcing convergence, take 1 random centroid calculated. if (centroids.empty()) { - Log::Warn << "No clusters converge, setting 1 random centroid calculated. " - "Try a larger max_iterations or pass force_convergence flag." << std::endl; + Log::Warn << "No clusters converged; setting 1 random centroid calculated. " + << "Try increasing the maximum number of iterations or setting the " + << "option to force convergence." << std::endl; if (maxIterations == 0) { diff --git a/src/mlpack/methods/neighbor_search/neighbor_search.hpp b/src/mlpack/methods/neighbor_search/neighbor_search.hpp index 4d33a225ff..0086c16ffc 100644 --- a/src/mlpack/methods/neighbor_search/neighbor_search.hpp +++ b/src/mlpack/methods/neighbor_search/neighbor_search.hpp @@ -187,42 +187,25 @@ class NeighborSearch /** * Set the reference set to a new reference set, and build a tree if - * necessary. This method is called 'Train()' in order to match the rest of - * the mlpack abstractions, even though calling this "training" is maybe a bit - * of a stretch. + * necessary. The dataset is copied by default, but the copy can be avoided by + * transferring the ownership of the dataset using std::move(). This method + * is called 'Train()' in order to match the rest of the mlpack abstractions, + * even though calling this "training" is maybe a bit of a stretch. * * @param referenceSet New set of reference data. */ - void Train(const MatType& referenceSet); + void Train(MatType referenceSet); /** - * Set the reference set to a new reference set, taking ownership of the set, - * and build a tree if necessary. This method is called 'Train()' in order to - * match the rest of the mlpack abstractions, even though calling this - * "training" is maybe a bit of a stretch. - * - * @param referenceSet New set of reference data. - */ - void Train(MatType&& referenceSet); - - /** - * Set the reference tree as a copy of the given reference tree. - * - * This method will copy the given tree. You can avoid this copy by using the - * Train() method that takes a rvalue reference to the tree. + * Set the reference tree to a new reference tree. The tree is copied by + * default, but the copy can be avoided by using std::move() to transfer the + * ownership of the tree. This method is called 'Train()' in order to match + * the rest of the mlpack abstractions, even though calling this "training" is + * maybe a bit of a stretch. * * @param referenceTree Pre-built tree for reference points. */ - void Train(const Tree& referenceTree); - - /** - * Set the reference tree to a new reference tree. - * - * This method will take ownership of the given tree. - * - * @param referenceTree Pre-built tree for reference points. - */ - void Train(Tree&& referenceTree); + void Train(Tree referenceTree); /** * For each point in the query set, compute the nearest neighbors and store @@ -359,11 +342,6 @@ class NeighborSearch //! Reference dataset. In some situations we may be the owner of this. const MatType* referenceSet; - //! If true, this object created the trees and is responsible for them. - bool treeOwner; - //! If true, we own the reference set. - bool setOwner; - //! Indicates the neighbor search mode. NeighborSearchMode searchMode; //! Indicates the relative error to be considered in approximate search. diff --git a/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp b/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp index 4eaf4550ea..d260171b62 100644 --- a/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp +++ b/src/mlpack/methods/neighbor_search/neighbor_search_impl.hpp @@ -63,8 +63,6 @@ SingleTreeTraversalType>::NeighborSearch(MatType referenceSetIn, BuildTree(std::move(referenceSetIn), oldFromNewReferences)), referenceSet(mode == NAIVE_MODE ? new MatType(std::move(referenceSetIn)) : &referenceTree->Dataset()), - treeOwner(mode != NAIVE_MODE), - setOwner(mode == NAIVE_MODE), searchMode(mode), epsilon(epsilon), metric(metric), @@ -92,8 +90,6 @@ SingleTreeTraversalType>::NeighborSearch(Tree referenceTree, const MetricType metric) : referenceTree(new Tree(std::move(referenceTree))), referenceSet(&this->referenceTree->Dataset()), - treeOwner(true), - setOwner(false), searchMode(mode), epsilon(epsilon), metric(metric), @@ -120,8 +116,6 @@ SingleTreeTraversalType>::NeighborSearch(const NeighborSearchMode mode, const MetricType metric) : referenceTree(NULL), referenceSet(new MatType()), // Empty matrix. - treeOwner(false), - setOwner(true), searchMode(mode), epsilon(epsilon), metric(metric), @@ -136,7 +130,7 @@ SingleTreeTraversalType>::NeighborSearch(const NeighborSearchMode mode, if (mode != NAIVE_MODE) { referenceTree = BuildTree(*referenceSet, oldFromNewReferences); - treeOwner = true; + referenceSet = &referenceTree->Dataset(); } } @@ -155,8 +149,6 @@ SingleTreeTraversalType>::NeighborSearch(const NeighborSearch& other) : referenceTree(other.referenceTree ? new Tree(*other.referenceTree) : NULL), referenceSet(other.referenceTree ? &referenceTree->Dataset() : new MatType(*other.referenceSet)), - treeOwner(other.referenceTree), - setOwner(!other.referenceTree), searchMode(other.searchMode), epsilon(other.epsilon), metric(other.metric), @@ -181,8 +173,6 @@ SingleTreeTraversalType>::NeighborSearch(NeighborSearch&& other) : oldFromNewReferences(std::move(other.oldFromNewReferences)), referenceTree(other.referenceTree), referenceSet(other.referenceSet), - treeOwner(other.treeOwner), - setOwner(other.setOwner), searchMode(other.searchMode), epsilon(other.epsilon), metric(std::move(other.metric)), @@ -194,8 +184,7 @@ SingleTreeTraversalType>::NeighborSearch(NeighborSearch&& other) : other.referenceSet = new MatType(); other.referenceTree = BuildTree(*other.referenceSet, other.oldFromNewReferences); - other.treeOwner = true; - other.setOwner = true; + other.referenceSet = &other.referenceTree->Dataset(); other.searchMode = DUAL_TREE_MODE, other.epsilon = 0.0; other.baseCases = 0; @@ -229,17 +218,15 @@ NeighborSearchDataset() : new MatType(*other.referenceSet); - treeOwner = (other.referenceTree != NULL); - setOwner = (other.referenceTree == NULL); searchMode = other.searchMode; epsilon = other.epsilon; metric = other.metric; @@ -274,16 +261,14 @@ NeighborSearch(*other.referenceSet, other.oldFromNewReferences); - other.treeOwner = true; - other.setOwner = true; + other.referenceSet = &other.referenceTree->Dataset(); other.searchMode = DUAL_TREE_MODE, other.epsilon = 0.0; other.baseCases = 0; @@ -316,9 +299,9 @@ template::~NeighborSearch() { - if (treeOwner && referenceTree) + if (referenceTree) delete referenceTree; - if (setOwner && referenceSet) + else delete referenceSet; } @@ -331,72 +314,30 @@ template class DualTreeTraversalType, template class SingleTreeTraversalType> void NeighborSearch::Train( - const MatType& referenceSet) +DualTreeTraversalType, SingleTreeTraversalType>::Train(MatType referenceSetIn) { // Clean up the old tree, if we built one. - if (treeOwner && referenceTree) + if (referenceTree) { oldFromNewReferences.clear(); delete referenceTree; - } - - // Delete the old reference set, if we owned it. - if (setOwner && this->referenceSet) - delete this->referenceSet; - - // We may need to rebuild the tree. - if (searchMode != NAIVE_MODE) - { - referenceTree = BuildTree(referenceSet, oldFromNewReferences); - treeOwner = true; - this->referenceSet = &referenceTree->Dataset(); + referenceTree = NULL; } else { - treeOwner = false; - this->referenceSet = &referenceSet; - } - - setOwner = false; // We don't own the set in either case. -} - -template class TreeType, - template class DualTreeTraversalType, - template class SingleTreeTraversalType> -void NeighborSearch::Train(MatType&& referenceSetIn) -{ - // Clean up the old tree, if we built one. - if (treeOwner && referenceTree) - { - oldFromNewReferences.clear(); - delete referenceTree; - } - - // Delete the old reference set, if we owned it. - if (setOwner && referenceSet) delete referenceSet; + } // We may need to rebuild the tree. if (searchMode != NAIVE_MODE) { referenceTree = BuildTree(std::move(referenceSetIn), oldFromNewReferences); - treeOwner = true; referenceSet = &referenceTree->Dataset(); - setOwner = false; } else { - treeOwner = false; referenceSet = new MatType(std::move(referenceSetIn)); - setOwner = true; } } @@ -409,56 +350,24 @@ template class DualTreeTraversalType, template class SingleTreeTraversalType> void NeighborSearch::Train( - const Tree& referenceTree) +DualTreeTraversalType, SingleTreeTraversalType>::Train(Tree referenceTree) { if (searchMode == NAIVE_MODE) throw std::invalid_argument("cannot train on given reference tree when " "naive search (without trees) is desired"); - if (treeOwner && this->referenceTree) + if (this->referenceTree) { oldFromNewReferences.clear(); delete this->referenceTree; } - - if (setOwner && referenceSet) - delete this->referenceSet; - - this->referenceTree = new Tree(referenceTree); - this->referenceSet = &this->referenceTree->Dataset(); - treeOwner = true; - setOwner = false; -} - -template class TreeType, - template class DualTreeTraversalType, - template class SingleTreeTraversalType> -void NeighborSearch::Train(Tree&& referenceTree) -{ - if (searchMode == NAIVE_MODE) - throw std::invalid_argument("cannot train on given reference tree when " - "naive search (without trees) is desired"); - - if (treeOwner && this->referenceTree) + else { - oldFromNewReferences.clear(); - delete this->referenceTree; - } - - if (setOwner && referenceSet) delete this->referenceSet; + } this->referenceTree = new Tree(std::move(referenceTree)); this->referenceSet = &this->referenceTree->Dataset(); - treeOwner = true; - setOwner = false; } /** @@ -1046,12 +955,9 @@ DualTreeTraversalType, SingleTreeTraversalType>::serialize( if (searchMode == NAIVE_MODE) { // Delete the current reference set, if necessary and if we are loading. - if (Archive::is_loading::value) + if (Archive::is_loading::value && referenceSet) { - if (setOwner && referenceSet) - delete referenceSet; - - setOwner = true; // We will own the reference set when we load it. + delete referenceSet; } ar & BOOST_SERIALIZATION_NVP(referenceSet); @@ -1060,24 +966,19 @@ DualTreeTraversalType, SingleTreeTraversalType>::serialize( // If we are loading, set the tree to NULL and clean up memory if necessary. if (Archive::is_loading::value) { - if (treeOwner && referenceTree) + if (referenceTree) delete referenceTree; referenceTree = NULL; oldFromNewReferences.clear(); - treeOwner = false; } } else { // Delete the current reference tree, if necessary and if we are loading. - if (Archive::is_loading::value) + if (Archive::is_loading::value && referenceTree) { - if (treeOwner && referenceTree) - delete referenceTree; - - // After we load the tree, we will own it. - treeOwner = true; + delete referenceTree; } ar & BOOST_SERIALIZATION_NVP(referenceTree); @@ -1087,12 +988,8 @@ DualTreeTraversalType, SingleTreeTraversalType>::serialize( // necessary. if (Archive::is_loading::value) { - if (setOwner && referenceSet) - delete referenceSet; - referenceSet = &referenceTree->Dataset(); metric = referenceTree->Metric(); // Get the metric from the tree. - setOwner = false; } } diff --git a/src/mlpack/methods/perceptron/CMakeLists.txt b/src/mlpack/methods/perceptron/CMakeLists.txt index f0b4afc596..8e6763464d 100644 --- a/src/mlpack/methods/perceptron/CMakeLists.txt +++ b/src/mlpack/methods/perceptron/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 2.8) - # Define the files we need to compile. # Anything not in this list will not be compiled into mlpack. set(SOURCES diff --git a/src/mlpack/methods/random_forest/CMakeLists.txt b/src/mlpack/methods/random_forest/CMakeLists.txt index 3ac70de8a8..bfc6121ad6 100644 --- a/src/mlpack/methods/random_forest/CMakeLists.txt +++ b/src/mlpack/methods/random_forest/CMakeLists.txt @@ -1,5 +1,3 @@ -cmake_minimum_required(VERSION 2.8) - # Define the files we need to compile. # Anything not in this list will not be compiled into mlpack. set(SOURCES diff --git a/src/mlpack/tests/data/thyroid_test.csv b/src/mlpack/tests/data/thyroid_test.csv index be1aeda632..a8ca35c43a 100644 --- a/src/mlpack/tests/data/thyroid_test.csv +++ b/src/mlpack/tests/data/thyroid_test.csv @@ -1,3428 +1,3428 @@ -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.028,0.111,0.131,0.085,0,1,0 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.084,0.078,0.107,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.239,0.1,0.239,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.087,0.088,0.099,0,0,1 -0.22,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.134,0.135,0.099,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.123,0.113,0.109,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.036,0.133,0.144,0.093,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.02,0.08,0.096,0.08316,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.014,0.113,0.096,0.11746,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.011,0.104,0.104,0.099,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0.006,0.023,0.087,0.026,1,0,0 -0.65,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,3e-05,0.023,0.154,0.09,0.17,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.022,0.115,0.093,0.124,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00419,0.011,0.078,0.097,0.081,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.159,0.116,0.136,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.12,0.1,0.12,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.225,0.083,0.273,0,0,1 -0.61,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0007,0.022,0.118,0.096,0.12266,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.115,0.083,0.138,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.089,0.074,0.121,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.103,0.092,0.112,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.028,0.122,0.112,0.109,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.018,0.111,0.107,0.104,0,1,0 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.016,0.123,0.081,0.152,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.019,0.151,0.097,0.155,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.175,0.103,0.169,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.017,0.074,0.101,0.074,0,1,0 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.012,0.102,0.095,0.10669,0,1,0 -0.61,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0059,0.02,0.082,0.096,0.08523,0,0,1 -0.42,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.125,0.112,0.112,0,0,1 -0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00859,0.0201,0.124,0.098,0.126,0,0,1 -0.64,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.065,0.082,0.08,0,0,1 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.16,0.082,0.195,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.019,0.118,0.102,0.116,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.014,0.109,0.073,0.148,0,0,1 -0.75,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0052,0.0201,0.096,0.089,0.108,0,0,1 -0.64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0201,0.1,0.084,0.119,0,0,1 -0.23,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.136,0.067,0.203,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.14,0.137,0.102,0,0,1 -0.53,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0201,0.047,0.093,0.05,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.016,0.133,0.102,0.131,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.017,0.171,0.146,0.117,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.141,0.098,0.144,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.025,0.161,0.126,0.128,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.018,0.101,0.092,0.11,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.026,0.148,0.129,0.115,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.019,0.063,0.058,0.107,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.0208,0.096,0.102,0.096,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.026,0.105,0.096,0.10914,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.007,0.069,0.096,0.07172,0,0,1 -0.7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.071,0.08,0.089,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.119,0.089,0.134,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.015,0.116,0.088,0.132,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.136,0.114,0.119,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.019,0.065,0.094,0.07,0,1,0 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.015,0.147,0.06,0.247,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.012,0.017,0.123,0.103,0.12,0,1,0 -0.63,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0032,0.0201,0.16,0.098,0.162,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.0201,0.206,0.081,0.254,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.164,0.136,0.121,0,0,1 -0.4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.152,0.15,0.102,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.0201,0.101,0.102,0.099,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.104,0.103,0.101,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.135,0.101,0.135,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.121,0.108,0.112,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0208,0.107,0.095,0.113,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.022,0.137,0.102,0.135,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.024,0.15,0.096,0.155,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0201,0.163,0.156,0.104,0,0,1 -0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.029,0.015,0.061,0.096,0.064,1,0,0 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.056,0.076,0.073,0,0,1 -0.27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11,0.11,0.1,0,0,1 -0.75,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.032,0.015,0.096,0.098,0.098,0,0,1 -0.78,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0012,0.012,0.082,0.101,0.081,0,0,1 -0.69,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00208,0.025,0.131,0.103,0.126,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.116,0.108,0.107,0,0,1 -0.63,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.017,0.093,0.064,0.146,0,0,1 -0.62,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.069,0.087,0.079,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.016,0.147,0.089,0.165,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.102,0.093,0.11,0,0,1 -0.57,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00057,0.027,0.189,0.135,0.14,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.029,0.019,0.058,0.103,0.056,1,0,0 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.023,0.066,0.107,0.062,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.02,0.123,0.096,0.12785,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.028,0.122,0.109,0.112,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.0201,0.127,0.104,0.121,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.0201,0.12,0.097,0.123,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.023,0.119,0.09,0.132,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.006,0.086,0.087,0.1,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.012,0.076,0.074,0.102,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.114,0.003,0.024,0.061,0.039,1,0,0 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.015,0.09,0.079,0.115,0,0,1 -0.38,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.016,0.131,0.096,0.13617,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.096,0.095,0.1,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.0469,0.141,0.09,0.156,0,0,1 -0.65,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00208,0.017,0.164,0.109,0.151,0,0,1 -0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.014,0.131,0.109,0.121,0,0,1 -0.42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00909,0.0201,0.12,0.107,0.112,0,0,1 -0.42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.0201,0.077,0.097,0.08,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.016,0.089,0.082,0.108,0,0,1 -0.26,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00041,0.0201,0.177,0.149,0.119,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.015,0.077,0.115,0.067,0,0,1 -0.26,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0012,0.0201,0.131,0.153,0.086,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.011,0.113,0.113,0.1,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.0201,0.115,0.102,0.113,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.048,0.055,0.087,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.093,0.091,0.102,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.032,0.11329,0.096,0.11776,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.071,0.101,0.07,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.099,0.101,0.098,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.027,0.132,0.139,0.096,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.071,0.096,0.0738,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.004,0.083,0.054,0.154,0,0,1 -0.64,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00091,0.011,0.17,0.096,0.176,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.025,0.16,0.138,0.116,0,0,1 -0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.098,0.112,0.087,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.106,0.115,0.093,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.018,0.107,0.088,0.121,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.015,0.092,0.102,0.09,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.014,0.105,0.101,0.105,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.016,0.139,0.093,0.15,0,0,1 -0.79,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.007,0.124,0.102,0.122,0,0,1 -0.43,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00052,0.0005,0.046,0.052,0.086,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.081,0.084,0.097,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.017,0.138,0.102,0.136,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.009,0.102,0.097,0.106,0,1,0 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.004,0.082,0.058,0.14,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.039,0.085,0.046,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.094,0.09,0.105,0,0,1 -0.5219,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.02,0.113,0.108,0.104,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.123,0.101,0.121,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.159,0.18,0.088,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.16,0.178,0.09,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00072,0.0201,0.131,0.091,0.143,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.007,0.084,0.07,0.121,0,1,0 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0.003,0.005,0.116,0.004,1,0,0 -0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00055,0.017,0.11,0.107,0.102,0,0,1 -0.51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.104,0.104,0.098,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.0201,0.074,0.099,0.075,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00103,0.02,0.098,0.095,0.103,0,0,1 -0.82,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.009,0.111,0.096,0.11538,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.015,0.103,0.11,0.093,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0201,0.114,0.131,0.087,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.095,0.095,0.1,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.083,0.076,0.108,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.096,0.101,0.095,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.0005,0.091,0.097,0.093,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.01,0.128,0.107,0.119,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.005,0.077,0.11,0.07,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.082,0.095,0.086,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.008,0.099,0.108,0.092,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.131,0.094,0.138,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.098,0.076,0.13,0,0,1 -0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.123,0.102,0.12,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.125,0.09,0.138,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00829,0.019,0.095,0.116,0.081,0,1,0 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.014,0.12,0.085,0.141,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.0201,0.098,0.063,0.156,0,0,1 -0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.014,0.101,0.088,0.115,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.053,0.278,0.078,0.356,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.087,0.084,0.103,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,9e-05,0.049,0.221,0.093,0.237,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.123,0.089,0.139,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.107,0.093,0.115,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.145,0.104,0.137,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.017,0.116,0.09,0.128,0,1,0 -0.85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.197,0.0096,0.03121,0.102,0.03042,1,0,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.096,0.091,0.105,0,0,1 -0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.123,0.104,0.116,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.058,0.084,0.068,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197,0.0096,0.014,0.062,0.023,1,0,0 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.112,0.114,0.098,0,0,1 -0.49,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.0201,0.09,0.092,0.098,0,0,1 -0.22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0201,0.159,0.104,0.153,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00076,0.008,0.096,0.086,0.111,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0.004,0.0029,0.12,0.0024,1,0,0 -0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.0201,0.147,0.114,0.129,0,0,1 -0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.008,0.103,0.089,0.116,0,0,1 -0.7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.01,0.077,0.072,0.107,0,0,1 -0.75,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.091,0.079,0.114,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.1,0.086,0.117,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.105,0.074,0.143,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.093,0.077,0.121,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.113,0.116,0.096,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.082,0.089,0.091,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.142,0.096,0.149,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.097,0.085,0.115,0,0,1 -0.56,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.098,0.086,0.115,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.097,0.1,0.096,0,0,1 -0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.106,0.113,0.094,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.008,0.061,0.098,0.062,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.02,0.13,0.102,0.128,0,0,1 -0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0115,0.01,0.128,0.096,0.133,0,1,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00101,0.025,0.125,0.102,0.122,0,0,1 -0.75,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0201,0.102,0.116,0.087,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.028,0.105,0.096,0.10914,0,0,1 -0.57,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.105,0.094,0.111,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.079,0.074,0.107,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.037,0.046,0.092,0.051,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.091,0.088,0.103,0,0,1 -0.5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0055,0.016,0.044,0.108,0.04,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.016,0.098,0.089,0.11,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.081,0.085,0.095,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.027,0.163,0.104,0.156,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.119,0.09,0.132,0,0,1 -0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0044,0.024,0.115,0.114,0.101,0,0,1 -0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.12,0.098,0.122,0,0,1 -0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0201,0.139,0.104,0.134,0,0,1 -0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.1,0.095,0.106,0,0,1 -0.77,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0019,0.016,0.114,0.099,0.114,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.098,0.104,0.094,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.11329,0.096,0.11776,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2e-05,0.0201,0.127,0.095,0.134,0,0,1 -0.56,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0.00047,0.0201,0.125,0.104,0.119,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.038,0.146,0.142,0.103,0,0,1 -0.18,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00074,0.023,0.143,0.115,0.124,0,0,1 -0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0037,0.028,0.19,0.14,0.136,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.116,0.098,0.118,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.138,0.084,0.165,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.108,0.08,0.134,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.119,0.111,0.107,0,0,1 -0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0201,0.118,0.111,0.106,0,0,1 -0.35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0011,0.028,0.127,0.158,0.08,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.079,0.096,0.08212,0,0,1 -0.5,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0201,0.157,0.12,0.131,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.015,0.096,0.084,0.114,0,0,1 -0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.118,0.102,0.116,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.019,0.162,0.107,0.151,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.1,0.093,0.107,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.126,0.113,0.112,0,0,1 -0.35,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.077,0.096,0.08004,0,0,1 -0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.012,0.093,0.125,0.074,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0.003,0.00839,0.101,0.00829,1,0,0 -0.16,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.019,0.106,0.104,0.104,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.143,0.096,0.14864,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.025,0.114,0.116,0.097,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.101,0.113,0.09,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.42,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00889,0.013,0.075,0.074,0.102,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.014,0.116,0.095,0.123,0,0,1 -0.6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.069,0.132,0.096,0.13721,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.082,0.101,0.082,0,0,1 -0.36,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.03,0.071,0.085,0.084,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.013,0.108,0.096,0.11226,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.133,0.083,0.161,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.084,0.104,0.08,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.138,0.121,0.114,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.091,0.08,0.114,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.02,0.112,0.097,0.115,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.157,0.189,0.083,0,0,1 -0.2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.02,0.092,0.103,0.089,0,0,1 -0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.007,0.101,0.084,0.12,0,0,1 -0.66,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.00469,0.013,0.145,0.096,0.15072,0,0,1 -0.28,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.003,0.0208,0.136,0.096,0.14137,0,0,1 -0.44,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.172,0.099,0.174,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.1,0.08,0.123,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001,0.019,0.13,0.121,0.107,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.009,0.125,0.104,0.119,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.106,0.095,0.111,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.012,0.097,0.097,0.1,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.0208,0.113,0.101,0.112,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.046,0.088,0.052,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.0201,0.18,0.093,0.194,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.0201,0.166,0.128,0.13,0,0,1 -0.56,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.003,0.015,0.103,0.08,0.128,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.104,0.104,0.098,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.025,0.111,0.125,0.088,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.133,0.089,0.149,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00083,0.029,0.123,0.095,0.13,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.022,0.162,0.104,0.156,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.081,0.076,0.106,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.025,0.081,0.073,0.112,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.01,0.111,0.085,0.131,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.029,0.104,0.095,0.11,0,0,1 -0.85,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00055,0.0201,0.024,0.111,0.022,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.065,0.077,0.085,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.5,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.067,0.007,0.08,0.107,0.074,0,0,1 -0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.1,0.091,0.11,0,0,1 -0.29,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0.02,0.017,0.079,0.116,0.068,0,1,0 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.0201,0.093,0.101,0.093,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.115,0.085,0.136,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.135,0.069,0.196,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.014,0.127,0.111,0.114,0,1,0 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.116,0.101,0.115,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.138,0.089,0.154,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.055,0.166,0.121,0.138,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0016,0.017,0.102,0.089,0.115,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.123,0.093,0.133,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.017,0.123,0.095,0.13,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.075,0.078,0.096,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.031,0.119,0.08,0.149,0,0,1 -0.41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.0031,0.012,0.144,0.103,0.139,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.135,0.094,0.145,0,0,1 -0.43,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.029,0.128,0.087,0.148,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.147,0.097,0.152,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.073,0.077,0.095,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.182,0.15,0.121,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.0201,0.103,0.087,0.118,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.139,0.096,0.14449,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0201,0.107,0.1,0.108,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.006,0.022,0.111,0.02,1,0,0 -0.33,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0.0012,0.022,0.117,0.094,0.126,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.062,0.11329,0.096,0.11776,0,0,1 -0.58,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.022,0.078,0.097,0.079,0,0,1 -0.43,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0201,0.117,0.077,0.151,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.101,0.108,0.094,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.118,0.088,0.133,0,0,1 -0.79,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.003,0.092,0.044,0.206,0,0,1 -0.72,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.01,0.053,0.061,0.087,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.033,0.157,0.128,0.123,0,0,1 -0.35,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.115,0.096,0.121,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0052,0.018,0.107,0.102,0.104,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.026,0.119,0.104,0.114,0,0,1 -0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.006,0.124,0.096,0.129,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.032,0.136,0.091,0.149,0,0,1 -0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.024,0.155,0.113,0.137,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.007,0.076,0.075,0.102,0,0,1 -0.39,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0071,0.017,0.106,0.094,0.114,0,1,0 -0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.027,0.108,0.072,0.149,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.098,0.096,0.10187,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.025,0.06,0.091,0.065,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.094,0.077,0.123,0,0,1 -0.86,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.012,0.128,0.094,0.137,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0018,0.01,0.112,0.098,0.113,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.086,0.109,0.079,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00038,0.034,0.144,0.126,0.114,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.08,0.086,0.093,0,0,1 -0.41,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,6e-05,0.0201,0.159,0.094,0.169,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.147,0.116,0.127,0,0,1 -0.7,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0.0095,0.005,0.099,0.058,0.169,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.017,0.152,0.113,0.135,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.028,0.148,0.149,0.099,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.142,0.104,0.135,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.029,0.136,0.12,0.114,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.015,0.084,0.102,0.082,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.159,0.104,0.153,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.024,0.058,0.098,0.059,1,0,0 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00075,0.0208,0.129,0.104,0.122,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00085,0.0201,0.196,0.173,0.113,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.102,0.093,0.11,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.123,0.102,0.12,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.026,0.108,0.096,0.113,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0051,0.024,0.105,0.131,0.08,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0201,0.093,0.099,0.093,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.022,0.116,0.103,0.112,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.02,0.108,0.09,0.119,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.026,0.144,0.143,0.101,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.126,0.115,0.11,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.115,0.121,0.095,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.016,0.095,0.085,0.112,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.108,0.086,0.125,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.016,0.104,0.107,0.097,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.12,0.116,0.102,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.011,0.104,0.113,0.092,0,0,1 -0.21,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.014,0.082,0.099,0.083,0,1,0 -0.69,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.136,0.085,0.159,0,0,1 -0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00066,0.0201,0.131,0.104,0.124,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.0201,0.098,0.075,0.13,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.044,0.192,0.091,0.211,0,0,1 -0.57,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.024,0.112,0.096,0.11642,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00081,0.0201,0.126,0.096,0.131,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.028,0.112,0.112,0.099,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.014,0.089,0.113,0.079,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.0201,0.11,0.103,0.106,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.011,0.118,0.075,0.157,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.011,0.095,0.079,0.12,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.055,0.214,0.091,0.236,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.156,0.095,0.164,0,0,1 -0.68,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.125,0.104,0.119,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.06,0.122,0.05,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.125,0.102,0.123,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.0201,0.091,0.093,0.098,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.019,0.133,0.1,0.133,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.026,0.091,0.067,0.135,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.019,0.096,0.094,0.102,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.119,0.094,0.127,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.026,0.09663,0.095,0.10107,0,1,0 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.121,0.096,0.12577,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.085,0.1,0.085,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.174,0.098,0.177,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.102,0.094,0.109,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.029,0.122,0.111,0.11,0,0,1 -0.6,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0048,0.028,0.1,0.104,0.094,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.017,0.087,0.087,0.1,0,1,0 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.023,0.093,0.101,0.092,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.113,0.112,0.101,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.161,0.103,0.157,0,0,1 -0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.131,0.099,0.132,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.033,0.119,0.131,0.09,0,0,1 -0.3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00061,0.015,0.082,0.119,0.069,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.016,0.118,0.104,0.111,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.104,0.092,0.113,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.107,0.103,0.104,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.025,0.134,0.109,0.123,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00054,0.023,0.099,0.108,0.092,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.099,0.115,0.086,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.013,0.164,0.1,0.164,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.018,0.117,0.1,0.117,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.113,0.083,0.136,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.017,0.074,0.084,0.088,0,1,0 -0.27,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.001,0.0201,0.138,0.091,0.152,0,0,1 -0.73,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.024,0.192,0.119,0.162,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00101,0.018,0.095,0.096,0.09875,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.117,0.109,0.107,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.151,0.096,0.157,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.102,0.11,0.093,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0.002,0.014,0.116,0.012,1,0,0 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.138,0.124,0.111,0,0,1 -0.79,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.01,0.0201,0.125,0.099,0.127,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.107,0.094,0.114,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0029,0.0201,0.11,0.104,0.103,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.106,0.087,0.122,0,0,1 -0.19,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0085,0.034,0.134,0.155,0.086,0,1,0 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0013,0.016,0.087,0.096,0.09043,0,0,1 -0.46,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.103,0.087,0.118,0,0,1 -0.56,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0027,0.0201,0.125,0.104,0.119,0,0,1 -0.4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.15,0.124,0.121,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0072,0.017,0.074,0.088,0.084,0,1,0 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.088,0.103,0.085,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.001,0.0201,0.101,0.083,0.121,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.112,0.101,0.111,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.099,0.099,0.099,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.03,0.096,0.081,0.119,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0017,0.039,0.12,0.116,0.102,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.017,0.115,0.087,0.133,0,0,1 -0.44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.189,0.1,0.19,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.118,0.096,0.12266,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.0208,0.096,0.086,0.112,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.124,0.136,0.091,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.127,0.084,0.151,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.098,0.086,0.115,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.0201,0.117,0.089,0.131,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.145,0.098,0.147,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0201,0.074,0.063,0.116,0,0,1 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.022,0.103,0.086,0.12,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.017,0.117,0.104,0.113,0,1,0 -0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0046,0.024,0.129,0.102,0.127,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.014,0.082,0.085,0.097,0,1,0 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.031,0.124,0.11,0.113,0,0,1 -0.53,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.078,0.085,0.091,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.015,0.123,0.096,0.12785,0,0,1 -0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.137,0.08,0.172,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.027,0.116,0.087,0.134,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.07,0.066,0.106,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.126,0.097,0.129,0,0,1 -0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.0201,0.089,0.096,0.092,0,0,1 -0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.126,0.116,0.109,0,0,1 -0.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.027,0.099,0.1,0.099,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00013,0.03,0.122,0.095,0.128,0,0,1 -0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.111,0.088,0.127,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.136,0.15,0.09,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.17,0.184,0.092,0,0,1 -0.19,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.0032,0.022,0.118,0.099,0.119,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.141,0.104,0.133,0,0,1 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0044,0.0201,0.058,0.058,0.1,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.018,0.12,0.096,0.124,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.089,0.074,0.119,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.01,0.067,0.096,0.07,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.017,0.148,0.104,0.141,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.143,0.092,0.155,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0029,0.0201,0.133,0.097,0.137,0,0,1 -0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.1,0.092,0.108,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.004,0.0201,0.138,0.15,0.092,0,0,1 -0.36,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.113,0.101,0.113,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.136,0.098,0.138,0,0,1 -0.59,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0076,0.0201,0.106,0.107,0.1,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.165,0.09,0.182,0,0,1 -0.5,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00032,0.015,0.138,0.104,0.131,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0208,0.14,0.114,0.123,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.025,0.175,0.123,0.143,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.009,0.062,0.09,0.069,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.177,0.096,0.18399,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.086,0.068,0.126,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.111,0.082,0.137,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.024,0.118,0.101,0.117,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.094,0.079,0.119,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.166,0.135,0.123,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.093,0.069,0.135,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.109,0.104,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.163,0.126,0.13,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.054,0.085,0.063,0,0,1 -0.04,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6e-05,0.0201,0.103,0.086,0.12,0,0,1 -0.73,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00023,0.0201,0.095,0.116,0.081,0,0,1 -0.49,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0201,0.114,0.085,0.135,0,0,1 -0.63,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.085,0.075,0.113,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.104,0.096,0.108,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.017,0.139,0.135,0.103,0,1,0 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.085,0.082,0.104,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.105,0.096,0.109,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.077,0.085,0.091,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.089,0.074,0.121,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.119,0.098,0.121,0,0,1 -0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.02,0.0096,0.042,0.098,0.043,1,0,0 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0201,0.141,0.173,0.081,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.017,0.066,0.079,0.084,0,0,1 -0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0082,0.016,0.096,0.095,0.10041,0,1,0 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.013,0.117,0.116,0.101,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.019,0.158,0.107,0.148,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.118,0.128,0.093,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.11329,0.096,0.123,0,0,1 -0.38,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.129,0.116,0.11,0,0,1 -0.38,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.099,0.096,0.10291,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0208,0.082,0.086,0.095,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.06,0.082,0.072,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0016,0.0201,0.117,0.107,0.109,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.027,0.111,0.088,0.127,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.086,0.071,0.12,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.019,0.11329,0.116,0.105,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.0201,0.155,0.093,0.166,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.068,0.169,0.084,0.201,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.077,0.096,0.08004,0,0,1 -0.23,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.0201,0.167,0.111,0.15,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0014,0.028,0.087,0.114,0.087,0,0,1 -0.72,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.0201,0.102,0.096,0.102,0,0,1 -0.66,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.094,0.078,0.099,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.087,0.094,0.093,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.022,0.097,0.1,0.097,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.093,0.064,0.146,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.077,0.099,0.078,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.02,0.109,0.093,0.117,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106,0.004,0.01,0.111,0.0087,1,0,0 -0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.204,0.134,0.152,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.026,0.113,0.113,0.1,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.017,0.091,0.096,0.095,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.016,0.086,0.094,0.092,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.03,0.136,0.1,0.135,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.024,0.107,0.098,0.11,0,0,1 -0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0201,0.1,0.104,0.096,0,0,1 -0.34,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.105,0.107,0.099,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.101,0.104,0.096,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.105,0.093,0.113,0,0,1 -0.54,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.088,0.087,0.1,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.023,0.19,0.107,0.177,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.0201,0.085,0.076,0.111,0,0,1 -0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.087,0.084,0.103,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.139,0.124,0.112,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.106,0.094,0.113,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.0201,0.14,0.104,0.132,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0201,0.115,0.087,0.131,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.02,0.104,0.091,0.113,0,0,1 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.004,0.11329,0.096,0.11776,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.014,0.111,0.126,0.088,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.143,0.091,0.156,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00092,0.009,0.039,0.091,0.043,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.123,0.096,0.12785,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.015,0.072,0.095,0.07531,0,1,0 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.017,0.117,0.074,0.158,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.017,0.084,0.077,0.109,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.101,0.092,0.11,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.129,0.108,0.12,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.065,0.064,0.103,0,0,1 -0.6,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00065,0.0201,0.114,0.095,0.12,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.115,0.104,0.111,0,0,1 -0.57,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0048,0.0208,0.085,0.097,0.087,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.187,0.072,0.262,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.102,0.09,0.114,0,0,1 -0.77,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.016,0.109,0.095,0.11401,0,1,0 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.072,0.075,0.096,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.116,0.099,0.117,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.108,0.096,0.11226,0,0,1 -0.51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00073,0.0201,0.11,0.085,0.129,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.014,0.131,0.098,0.133,0,0,1 -0.27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.014,0.06,0.125,0.048,0,0,1 -0.33,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.013,0.092,0.014,0,0,1 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.016,0.149,0.097,0.154,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.015,0.131,0.112,0.117,0,0,1 -0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.129,0.087,0.148,0,0,1 -0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.083,0.071,0.117,0,0,1 -0.56,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0.006,0.0201,0.11,0.103,0.107,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00056,0.024,0.097,0.096,0.10083,0,0,1 -0.33,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0062,0.0201,0.051,0.066,0.078,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.032,0.154,0.132,0.117,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0201,0.102,0.084,0.122,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.0201,0.085,0.096,0.089,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.105,0.087,0.121,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.119,0.076,0.157,0,0,1 -0.61,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2e-05,0.0201,0.113,0.093,0.122,0,0,1 -0.72,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0016,0.0208,0.114,0.114,0.1,0,0,1 -0.67,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0069,0.017,0.082,0.091,0.09,0,1,0 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0201,0.189,0.147,0.128,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.178,0.157,0.114,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.02,0.104,0.093,0.112,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.102,0.087,0.117,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.0201,0.185,0.094,0.197,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.132,0.112,0.118,0,0,1 -0.47,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.114,0.111,0.102,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.087,0.099,0.087,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.103,0.099,0.104,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.099,0.103,0.095,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.123,0.11,0.111,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.0201,0.104,0.113,0.092,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0201,0.11,0.096,0.115,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.106,0.092,0.116,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.017,0.063,0.081,0.079,0,1,0 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.076,0.078,0.098,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.019,0.099,0.119,0.083,0,0,1 -0.71,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0028,0.0201,0.106,0.088,0.12,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00042,0.013,0.067,0.108,0.062,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.121,0.094,0.129,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00071,0.017,0.093,0.088,0.106,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.017,0.096,0.068,0.142,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.093,0.097,0.095,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0018,0.0201,0.095,0.098,0.097,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.101,0.084,0.12,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.011,0.069,0.078,0.088,0,0,1 -0.8,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00083,0.019,0.116,0.096,0.12058,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.086,0.086,0.099,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.175,0.108,0.161,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.018,0.115,0.1,0.115,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0.017,0.086,0.082,0.105,0,1,0 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.017,0.125,0.081,0.153,0,1,0 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.101,0.107,0.094,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.068,0.087,0.078,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.015,0.119,0.101,0.118,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.172,0.0096,0.029,0.084,0.035,1,0,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.101,0.113,0,0,1 -0.56,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.0201,0.134,0.066,0.204,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.022,0.091,0.094,0.096,0,0,1 -0.75,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0026,0.0201,0.096,0.112,0.086,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.014,0.11,0.078,0.142,0,0,1 -0.51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.12,0.122,0.099,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.124,0.088,0.141,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.028,0.124,0.116,0.106,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.183,0.102,0.179,0,0,1 -0.42,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0044,0.019,0.127,0.114,0.111,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.12,0.111,0.108,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0201,0.097,0.09,0.108,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.0201,0.085,0.08,0.106,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.1,0.103,0.096,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.015,0.172,0.115,0.149,0,0,1 -0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.0208,0.12,0.109,0.11,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.0201,0.113,0.104,0.107,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.0419,0.183,0.078,0.235,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.114,0.008,0.00406,0.104,0.00384,1,0,0 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.023,0.212,0.134,0.158,0,0,1 -0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.018,0.109,0.097,0.113,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.017,0.088,0.092,0.096,0,0,1 -0.42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.172,0.101,0.172,0,0,1 -0.42,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.031,0.136,0.1,0.136,0,0,1 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.016,0.129,0.099,0.13,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.119,0.112,0.107,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.11329,0.096,0.11776,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.017,0.111,0.098,0.113,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.145,0.151,0.096,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.0201,0.115,0.108,0.106,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.011,0.091,0.086,0.105,0,0,1 -0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.083,0.093,0.089,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.116,0.104,0.111,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.135,0.119,0.113,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.111,0.132,0.084,0,0,1 -0.75,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0043,0.017,0.142,0.112,0.127,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.081,0.085,0.095,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.018,0.093,0.099,0.094,0,0,1 -0.25,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.034,0.0096,0.014,0.103,0.013,1,0,0 -0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.027,0.159,0.092,0.173,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.0201,0.115,0.097,0.117,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.062,0.094,0.063,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.134,0.114,0.117,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.121,0.138,0.087,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.105,0.094,0.112,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.019,0.175,0.123,0.143,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.106,0.097,0.11,0,1,0 -0.44,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.064,0.101,0.063,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.087,0.088,0.099,0,0,1 -0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.013,0.067,0.096,0.07,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.01,0.155,0.113,0.137,0,0,1 -0.42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.015,0.11,0.096,0.11434,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.075,0.075,0.1,0,0,1 -0.31,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.123,0.096,0.12785,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0036,0.015,0.105,0.08,0.131,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.062,0.064,0.098,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.152,0.151,0.101,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0011,0.018,0.091,0.094,0.097,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.107,0.107,0.1,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.116,0.1,0.117,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.018,0.11329,0.096,0.11776,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.078,0.093,0.084,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.009,0.1,0.101,0.1,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0201,0.103,0.103,0.1,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.125,0.108,0.115,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.029,0.116,0.096,0.12058,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.138,0.115,0.125,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.0201,0.081,0.091,0.089,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.0201,0.13,0.104,0.123,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.132,0.126,0.105,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.038,0.2,0.076,0.264,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.029,0.15,0.096,0.15592,0,0,1 -0.37,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.1,0.086,0.117,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.097,0.092,0.106,0,0,1 -0.55,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.092,0.058,0.157,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.017,0.185,0.08,0.231,0,0,1 -0.66,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.048,0.004,0.012,0.135,0.00909,1,0,0 -0.66,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0027,0.01,0.067,0.083,0.08,0,0,1 -0.66,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.001,0.02,0.091,0.095,0.095,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.203,0.091,0.224,0,0,1 -0.36,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0201,0.155,0.097,0.159,0,0,1 -0.65,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.144,0.13,0.11,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.113,0.097,0.117,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.083,0.081,0.103,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.017,0.097,0.086,0.113,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0201,0.146,0.108,0.136,0,0,1 -0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.11329,0.096,0.11776,0,0,1 -0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.124,0.111,0.112,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00103,0.0201,0.09,0.102,0.089,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.124,0.101,0.122,0,0,1 -0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.134,0.112,0.109,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.102,0.096,0.10602,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.091,0.104,0.087,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.119,0.094,0.128,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.096,0.086,0.112,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.098,0.083,0.118,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.09,0.089,0.102,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.109,0.104,0.104,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.148,0.085,0.174,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.011,0.14,0.09,0.156,0,0,1 -0.6,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00208,0.016,0.136,0.096,0.14137,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.112,0.133,0.084,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.132,0.116,0.114,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.016,0.122,0.086,0.141,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.149,0.137,0.109,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.088,0.074,0.12,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.017,0.122,0.107,0.114,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.023,0.099,0.096,0.104,0,0,1 -0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164,0.0096,0.065,0.159,0.041,1,0,0 -0.73,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0032,0.0201,0.121,0.088,0.137,0,0,1 -0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.018,0.122,0.116,0.104,0,0,1 -0.39,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.46,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.141,0.098,0.143,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.08,0.088,0.091,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.104,0.093,0.112,0,0,1 -0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.014,0.036,0.086,0.042,0,0,1 -0.22,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.395,0.107,0.369,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0072,0.013,0.096,0.099,0.097,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0201,0.128,0.102,0.125,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.098,0.089,0.11,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.134,0.128,0.105,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.106,0.098,0.108,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.193,0.104,0.184,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.077,0.087,0.088,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.017,0.113,0.094,0.12,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.124,0.12,0.103,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.014,0.091,0.104,0.087,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.107,0.104,0.101,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.113,0.094,0.12,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,6e-05,0.026,0.11,0.096,0.11434,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.013,0.05,0.067,0.075,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.086,0.091,0.095,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.118,0.091,0.13,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.104,0.095,0.109,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.074,0.083,0.089,0,0,1 -0.52,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00063,0.0201,0.111,0.099,0.113,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.017,0.079,0.082,0.096,0,1,0 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.02,0.085,0.104,0.081,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.032,0.185,0.091,0.206,0,0,1 -0.59,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.148,0.109,0.136,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.133,0.1,0.133,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.005,0.11,0.086,0.127,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.121,0.093,0.131,0,0,1 -0.32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0075,0.0201,0.109,0.113,0.096,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.019,0.136,0.107,0.127,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.0201,0.075,0.102,0.073,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.02,0.101,0.09,0.112,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0023,0.0201,0.095,0.091,0.104,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00045,0.014,0.091,0.08,0.114,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.016,0.105,0.086,0.122,0,0,1 -0.49,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.068,0.003,0.068,0.088,0.077,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.022,0.13,0.097,0.134,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.018,0.098,0.088,0.112,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.001,0.0201,0.089,0.084,0.106,0,0,1 -0.65,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.098,0.078,0.126,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.106,0.113,0.094,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.088,0.099,0.089,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.121,0.088,0.137,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.006,0.087,0.087,0.1,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.013,0.098,0.103,0.095,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.086,0.095,0.091,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0058,0.027,0.079,0.1,0.079,0,0,1 -0.76,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0038,0.027,0.097,0.119,0.081,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0051,0.016,0.091,0.108,0.085,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.095,0.099,0.096,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.017,0.076,0.095,0.08,0,1,0 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0033,0.0201,0.115,0.133,0.086,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.107,0.108,0.099,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.011,0.096,0.094,0.102,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.104,0.099,0.106,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.019,0.091,0.08,0.114,0,0,1 -0.7,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0023,0.028,0.09,0.11,0.082,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.142,0.096,0.1476,0,0,1 -0.52,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0034,0.023,0.084,0.072,0.117,0,0,1 -0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.018,0.12,0.104,0.116,0,0,1 -0.2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.026,0.038,0.11,0.035,0,0,1 -0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0052,0.011,0.112,0.078,0.143,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.007,0.105,0.085,0.124,0,0,1 -0.5219,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.028,0.112,0.084,0.133,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.024,0.22,0.148,0.149,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.00232,0.026,0.082,0.102,0.08,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3e-05,0.032,0.123,0.108,0.114,0,0,1 -0.34,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3e-05,0.022,0.105,0.085,0.123,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.093,0.103,0.09,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.01,0.065,0.06,0.108,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.0201,0.111,0.09,0.124,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.108,0.099,0.11,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.12,0.103,0.116,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.012,0.023,0.017,0.136,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.02,0.105,0.085,0.125,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.084,0.096,0.088,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4e-05,0.017,0.102,0.09,0.113,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.13,0.085,0.153,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.08,0.091,0.088,0,0,1 -0.51,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.019,0.019,0.092,0.084,0.11,0,1,0 -0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00088,0.0201,0.125,0.087,0.145,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.083,0.114,0,0,1 -0.69,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,9e-05,0.0201,0.131,0.07,0.186,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.0201,0.11,0.097,0.113,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.038,0.162,0.104,0.155,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.018,0.13,0.091,0.143,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.131,0.092,0.141,0,0,1 -0.6,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,4e-05,0.023,0.155,0.07,0.221,0,0,1 -0.63,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00889,0.017,0.097,0.088,0.111,0,1,0 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.023,0.166,0.084,0.198,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.035,0.012,0.016,0.086,0.019,1,0,0 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.017,0.088,0.099,0.089,0,1,0 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.107,0.086,0.124,0,0,1 -0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00015,0.0201,0.173,0.112,0.154,0,0,1 -0.63,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.113,0.096,0.11746,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.017,0.081,0.095,0.086,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.018,0.067,0.089,0.072,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.199,0.098,0.204,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0062,0.007,0.055,0.058,0.096,0,1,0 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.014,0.161,0.088,0.183,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.11329,0.096,0.11776,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.107,0.101,0.106,0,0,1 -0.89,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.014,0.0096,0.03121,0.102,0.03042,1,0,0 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.11329,0.096,0.11776,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.017,0.116,0.101,0.115,0,0,1 -0.72,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0045,0.0201,0.102,0.094,0.108,0,0,1 -0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0068,0.009,0.096,0.101,0.095,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.031,0.153,0.16,0.096,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00018,0.015,0.103,0.096,0.10706,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.024,0.037,0.081,0.045,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.106,0.091,0.117,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.11,0.103,0.107,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11,0.108,0.102,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.123,0.085,0.145,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.044,0.0096,0.031,0.104,0.029,1,0,0 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.01,0.103,0.072,0.142,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.076,0.098,0.077,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.106,0.107,0.099,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0023,0.016,0.077,0.104,0.075,0,0,1 -0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.041,0.153,0.086,0.178,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0024,0.016,0.11,0.104,0.105,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.053,0.054,0.098,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.03,0.139,0.098,0.141,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.013,0.146,0.104,0.137,0,1,0 -0.73,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0033,0.009,0.09,0.088,0.102,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.132,0.092,0.143,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.135,0.102,0.133,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.013,0.121,0.08,0.152,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.019,0.124,0.108,0.115,0,0,1 -0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.116,0.093,0.125,0,0,1 -0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.084,0.077,0.11,0,0,1 -0.76,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.0201,0.084,0.086,0.097,0,0,1 -0.6,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,7e-05,0.013,0.131,0.093,0.142,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.077,0.085,0.09,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.0201,0.093,0.093,0.1,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00045,0.0201,0.119,0.115,0.104,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.017,0.108,0.08,0.135,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.176,0.093,0.189,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.147,0.134,0.11,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.1,0.098,0.102,0,0,1 -0.26,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00088,0.0201,0.119,0.152,0.078,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.038,0.148,0.096,0.15384,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.015,0.151,0.096,0.15696,0,0,1 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.116,0.112,0.103,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.016,0.131,0.095,0.138,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.0201,0.172,0.171,0.101,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.082,0.092,0.089,0,0,1 -0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.048,0.005,0.00419,0.136,0.0031,1,0,0 -0.74,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.009,0.104,0.078,0.133,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.123,0.116,0.104,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0044,0.0201,0.136,0.1,0.136,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00829,0.017,0.115,0.086,0.134,0,1,0 -0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.011,0.087,0.094,0.093,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.088,0.078,0.113,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.157,0.104,0.148,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.141,0.136,0.104,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.065,0.076,0.086,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.184,0.141,0.13,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.095,0.098,0.097,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.01,0.079,0.086,0.092,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.101,0.096,0.105,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.11,0.081,0.137,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.057,0.065,0.087,0,0,1 -0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.112,0.096,0.116,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.013,0.052,0.083,0.063,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0017,0.0201,0.127,0.094,0.136,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.014,0.095,0.09,0.105,0,0,1 -0.38,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0011,0.018,0.081,0.087,0.093,0,0,1 -0.63,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0041,0.018,0.1,0.121,0.083,0,0,1 -0.57,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.142,0.087,0.163,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.02,0.209,0.096,0.218,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.017,0.085,0.101,0.084,0,1,0 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.0201,0.161,0.087,0.185,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.139,0.089,0.156,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.09,0.103,0.087,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.017,0.086,0.102,0.084,0,1,0 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.0096,0.033,0.096,0.034,1,0,0 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.144,0.125,0.115,0,0,1 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0201,0.1,0.091,0.11,0,0,1 -0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0025,0.031,0.119,0.123,0.097,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.062,0.386,0.102,0.378,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.138,0.148,0.093,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.1,0.091,0.11,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.095,0.063,0.151,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.029,0.139,0.093,0.15,0,0,1 -0.76,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.083,0.096,0.087,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.133,0.109,0.122,0,0,1 -0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.0201,0.127,0.093,0.137,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0201,0.1,0.081,0.122,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.013,0.057,0.096,0.05925,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.011,0.0208,0.075,0.101,0.074,0,1,0 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.013,0.108,0.076,0.141,0,0,1 -0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.0201,0.125,0.086,0.145,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.149,0.104,0.14,0,0,1 -0.33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.132,0.187,0.071,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.149,0.129,0.116,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.076,0.071,0.107,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0.0005,0.003,0.104,0.003,1,0,0 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.085,0.079,0.107,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.01,0.126,0.108,0.117,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.005,0.11329,0.096,0.11776,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.006,0.079,0.054,0.148,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.119,0.101,0.119,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.009,0.112,0.094,0.119,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.081,0.11,0.074,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.015,0.082,0.113,0.073,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.125,0.109,0.114,0,0,1 -0.3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.103,0.079,0.13,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.015,0.141,0.104,0.134,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0005,0.02,0.065,0.031,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.0201,0.123,0.096,0.128,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.011,0.105,0.081,0.129,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.162,0.119,0.136,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.017,0.077,0.098,0.078,0,1,0 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.08,0.072,0.11,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.0201,0.118,0.087,0.136,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.014,0.088,0.077,0.115,0,1,0 -0.53,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0201,0.075,0.047,0.16,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.152,0.099,0.154,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0024,0.013,0.043,0.09,0.048,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00069,0.0201,0.123,0.097,0.128,0,0,1 -0.37,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.142,0.123,0.115,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.248,0.143,0.173,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.053,0.116,0.097,0.119,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.038,0.148,0.096,0.15384,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.013,0.127,0.111,0.115,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.14,0.09,0.156,0,0,1 -0.3,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.019,0.119,0.083,0.143,0,0,1 -0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.107,0.085,0.126,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.055,0.09,0.062,0,0,1 -0.74,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.013,0.096,0.075,0.129,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.111,0.102,0.109,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.017,0.148,0.095,0.155,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0028,0.026,0.111,0.087,0.127,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.025,0.173,0.108,0.161,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.143,0.095,0.151,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.1,0.077,0.13,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.015,0.099,0.09,0.11,0,1,0 -0.77,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.08,0.09,0.09,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.016,0.124,0.109,0.114,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00019,0.019,0.109,0.097,0.112,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00104,0.025,0.116,0.089,0.131,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.012,0.053,0.079,0.067,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.063,0.089,0.071,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.0201,0.098,0.072,0.135,0,0,1 -0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.092,0.063,0.146,0,0,1 -0.84,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.004,0.024,0.123,0.096,0.12785,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.011,0.126,0.089,0.142,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.022,0.126,0.096,0.13097,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.005,0.134,0.073,0.183,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.011,0.073,0.079,0.093,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.018,0.126,0.091,0.138,0,0,1 -0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.109,0.089,0.122,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.016,0.093,0.096,0.096,0,0,1 -0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.023,0.157,0.104,0.15,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.0208,0.124,0.095,0.131,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.09,0.079,0.114,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.163,0.089,0.182,0,0,1 -0.32,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.104,0.096,0.108,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0029,0.017,0.075,0.097,0.077,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0201,0.074,0.136,0.054,0,0,1 -0.17,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.153,0.131,0.116,0,0,1 -0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.0201,0.096,0.096,0.1,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.017,0.122,0.091,0.135,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.114,0.096,0.118,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.088,0.082,0.108,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0036,0.018,0.139,0.111,0.125,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.111,0.092,0.12,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.115,0.09,0.129,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.025,0.144,0.119,0.121,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.12,0.109,0.11,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.156,0.102,0.152,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.029,0.101,0.096,0.106,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.029,0.102,0.088,0.116,0,0,1 -0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.118,0.104,0.113,0,0,1 -0.35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00039,0.0201,0.196,0.17,0.115,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.0201,0.103,0.112,0.092,0,0,1 -0.2,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.002,0.018,0.13,0.101,0.128,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.142,0.12,0.118,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.018,0.11,0.089,0.124,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0201,0.14,0.074,0.189,0,0,1 -0.73,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.121,0.091,0.134,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00085,0.0208,0.093,0.096,0.09667,0,0,1 -0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00067,0.0201,0.112,0.095,0.118,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.077,0.078,0.1,0,0,1 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.015,0.087,0.087,0.1,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.101,0.08,0.126,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0201,0.148,0.087,0.17,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.0201,0.12,0.108,0.11,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.003,0.023,0.085,0.09,0.094,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.009,0.097,0.093,0.104,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.0201,0.139,0.078,0.179,0,0,1 -0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.095,0.091,0.118,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.007,0.089,0.072,0.123,0,0,1 -0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.019,0.146,0.085,0.172,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.0208,0.1,0.096,0.104,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.099,0.071,0.14,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.0201,0.177,0.091,0.194,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.091,0.079,0.115,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.117,0.099,0.118,0,0,1 -0.33,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00879,0.02,0.091,0.082,0.111,0,0,1 -0.49,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.183,0.102,0.179,0,0,1 -0.72,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00013,0.022,0.112,0.095,0.118,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,9e-05,0.0201,0.172,0.096,0.18,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.131,0.104,0.123,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.009,0.093,0.085,0.109,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.025,0.123,0.1,0.123,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.029,0.132,0.104,0.124,0,0,1 -0.38,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.146,0.141,0.104,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.039,0.115,0.104,0.11,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.14,0.11,0.127,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.015,0.113,0.093,0.122,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.026,0.152,0.113,0.135,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.032,0.134,0.098,0.137,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00049,0.017,0.101,0.075,0.134,0,0,1 -0.38,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0025,0.02,0.128,0.112,0.115,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.009,0.105,0.072,0.145,0,0,1 -0.27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00036,0.024,0.114,0.1,0.115,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00091,0.018,0.125,0.074,0.169,0,0,1 -0.57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00051,0.019,0.136,0.076,0.18,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.026,0.214,0.099,0.216,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.02,0.119,0.096,0.1237,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.024,0.13,0.095,0.137,0,0,1 -0.45,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,4e-05,0.0201,0.238,0.109,0.218,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.012,0.108,0.073,0.148,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.02,0.101,0.108,0.094,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.099,0.089,0.111,0,0,1 -0.76,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.0018,0.025,0.136,0.104,0.129,0,0,1 -0.69,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.014,0.104,0.068,0.153,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.017,0.118,0.099,0.119,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.118,0.093,0.127,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.022,0.095,0.084,0.113,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.098,0.081,0.12,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.169,0.089,0.189,0,0,1 -0.43,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.045,0.161,0.108,0.149,0,0,1 -0.57,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.0208,0.134,0.095,0.14016,0,1,0 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.099,0.115,0.086,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.082,0.095,0.086,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.024,0.189,0.104,0.179,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.013,0.113,0.091,0.124,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.13,0.091,0.143,0,0,1 -0.3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00024,0.018,0.188,0.096,0.19542,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.183,0.16,0.114,0,0,1 -0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.136,0.088,0.155,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.003,0.057,0.11,0.052,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.022,0.103,0.09,0.114,0,1,0 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.105,0.087,0.121,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00096,0.014,0.106,0.09,0.118,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.028,0.124,0.108,0.115,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.141,0.098,0.145,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.081,0.086,0.094,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.071,0.099,0.072,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.019,0.15,0.103,0.146,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.17,0.166,0.102,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.11329,0.096,0.11776,0,0,1 -0.61,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.036,0.012,0.109,0.104,0.103,0,0,1 -0.2,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.027,0.121,0.096,0.12577,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.13,0.087,0.149,0,0,1 -0.37,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,8e-05,0.0201,0.168,0.104,0.162,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0012,0.0201,0.105,0.098,0.107,0,0,1 -0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.104,0.099,0.105,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8e-05,0.045,0.198,0.115,0.172,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.091,0.077,0.118,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.0201,0.108,0.103,0.105,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.02,0.146,0.095,0.154,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.003,0.061,0.116,0.052,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.01,0.141,0.102,0.138,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.015,0.108,0.107,0.101,0,0,1 -0.46,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0017,0.01,0.105,0.1,0.105,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.18,0.146,0.123,0,0,1 -0.64,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.015,0.131,0.108,0.121,0,0,1 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.014,0.127,0.096,0.132,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.017,0.127,0.097,0.131,0,1,0 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.112,0.104,0.106,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.004,0.106,0.068,0.156,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.082,0.095,0.086,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.007,0.099,0.094,0.105,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.015,0.111,0.073,0.152,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0053,0.011,0.098,0.092,0.107,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.005,0.093,0.075,0.124,0,0,1 -0.45,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8e-05,0.0201,0.171,0.088,0.194,0,0,1 -0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0201,0.069,0.052,0.13,0,0,1 -0.48,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.00072,0.017,0.144,0.108,0.133,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.0208,0.173,0.093,0.186,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.031,0.102,0.075,0.136,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.012,0.068,0.037,0.184,0,0,1 -0.46,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.04,0.131,0.1,0.131,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.0208,0.145,0.102,0.142,0,0,1 -0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00098,0.015,0.106,0.087,0.122,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.023,0.124,0.082,0.151,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.019,0.12,0.096,0.125,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.104,0.121,0.087,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.03,0.109,0.104,0.103,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.132,0.11,0.12,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.079,0.107,0.074,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0208,0.182,0.103,0.177,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.019,0.11329,0.096,0.11776,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.016,0.128,0.101,0.127,0,1,0 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.014,0.096,0.099,0.097,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.0201,0.179,0.079,0.227,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.151,0.114,0.133,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.024,0.103,0.104,0.097,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.023,0.096,0.065,0.148,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00208,0.019,0.142,0.161,0.088,0,0,1 -0.19,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0.0041,0.026,0.124,0.13,0.095,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.018,0.125,0.074,0.169,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.141,0.075,0.188,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.114,0.095,0.12,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.085,0.093,0.091,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.116,0.114,0.102,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.011,0.131,0.104,0.126,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.016,0.099,0.094,0.105,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.008,0.048,0.07,0.069,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.012,0.108,0.09,0.12,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.017,0.095,0.096,0.099,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0201,0.12,0.093,0.129,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.023,0.11,0.116,0.095,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.155,0.133,0.117,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.006,0.091,0.068,0.134,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.096,0.091,0.106,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.118,0.097,0.12,0,0,1 -0.42,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0067,0.016,0.086,0.084,0.102,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.0201,0.102,0.088,0.116,0,0,1 -0.33,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.0201,0.085,0.102,0.083,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.01,0.022,0.081,0.109,0.074,0,1,0 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.095,0.097,0.098,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.092,0.086,0.107,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.104,0.094,0.111,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.107,0.111,0.096,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.014,0.076,0.074,0.103,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00021,0.0201,0.104,0.095,0.11,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.02,0.099,0.086,0.115,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.027,0.132,0.17,0.078,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.028,0.092,0.122,0.075,0,0,1 -0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.009,0.106,0.114,0.093,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.116,0.081,0.143,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.102,0.071,0.144,0,0,1 -0.73,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0064,0.017,0.097,0.087,0.112,0,1,0 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.03,0.095,0.134,0.071,0,0,1 -0.69,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8e-05,0.024,0.132,0.095,0.139,0,0,1 -0.42,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,7e-05,0.022,0.138,0.085,0.162,0,0,1 -0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.016,0.091,0.096,0.095,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0208,0.087,0.083,0.105,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.026,0.057,0.094,0.061,1,0,0 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00074,0.039,0.148,0.153,0.097,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.0201,0.15,0.16,0.094,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.008,0.073,0.075,0.097,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.088,0.096,0.092,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.009,0.093,0.087,0.107,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.032,0.148,0.114,0.13,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.114,0.095,0.12,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.0096,0.06,0.095,0.063,1,0,0 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.02,0.142,0.103,0.138,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.123,0.115,0.107,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.016,0.192,0.116,0.164,0,0,1 -0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.6,0.11,0.546,0,0,1 -0.46,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0.0053,0.016,0.093,0.091,0.102,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.017,0.123,0.107,0.115,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.125,0.116,0.108,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.11,0.093,0.118,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.038,0.18,0.157,0.115,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00078,0.029,0.137,0.141,0.097,0,0,1 -0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0044,0.0201,0.12,0.076,0.158,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.187,0.104,0.178,0,0,1 -0.83,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0015,0.0201,0.159,0.098,0.162,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.16,0.098,0.162,0,0,1 -0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0201,0.137,0.082,0.167,0,0,1 -0.63,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0067,0.015,0.101,0.065,0.155,0,1,0 -0.68,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.103,0.097,0.106,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.027,0.09,0.074,0.122,0,1,0 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.106,0.1,0.106,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.039,0.007,0.099,0.089,0.111,0,1,0 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.015,0.057,0.069,0.083,0,1,0 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.017,0.098,0.084,0.117,0,1,0 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.017,0.13,0.102,0.128,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.091,0.104,0.088,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.182,0.131,0.14,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9e-05,0.019,0.16,0.08,0.2,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.022,0.123,0.109,0.113,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.023,0.069,0.091,0.076,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00028,0.0201,0.114,0.094,0.121,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.039,0.186,0.094,0.198,0,0,1 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.026,0.157,0.109,0.144,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00012,0.007,0.053,0.096,0.05509,0,0,1 -0.4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.138,0.095,0.145,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.122,0.099,0.123,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.012,0.133,0.094,0.142,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.063,0.088,0.072,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.127,0.12,0.106,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.09,0.089,0.101,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.093,0.077,0.121,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.028,0.181,0.126,0.144,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.023,0.076,0.086,0.088,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00073,0.022,0.106,0.074,0.143,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.034,0.135,0.104,0.129,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.012,0.097,0.091,0.107,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.018,0.122,0.066,0.185,0,0,1 -0.38,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.023,0.122,0.096,0.12681,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.103,0.12,0.086,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.66,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,8e-05,0.01,0.141,0.075,0.188,0,0,1 -0.84,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.137,0.11,0.125,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.101,0.081,0.125,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.028,0.113,0.116,0.096,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.001,0.037,0.052,0.071,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.011,0.105,0.087,0.121,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.023,0.091,0.099,0.092,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.023,0.126,0.1,0.126,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0032,0.025,0.088,0.102,0.086,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8e-05,0.022,0.13,0.091,0.143,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.142,0.101,0.141,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.033,0.13,0.121,0.107,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.017,0.081,0.096,0.084,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.109,0.082,0.133,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.029,0.165,0.112,0.147,0,0,1 -0.64,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0022,0.023,0.113,0.069,0.164,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0019,0.022,0.126,0.097,0.13,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.144,0.109,0.132,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.031,0.135,0.116,0.115,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.066,0.078,0.085,0,0,1 -0.41,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.02,0.086,0.086,0.1,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.135,0.107,0.126,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.012,0.089,0.09,0.099,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.011,0.092,0.084,0.11,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.011,0.138,0.08,0.173,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.028,0.11329,0.096,0.11776,0,0,1 -0.66,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.029,0.145,0.125,0.116,0,0,1 -0.51,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.029,0.044,0.113,0.039,0,0,1 -0.47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0012,0.027,0.082,0.104,0.078,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00011,0.026,0.118,0.093,0.127,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.023,0.102,0.103,0.099,0,0,1 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.078,0.076,0.103,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.122,0.103,0.118,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.023,0.134,0.1,0.134,0,0,1 -0.02,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.076,0.257,0.096,0.268,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0027,0.012,0.1,0.093,0.108,0,0,1 -0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.061,0.187,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.09,0.091,0.099,0,0,1 -0.49,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0037,0.02,0.053,0.071,0.075,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0025,0.015,0.069,0.09,0.077,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.0208,0.111,0.089,0.125,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.106,0.098,0.108,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.017,0.017,0.112,0.116,0.097,0,1,0 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.108,0.071,0.152,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.022,0.092,0.071,0.13,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0201,0.098,0.099,0.099,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.01,0.117,0.119,0.098,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.0201,0.091,0.099,0.092,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.029,0.123,0.103,0.119,0,0,1 -0.71,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0043,0.013,0.055,0.083,0.066,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.022,0.0096,0.065,0.115,0.057,1,0,0 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.035,0.12,0.116,0.102,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0006,0.019,0.104,0.101,0.103,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.023,0.09,0.098,0.092,0,1,0 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.022,0.132,0.093,0.142,0,0,1 -0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.022,0.105,0.088,0.119,0,0,1 -0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00012,0.023,0.106,0.092,0.115,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00063,0.024,0.094,0.093,0.101,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.0201,0.119,0.057,0.209,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.025,0.131,0.116,0.11,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.105,0.1,0.105,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.025,0.157,0.097,0.162,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.09,0.09,0.1,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.109,0.138,0.079,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.012,0.106,0.123,0.086,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.02,0.087,0.115,0.076,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.127,0.128,0.099,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.026,0.129,0.142,0.091,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.003,0.033,0.064,0.052,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00097,0.027,0.069,0.052,0.133,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.098,0.128,0.077,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.026,0.063,0.074,0.085,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.019,0.104,0.097,0.107,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.085,0.083,0.102,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.108,0.094,0.115,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.025,0.131,0.111,0.118,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.017,0.168,0.114,0.147,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.099,0.06,0.165,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.011,0.112,0.068,0.165,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.013,0.108,0.094,0.115,0,0,1 -0.39,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.163,0.123,0.133,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.023,0.087,0.112,0.078,0,1,0 -0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0201,0.113,0.091,0.125,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0001,0.031,0.03,0.089,0.034,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00035,0.008,0.07,0.083,0.084,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.012,0.015,0.086,0.1,0.086,0,1,0 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.022,0.133,0.092,0.145,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0035,0.013,0.07,0.092,0.076,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.112,0.089,0.126,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.006,0.103,0.101,0.102,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.148,0.113,0.131,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.114,0.09,0.126,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0201,0.14,0.092,0.152,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.436,0.0096,0.012,0.101,0.012,1,0,0 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0201,0.108,0.084,0.129,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.122,0.114,0.107,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.135,0.098,0.138,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.023,0.11329,0.096,0.11776,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.033,0.153,0.119,0.129,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.014,0.115,0.091,0.126,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.015,0.095,0.091,0.104,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.02,0.142,0.115,0.123,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.017,0.104,0.095,0.10878,0,1,0 -0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.02,0.108,0.097,0.111,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.017,0.087,0.089,0.098,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.075,0.096,0.07796,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.004,0.08,0.057,0.14,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0031,0.0201,0.118,0.101,0.117,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.006,0.152,0.075,0.203,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0.049,0.037,0.078,0.047,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.015,0.09,0.097,0.093,0,0,1 -0.34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00038,0.019,0.137,0.082,0.167,0,0,1 -0.61,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0048,0.017,0.105,0.107,0.098,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.102,0.104,0.096,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.12,0.088,0.136,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.156,0.099,0.158,0,0,1 -0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.019,0.068,0.103,0.066,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.0201,0.118,0.062,0.19,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.024,0.15,0.116,0.127,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.017,0.107,0.108,0.099,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.022,0.098,0.114,0.086,0,0,1 -0.66,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0024,0.0201,0.174,0.116,0.15,0,0,1 -0.76,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.033,0.024,0.064,0.116,0.055,1,0,0 -0.26,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.023,0.101,0.114,0.089,0,1,0 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.012,0.101,0.107,0.094,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00047,0.024,0.092,0.072,0.128,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00027,0.0208,0.092,0.104,0.088,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.081,0.089,0.091,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.007,0.058,0.067,0.087,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.094,0.08,0.118,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.09,0.08,0.113,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.023,0.08,0.064,0.125,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.011,0.11,0.084,0.131,0,1,0 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.097,0.096,0.10083,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0041,0.019,0.085,0.099,0.085,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0201,0.105,0.104,0.101,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.037,0.201,0.097,0.207,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00067,0.0201,0.108,0.099,0.109,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.089,0.11,0.081,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.025,0.082,0.116,0.07,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.017,0.076,0.095,0.08,0,1,0 -0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.039,0.11329,0.096,0.11776,0,0,1 -0.03,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.077,0.076,0.101,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.089,0.082,0.109,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.0096,0.057,0.108,0.053,1,0,0 -0.87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.096,0.08,0.12,0,0,1 -0.83,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0027,0.013,0.1,0.083,0.121,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.013,0.113,0.084,0.135,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.08,0.1,0.08,0,0,1 -0.39,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.077,0.065,0.118,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.156,0.096,0.16216,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.016,0.091,0.104,0.088,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.017,0.123,0.111,0.111,0,1,0 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.017,0.111,0.085,0.131,0,1,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.063,0.057,0.111,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.115,0.071,0.162,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.125,0.112,0.112,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.011,0.129,0.08,0.162,0,0,1 -0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0062,0.007,0.084,0.073,0.115,0,1,0 -0.64,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0033,0.008,0.088,0.067,0.131,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.1,0.104,0.094,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0029,0.0201,0.104,0.087,0.12,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.103,0.086,0.12,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.015,0.128,0.089,0.144,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.095,0.098,0.097,0,0,1 -0.49,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.003,0.022,0.091,0.086,0.105,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.007,0.123,0.073,0.168,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.1,0.089,0.112,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.132,0.076,0.174,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0208,0.127,0.101,0.126,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.111,0.104,0.107,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.018,0.097,0.085,0.114,0,0,1 -0.61,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0074,0.012,0.086,0.096,0.09,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00012,0.013,0.093,0.067,0.139,0,0,1 -0.29,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00019,0.017,0.147,0.096,0.1528,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.026,0.136,0.115,0.118,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.033,0.082,0.089,0.092,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0208,0.116,0.067,0.173,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.09,0.087,0.103,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.084,0.078,0.108,0,0,1 -0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.016,0.12,0.095,0.12552,0,1,0 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.104,0.09,0.116,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.014,0.077,0.07,0.11,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.119,0.092,0.129,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.078,0.065,0.121,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.077,0.063,0.122,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.015,0.092,0.085,0.108,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.019,0.122,0.056,0.218,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.098,0.088,0.111,0,0,1 -0.15,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.088,0.074,0.119,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.014,0.137,0.081,0.169,0,0,1 -0.47,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0052,0.0201,0.098,0.074,0.132,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.08,0.096,0.08316,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.01,0.084,0.052,0.162,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.137,0.119,0.115,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.009,0.116,0.045,0.258,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.019,0.088,0.102,0.086,0,1,0 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.0201,0.081,0.094,0.086,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.025,0.094,0.094,0.1,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.012,0.107,0.086,0.122,0,0,1 -0.7,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0019,0.013,0.136,0.08,0.17,0,0,1 -0.47,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.109,0.089,0.123,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.073,0.01,0.025,0.099,0.025,1,0,0 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00063,0.016,0.107,0.093,0.115,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0017,0.011,0.064,0.076,0.084,0,0,1 -0.69,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.001,0.054,0.071,0.076,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.124,0.049,0.253,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.028,0.118,0.097,0.122,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0049,0.009,0.099,0.078,0.127,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.098,0.095,0.103,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0032,0.017,0.087,0.075,0.116,0,0,1 -0.36,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0029,0.02,0.096,0.091,0.106,0,0,1 -0.63,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.019,0.186,0.096,0.19334,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0201,0.137,0.074,0.185,0,0,1 -0.45,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0019,0.018,0.129,0.063,0.205,0,0,1 -0.49,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.114,0.072,0.158,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.003,0.1,0.087,0.115,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.007,0.131,0.074,0.177,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0078,0.017,0.089,0.085,0.105,0,1,0 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.115,0.119,0.097,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.099,0.083,0.119,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.019,0.125,0.097,0.129,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.151,0.102,0.148,0,0,1 -0.26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.018,0.147,0.079,0.185,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.025,0.089,0.095,0.094,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.012,0.09,0.086,0.105,0,1,0 -0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.0208,0.108,0.092,0.117,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0064,0.023,0.085,0.104,0.08,0,1,0 -0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.061,0.182,0.1,0.182,0,0,1 -0.54,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.184,0.109,0.169,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.027,0.129,0.095,0.136,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.0208,0.118,0.104,0.112,0,1,0 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.015,0.073,0.096,0.07587,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.093,0.082,0.113,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.024,0.1,0.096,0.10395,0,0,1 -0.6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0017,0.026,0.113,0.09,0.126,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.082,0.074,0.111,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.023,0.236,0.102,0.231,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.0201,0.111,0.096,0.116,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.15,0.104,0.142,0,0,1 -0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.222,0.173,0.128,0,0,1 -0.27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00026,0.0201,0.142,0.134,0.106,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.016,0.089,0.069,0.129,0,1,0 -0.31,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00014,0.01,0.103,0.066,0.156,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.098,0.09,0.109,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.01,0.151,0.07,0.216,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.102,0.08,0.128,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.094,0.094,0.1,0,1,0 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.091,0.084,0.108,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.0201,0.081,0.057,0.142,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.009,0.083,0.065,0.128,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.032,0.146,0.12,0.122,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.024,0.088,0.062,0.142,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.093,0.078,0.119,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.107,0.093,0.115,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.026,0.054,0.102,0.053,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.097,0.085,0.114,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.034,0.133,0.052,0.251,0,0,1 -0.76,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.024,0.097,0.099,0.098,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.135,0.101,0.135,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.016,0.122,0.079,0.154,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.12,0.096,0.125,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.1,0.087,0.115,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.072,0.047,0.153,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.017,0.093,0.073,0.127,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0208,0.087,0.104,0.083,0,0,1 -0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.0201,0.127,0.111,0.114,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.095,0.091,0.104,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.0201,0.108,0.095,0.114,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.018,0.097,0.1,0.097,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.018,0.082,0.084,0.099,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.086,0.069,0.126,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.0201,0.116,0.088,0.132,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00839,0.017,0.094,0.084,0.112,0,1,0 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.092,0.085,0.108,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00078,0.023,0.116,0.073,0.159,0,0,1 -0.68,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.054,0.012,0.019,0.104,0.018,0,0,1 -0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.018,0.134,0.097,0.138,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.031,0.156,0.081,0.193,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.024,0.232,0.098,0.237,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0033,0.019,0.116,0.091,0.128,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0032,0.01,0.085,0.058,0.144,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.056,0.292,0.098,0.298,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.027,0.121,0.097,0.125,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.027,0.161,0.092,0.175,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.015,0.091,0.095,0.096,0,1,0 -0.49,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.032,0.0208,0.082,0.073,0.112,0,1,0 -0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.03,0.141,0.127,0.111,0,1,0 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.012,0.1,0.07,0.143,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0028,0.0201,0.114,0.094,0.122,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.01,0.09,0.077,0.117,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.025,0.11,0.091,0.121,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.031,0.11,0.082,0.134,0,0,1 -0.38,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.064,0.256,0.077,0.332,0,0,1 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.029,0.158,0.075,0.211,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0022,0.024,0.085,0.055,0.155,0,0,1 -0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.03,0.196,0.096,0.204,0,0,1 -0.6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.012,0.031,0.093,0.096,0.09667,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.037,0.144,0.091,0.158,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0018,0.019,0.184,0.096,0.19126,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.029,0.108,0.1,0.108,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0.035,0.013,0.09,0.014,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.008,0.084,0.049,0.171,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.019,0.144,0.088,0.164,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.075,0.057,0.132,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.073,0.064,0.114,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00091,0.0201,0.118,0.085,0.139,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0017,0.026,0.089,0.06,0.148,0,0,1 -0.33,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.032,0.143,0.084,0.17,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.086,0.094,0.092,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.091,0.104,0.087,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.03,0.149,0.096,0.15488,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.031,0.156,0.094,0.166,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.019,0.099,0.103,0.096,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.051,0.138,0.113,0.122,0,0,1 -0.56,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.115,0.107,0.107,0,0,1 -0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.025,0.077,0.095,0.081,0,1,0 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.102,0.093,0.11,0,0,1 -0.36,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.028,0.131,0.104,0.125,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.105,0.09,0.117,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0208,0.096,0.087,0.11,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0119,0.026,0.079,0.09,0.088,0,1,0 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.028,0.118,0.101,0.117,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.074,0.073,0.101,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.084,0.089,0.094,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.111,0.091,0.122,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.026,0.101,0.103,0.098,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.02,0.107,0.084,0.127,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.018,0.099,0.076,0.13,0,0,1 -0.83,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.02,0.116,0.071,0.163,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.014,0.067,0.065,0.103,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.02,0.097,0.087,0.112,0,0,1 -0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.114,0.081,0.141,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.053,0.21,0.087,0.241,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.097,0.081,0.12,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.123,0.091,0.135,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0015,0.029,0.089,0.1,0.089,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.033,0.095,0.091,0.104,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.022,0.155,0.094,0.165,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.019,0.112,0.087,0.129,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.029,0.069,0.101,0.068,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0036,0.025,0.06,0.094,0.064,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0.0096,0.028,0.107,0.026,1,0,0 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.107,0.099,0.108,0,0,1 -0.57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00208,0.025,0.134,0.094,0.142,0,0,1 -0.77,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.026,0.114,0.088,0.13,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.017,0.083,0.058,0.143,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.012,0.078,0.073,0.107,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.02,0.075,0.082,0.092,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00035,0.026,0.063,0.092,0.069,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.018,0.099,0.104,0.094,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.013,0.062,0.074,0.084,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.011,0.079,0.073,0.108,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.004,0.064,0.032,0.2,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.064,0.067,0.095,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.014,0.066,0.064,0.103,0,1,0 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.008,0.084,0.082,0.102,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.017,0.094,0.096,0.09771,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.0201,0.109,0.101,0.108,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.025,0.092,0.095,0.09623,0,1,0 -0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.03,0.097,0.114,0.085,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.012,0.088,0.063,0.14,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.017,0.094,0.085,0.111,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.142,0.116,0.121,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.109,0.097,0.112,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.111,0.097,0.114,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.103,0.072,0.143,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.026,0.117,0.096,0.12162,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.007,0.066,0.116,0.056,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.024,0.13,0.108,0.12,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.019,0.079,0.062,0.127,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00074,0.0208,0.127,0.107,0.119,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.025,0.091,0.087,0.105,0,1,0 -0.39,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.118,0.071,0.166,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.022,0.152,0.104,0.145,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.123,0.075,0.164,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.494,0.005,0.012,0.139,0.009,1,0,0 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.017,0.09,0.057,0.158,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.0208,0.107,0.093,0.115,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.151,0.073,0.207,0,0,1 -0.54,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0.0019,0.023,0.161,0.104,0.155,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.18,0.43,0.067,0.642,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.107,0.084,0.127,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.129,0.094,0.137,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.026,0.151,0.148,0.102,0,0,1 -0.67,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0023,0.027,0.124,0.101,0.123,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.027,0.131,0.099,0.132,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.08,0.108,0.081,0,0,1 -0.79,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.02,0.189,0.104,0.18,0,0,1 -0.21,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0071,0.029,0.048,0.101,0.048,0,0,1 -0.62,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.071,0.072,0.099,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.165,0.099,0.167,0,0,1 -0.48,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0012,0.0201,0.105,0.072,0.146,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.152,0.08,0.19,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.133,0.099,0.134,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.025,0.147,0.089,0.165,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.161,0.127,0.127,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.011,0.1,0.082,0.122,0,1,0 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00039,0.025,0.12,0.104,0.115,0,0,1 -0.76,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7e-05,0.033,0.183,0.1,0.183,0,0,1 -0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.086,0.103,0.083,0,0,1 -0.49,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,8e-05,0.027,0.157,0.104,0.148,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.126,0.116,0.109,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,6e-05,0.039,0.148,0.101,0.147,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.148,0.114,0.13,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.157,0.124,0.127,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.015,0.12,0.076,0.158,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.023,0.112,0.087,0.129,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.018,0.093,0.073,0.127,0,0,1 -0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.117,0.083,0.141,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.113,0.092,0.123,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.024,0.116,0.08,0.145,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.017,0.107,0.135,0.079,0,1,0 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.123,0.104,0.116,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.167,0.093,0.18,0,0,1 -0.49,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.039,0.224,0.124,0.181,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.164,0.11,0.149,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.129,0.096,0.13409,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.019,0.123,0.074,0.166,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.098,0.072,0.136,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.023,0.18,0.104,0.173,0,0,1 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.02,0.089,0.11,0.081,0,1,0 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.024,0.165,0.097,0.17,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.127,0.092,0.138,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.007,0.097,0.085,0.114,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0419,0.179,0.167,0.107,0,0,1 -0.52,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0.062,0.0096,0.0025,0.119,0.0025,1,0,0 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.146,0.12,0.121,0,0,1 -0.49,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.0201,0.126,0.084,0.15,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.007,0.105,0.071,0.148,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.074,0.069,0.107,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.126,0.116,0.109,0,0,1 -0.24,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.00094,0.037,0.19,0.195,0.097,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.004,0.042,0.116,0.036,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.01,0.085,0.079,0.107,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.014,0.115,0.094,0.122,0,1,0 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.009,0.068,0.096,0.07068,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.02,0.078,0.096,0.08108,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.004,0.048,0.051,0.094,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.014,0.12,0.096,0.12474,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.01,0.05,0.082,0.061,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.012,0.11,0.08,0.138,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0041,0.012,0.123,0.094,0.131,0,0,1 -0.51,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.137,0.084,0.163,0,0,1 -0.33,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.138,0.064,0.217,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0066,0.015,0.111,0.086,0.129,0,1,0 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.087,0.098,0.089,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.033,0.11,0.119,0.092,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.02,0.118,0.114,0.103,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.017,0.147,0.089,0.165,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.028,0.099,0.067,0.148,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.0201,0.096,0.083,0.116,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.01,0.139,0.08,0.174,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.101,0.09,0.112,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.08,0.074,0.108,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.104,0.078,0.133,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.106,0.095,0.112,0,0,1 -0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0.0201,0.139,0.116,0.118,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.011,0.1,0.064,0.156,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.102,0.096,0.106,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.019,0.108,0.077,0.14,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0049,0.01,0.122,0.11,0.111,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.02,0.141,0.078,0.181,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.018,0.111,0.081,0.137,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.017,0.101,0.086,0.117,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.017,0.106,0.072,0.147,0,0,1 -0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.116,0.103,0.113,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.028,0.086,0.089,0.097,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00074,0.02,0.108,0.06,0.18,0,0,1 -0.46,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0.0034,0.018,0.123,0.09,0.137,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.393,0.0096,0.015,0.116,0.013,1,0,0 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.02,0.08,0.083,0.096,0,1,0 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.128,0.096,0.13305,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.011,0.121,0.074,0.164,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.013,0.109,0.092,0.118,0,0,1 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.0201,0.095,0.098,0.097,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.02,0.101,0.088,0.115,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0043,0.037,0.124,0.146,0.085,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.02,0.106,0.09,0.118,0,0,1 -0.46,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.023,0.096,0.087,0.11,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.02,0.047,0.075,0.063,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.0096,0.036,0.101,0.036,1,0,0 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0208,0.07,0.076,0.092,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.129,0.098,0.132,0,0,1 -0.7,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.037,0.013,0.094,0.1,0.094,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.012,0.128,0.092,0.139,0,0,1 -0.53,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0011,0.019,0.076,0.067,0.113,0,0,1 -0.57,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.079,0.081,0.098,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0019,0.0208,0.095,0.094,0.101,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.011,0.06,0.09,0.067,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.01,0.169,0.096,0.17567,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.012,0.107,0.095,0.112,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.019,0.09,0.098,0.092,0,1,0 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.018,0.093,0.095,0.09728,0,1,0 -0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.017,0.076,0.078,0.097,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.017,0.107,0.113,0.095,0,1,0 -0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0038,0.019,0.107,0.101,0.106,0,0,1 -0.22,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00066,0.022,0.12,0.122,0.098,0,0,1 -0.68,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.086,0.093,0.092,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.068,0.109,0.096,0.113,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.024,0.146,0.108,0.135,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.02,0.09,0.09,0.1,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.034,0.093,0.107,0.087,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.003,0.0208,0.107,0.116,0.092,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.02,0.102,0.097,0.105,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.073,0.078,0.094,0,1,0 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.098,0.1,0.098,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0201,0.102,0.096,0.106,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.121,0.102,0.119,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.113,0.09,0.126,0,0,1 -0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.005,0.101,0.064,0.158,0,0,1 -0.97,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.093,0.089,0.104,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.024,0.25,0.104,0.238,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.079,0.096,0.082,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.027,0.11329,0.096,0.11776,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.112,0.102,0.11,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.024,0.086,0.092,0.094,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.022,0.133,0.095,0.14,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.031,0.061,0.093,0.066,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.034,0.099,0.107,0.093,0,0,1 -0.49,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.02,0.0096,0.005,0.1,0.005,1,0,0 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.098,0.113,0.087,0,0,1 -0.28,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0001,0.095,0.09,0.112,0.08,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.032,0.108,0.104,0.102,0,0,1 -0.55,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0.0026,0.024,0.074,0.097,0.076,0,0,1 -0.6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00232,0.027,0.071,0.085,0.084,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.028,0.161,0.112,0.144,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.082,0.091,0.09,0,0,1 -0.43,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.023,0.081,0.099,0.082,0,1,0 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.023,0.096,0.078,0.123,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.029,0.133,0.1,0.133,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.009,0.057,0.061,0.093,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.119,0.104,0.114,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.009,0.05,0.062,0.081,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0031,0.014,0.096,0.102,0.094,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.009,0.058,0.128,0.045,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.016,0.08,0.064,0.125,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.024,0.093,0.11,0.085,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.016,0.075,0.077,0.097,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.012,0.055,0.074,0.074,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.11,0.087,0.126,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.103,0.072,0.143,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.023,0.103,0.095,0.108,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.03,0.154,0.114,0.135,0,0,1 -0.41,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00089,0.023,0.098,0.098,0.1,0,0,1 -0.42,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00013,0.0208,0.084,0.075,0.112,0,0,1 -0.47,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.075,0.089,0.084,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.0208,0.095,0.107,0.089,0,1,0 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.146,0.082,0.178,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0201,0.078,0.098,0.08,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.026,0.095,0.104,0.09,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.117,0.092,0.127,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.025,0.075,0.096,0.07796,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.009,0.069,0.074,0.093,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.084,0.063,0.133,0,0,1 -0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0054,0.0208,0.102,0.11,0.093,0,0,1 -0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.098,0.094,0.104,0,0,1 -0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.075,0.082,0.092,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00058,0.023,0.099,0.096,0.103,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.101,0.103,0.098,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.0208,0.111,0.091,0.122,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.006,0.065,0.066,0.098,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.036,0.161,0.069,0.233,0,0,1 -0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.024,0.15,0.11,0.136,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0012,0.0208,0.105,0.089,0.118,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.027,0.128,0.096,0.13305,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.01,0.022,0.086,0.091,0.095,0,1,0 -0.47,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.0208,0.061,0.089,0.069,0,0,1 -0.48,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.038,0.168,0.098,0.171,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.013,0.077,0.094,0.082,0,1,0 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.022,0.083,0.096,0.08627,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.099,0.083,0.119,0,0,1 -0.67,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.099,0.094,0.105,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038,0.014,0.074,0.098,0.076,0,1,0 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.073,0.076,0.096,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0087,0.033,0.138,0.153,0.09,0,1,0 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.112,0.104,0.108,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.01,0.081,0.082,0.099,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.108,0.081,0.133,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.01,0.09,0.067,0.134,0,0,1 -0.62,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0065,0.017,0.11,0.141,0.078,0,1,0 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.093,0.104,0.088,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.074,0.127,0.058,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.111,0.082,0.135,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.013,0.16,0.099,0.162,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0.017,0.005,0.108,0.005,1,0,0 -0.61,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.023,0.096,0.072,0.133,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.026,0.157,0.116,0.135,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.023,0.09,0.094,0.096,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.03,0.108,0.113,0.096,0,0,1 -0.28,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.029,0.119,0.141,0.084,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.107,0.101,0.106,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0027,0.013,0.105,0.101,0.104,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.018,0.097,0.101,0.096,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.014,0.057,0.072,0.079,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.137,0.115,0.119,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.082,0.108,0.076,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0079,0.024,0.151,0.163,0.093,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.031,0.062,0.094,0.066,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.104,0.094,0.11,0,0,1 -0.65,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.027,0.105,0.116,0.091,0,0,1 -0.66,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,9e-05,0.034,0.153,0.233,0.066,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0419,0.126,0.11,0.115,0,0,1 -0.53,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.075,0.086,0.087,0,0,1 -0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.0201,0.161,0.162,0.099,0,0,1 -0.61,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.0201,0.115,0.108,0.106,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.0201,0.099,0.103,0.095,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.057,0.041,0.14,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.017,0.125,0.096,0.13,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.012,0.083,0.069,0.121,0,1,0 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.031,0.132,0.104,0.125,0,0,1 -0.59,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.087,0.096,0.091,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0208,0.104,0.091,0.114,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.014,0.089,0.076,0.117,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.136,0.107,0.127,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.033,0.144,0.116,0.122,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.128,0.102,0.125,0,0,1 -0.23,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.065,0.245,0.076,0.325,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.059,0.1,0.059,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.024,0.082,0.081,0.102,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.02,0.08,0.077,0.104,0,0,1 -0.84,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0009,0.017,0.099,0.079,0.125,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.129,0.086,0.15,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.106,0.096,0.11018,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.099,0.093,0.106,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.093,0.069,0.135,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.024,0.11,0.085,0.129,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00088,0.029,0.068,0.096,0.07068,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.02,0.088,0.091,0.097,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.014,0.067,0.071,0.094,0,1,0 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.009,0.094,0.074,0.127,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.011,0.06,0.064,0.094,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.015,0.095,0.067,0.142,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.01,0.079,0.111,0.071,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.011,0.094,0.079,0.119,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.007,0.061,0.046,0.133,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.1,0.087,0.115,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.018,0.11329,0.096,0.079,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.154,0.114,0.135,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0201,0.127,0.089,0.143,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.089,0.116,0.076,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.081,0.088,0.092,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.109,0.097,0.112,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.024,0.117,0.104,0.113,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0208,0.09,0.107,0.084,0,0,1 -0.66,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,9e-05,0.022,0.198,0.097,0.204,0,0,1 -0.59,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.014,0.155,0.104,0.148,0,0,1 -0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.027,0.15,0.109,0.138,0,1,0 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.003,0.023,0.051,0.045,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.079,0.113,0.07,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.025,0.208,0.086,0.242,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.075,0.098,0.077,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.022,0.098,0.097,0.101,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00839,0.013,0.068,0.09,0.076,0,1,0 -0.3,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.019,0.112,0.077,0.145,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0208,0.079,0.089,0.089,0,1,0 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.011,0.106,0.081,0.131,0,0,1 -0.47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.094,0.1,0.094,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.092,0.081,0.114,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.027,0.166,0.149,0.111,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.016,0.101,0.087,0.116,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.032,0.138,0.108,0.128,0,0,1 -0.7,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0001,0.0208,0.126,0.083,0.152,0,0,1 -0.55,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.109,0.097,0.112,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0208,0.088,0.107,0.082,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.078,0.08,0.098,0,0,1 -0.44,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.118,0.11,0.107,0,0,1 -0.62,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.031,0.108,0.107,0.101,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.11329,0.096,0.11776,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.062,0.009,0.087,0.094,0.092,0,1,0 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.114,0.093,0.123,0,0,1 -0.31,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0.0027,0.023,0.087,0.116,0.074,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.014,0.056,0.088,0.064,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.027,0.08,0.094,0.085,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.092,0.089,0.103,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.092,0.096,0.096,0,0,1 -0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.017,0.076,0.102,0.075,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.008,0.077,0.096,0.08004,0,0,1 -0.81,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.006,0.123,0.091,0.135,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.019,0.107,0.085,0.126,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.016,0.085,0.091,0.093,0,1,0 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.093,0.109,0.085,0,0,1 -0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.015,0.077,0.096,0.08004,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.024,0.104,0.074,0.141,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.023,0.093,0.089,0.104,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.023,0.125,0.095,0.132,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.024,0.158,0.116,0.135,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.023,0.095,0.11,0.086,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0208,0.165,0.1,0.165,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.023,0.152,0.093,0.163,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0027,0.023,0.094,0.094,0.1,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.013,0.063,0.104,0.061,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.025,0.166,0.098,0.169,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.024,0.165,0.1,0.165,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.026,0.157,0.131,0.12,0,0,1 -0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0201,0.128,0.087,0.147,0,0,1 -0.51,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00046,0.0201,0.186,0.115,0.162,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.024,0.046,0.11,0.042,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.125,0.095,0.132,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.169,0.144,0.117,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.145,0.1,0.145,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.03,0.132,0.135,0.098,0,0,1 -0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.025,0.186,0.133,0.14,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.023,0.084,0.098,0.086,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.121,0.125,0.097,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.019,0.138,0.098,0.141,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.086,0.072,0.119,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.008,0.108,0.082,0.132,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.038,0.177,0.175,0.101,0,0,1 -0.22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.024,0.181,0.109,0.166,0,0,1 -0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7e-05,0.0208,0.094,0.1,0.094,0,0,1 -0.81,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.112,0.08,0.14,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.012,0.1,0.07,0.143,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.008,0.102,0.08,0.128,0,0,1 -0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.0201,0.224,0.134,0.167,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.022,0.111,0.101,0.11,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.025,0.194,0.108,0.18,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.013,0.106,0.088,0.12,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0201,0.111,0.084,0.132,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0074,0.019,0.101,0.083,0.122,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.083,0.063,0.132,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.022,0.134,0.095,0.141,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2e-05,0.044,0.235,0.092,0.255,0,0,1 -0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00094,0.026,0.115,0.111,0.104,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.095,0.09,0.106,0,0,1 -0.57,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.006,0.023,0.115,0.096,0.11954,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.025,0.111,0.097,0.114,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.114,0.088,0.13,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.009,0.119,0.091,0.131,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.017,0.113,0.093,0.122,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.005,0.1,0.096,0.104,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.108,0.093,0.116,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.008,0.081,0.085,0.095,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.007,0.078,0.058,0.132,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.007,0.108,0.069,0.156,0,0,1 -0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.012,0.094,0.058,0.162,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8e-05,0.004,0.058,0.076,0.076,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.105,0.076,0.138,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.003,0.065,0.042,0.155,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.006,0.058,0.073,0.079,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.019,0.094,0.086,0.109,0,1,0 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.022,0.107,0.086,0.124,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.023,0.091,0.096,0.095,0,1,0 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.013,0.094,0.102,0.092,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.009,0.11,0.088,0.125,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.025,0.094,0.098,0.096,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.027,0.112,0.1,0.112,0,0,1 -0.75,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00037,0.017,0.101,0.077,0.131,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00018,0.026,0.083,0.08,0.104,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.128,0.111,0.115,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.105,0.11,0.095,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.106,0.075,0.141,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.095,0.087,0.109,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.016,0.145,0.097,0.149,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.133,0.096,0.139,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.005,0.076,0.058,0.129,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.013,0.111,0.086,0.128,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.022,0.161,0.124,0.13,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.029,0.107,0.087,0.123,0,0,1 -0.53,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.001,0.0201,0.101,0.102,0.099,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00088,0.0208,0.088,0.085,0.104,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.0201,0.096,0.087,0.11,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.017,0.095,0.095,0.09937,0,1,0 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.025,0.18,0.123,0.146,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.024,0.119,0.17,0.07,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.025,0.101,0.098,0.103,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.023,0.082,0.102,0.08,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.025,0.141,0.139,0.101,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.078,0.094,0.083,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.018,0.078,0.101,0.077,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.026,0.106,0.097,0.109,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.11329,0.096,0.11776,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0026,0.0208,0.095,0.097,0.097,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0053,0.027,0.103,0.129,0.08,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.019,0.159,0.116,0.137,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.107,0.108,0.099,0,0,1 -0.11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.028,0.092,0.097,0.095,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.003,0.07,0.061,0.115,0,0,1 -0.28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.007,0.087,0.108,0.081,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.089,0.097,0.092,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.019,0.091,0.095,0.096,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.102,0.09,0.113,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.027,0.123,0.129,0.095,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.025,0.111,0.13,0.085,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.022,0.164,0.135,0.122,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.072,0.104,0.069,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.058,0.113,0.051,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.11329,0.096,0.11776,0,0,1 -0.4,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0.00232,0.0201,0.085,0.112,0.076,0,0,1 -0.57,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.024,0.116,0.089,0.13,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.027,0.112,0.103,0.109,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.022,0.108,0.115,0.094,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.019,0.096,0.093,0.103,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.097,0.082,0.118,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.08,0.099,0.081,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.095,0.084,0.113,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.1,0.082,0.122,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.084,0.104,0.081,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.022,0.148,0.122,0.121,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.03,0.114,0.1,0.114,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.139,0.097,0.143,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.083,0.101,0.082,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.018,0.099,0.08,0.124,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.101,0.09,0.112,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00066,0.024,0.087,0.082,0.106,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00208,0.024,0.106,0.112,0.095,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.014,0.104,0.083,0.125,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.028,0.06,0.095,0.063,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.188,0.181,0.104,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.128,0.093,0.138,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00889,0.012,0.109,0.093,0.117,0,1,0 -0.73,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.017,0.059,0.087,0.068,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.012,0.127,0.089,0.143,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.015,0.1,0.087,0.115,0,1,0 -0.7,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.006,0.115,0.073,0.158,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.006,0.078,0.084,0.093,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.003,0.08,0.072,0.111,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.028,0.135,0.12,0.113,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106,0.003,0.005,0.111,0.0045,1,0,0 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.025,0.056,0.09,0.062,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.0419,0.151,0.088,0.172,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.103,0.104,0.1,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.025,0.082,0.092,0.089,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.1,0.098,0.102,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.022,0.101,0.104,0.095,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.017,0.092,0.099,0.093,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.01,0.081,0.073,0.111,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.035,0.146,0.11,0.133,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.028,0.158,0.096,0.165,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.14,0.11,0.127,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.131,0.095,0.138,0,0,1 -0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.004,0.105,0.08,0.131,0,1,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.005,0.109,0.077,0.142,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.014,0.02,0.062,0.09,0.069,0,1,0 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.031,0.223,0.132,0.169,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.027,0.129,0.11,0.117,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.027,0.176,0.098,0.18,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.152,0.115,0.132,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.115,0.086,0.134,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0201,0.101,0.091,0.111,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.098,0.089,0.11,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.031,0.109,0.109,0.1,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.1329,0.41,0.079,0.519,0,0,1 -0.28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.011,0.089,0.093,0.096,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0208,0.11,0.114,0.096,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.03,0.125,0.124,0.101,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.11329,0.096,0.11776,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.109,0.08,0.136,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.096,0.103,0.093,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.083,0.08,0.104,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0201,0.11,0.101,0.109,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.009,0.11,0.087,0.126,0,0,1 -0.66,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00089,0.017,0.125,0.098,0.128,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.02,0.144,0.116,0.124,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.016,0.079,0.066,0.12,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.03,0.138,0.124,0.111,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.025,0.117,0.104,0.113,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.0201,0.088,0.094,0.094,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0031,0.0201,0.134,0.107,0.125,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.003,0.085,0.061,0.139,0,0,1 -0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.114,0.103,0.111,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.115,0.098,0.117,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.008,0.08,0.135,0.059,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.02,0.095,0.083,0.115,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.08,0.094,0.085,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.019,0.097,0.093,0.104,0,1,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.017,0.092,0.103,0.09,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.125,0.104,0.118,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.074,0.095,0.078,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.016,0.028,0.097,0.029,1,0,0 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.1,0.087,0.115,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.026,0.108,0.107,0.101,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.064,0.191,0.097,0.197,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0208,0.117,0.096,0.122,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.013,0.11329,0.096,0.11776,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.017,0.005,0.12,0.00415,0,0,1 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.033,0.084,0.096,0.08731,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.03,0.093,0.095,0.098,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0029,0.02,0.068,0.088,0.077,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.139,0.098,0.142,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.132,0.113,0.117,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.076,0.1,0.076,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.012,0.139,0.109,0.128,0,1,0 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.013,0.128,0.104,0.121,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.04,0.178,0.114,0.156,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.087,0.095,0.092,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.005,0.079,0.063,0.126,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.005,0.06,0.062,0.097,0,1,0 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.013,0.072,0.075,0.096,0,0,1 -0.34,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.028,0.155,0.1,0.155,0,0,1 -0.24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.038,0.096,0.081,0.119,0,0,1 -0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0039,0.0201,0.09,0.102,0.088,0,0,1 -0.69,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00011,0.0201,0.141,0.09,0.157,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.005,0.104,0.104,0.099,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.178,0.113,0.158,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.011,0.133,0.083,0.16,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.0201,0.234,0.215,0.109,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.059,0.019,0.038,0.113,0.034,1,0,0 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.084,0.061,0.139,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.0201,0.05,0.066,0.076,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.143,0.111,0.129,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0012,0.0201,0.072,0.084,0.086,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.138,0.094,0.146,0,0,1 -0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.029,0.119,0.112,0.106,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.02,0.134,0.066,0.203,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.116,0.104,0.112,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.014,0.079,0.092,0.086,0,1,0 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.008,0.081,0.066,0.123,0,1,0 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.018,0.118,0.091,0.13,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.007,0.087,0.091,0.096,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.013,0.086,0.102,0.084,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.014,0.184,0.062,0.297,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.016,0.099,0.082,0.121,0,0,1 -0.61,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.118,0.0096,0.018,0.104,0.017,1,0,0 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.069,0.093,0.074,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.024,0.117,0.107,0.108,0,1,0 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.015,0.118,0.075,0.157,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.01,0.09,0.077,0.117,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.025,0.085,0.092,0.092,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00031,0.029,0.143,0.139,0.103,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.022,0.078,0.104,0.075,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.028,0.142,0.104,0.135,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.014,0.091,0.081,0.112,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.0201,0.165,0.164,0.101,0,0,1 -0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0039,0.009,0.09,0.062,0.145,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.134,0.102,0.131,0,0,1 -0.91,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.082,0.088,0.093,0,1,0 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.011,0.064,0.055,0.116,0,0,1 -0.87,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.176,0.0096,0.052,0.123,0.042,1,0,0 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.078,0.096,0.081,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.112,0.089,0.126,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.213,0.176,0.121,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0019,0.0201,0.122,0.078,0.156,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.083,0.08,0.104,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.091,0.081,0.112,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.016,0.062,0.088,0.071,0,1,0 -0.88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.14,0.114,0.123,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0201,0.105,0.062,0.169,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.047,0.068,0.069,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.093,0.073,0.127,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.097,0.098,0.099,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0048,0.0201,0.057,0.08,0.071,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.026,0.112,0.101,0.111,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.016,0.069,0.099,0.07,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.017,0.111,0.083,0.134,0,0,1 -0.48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.129,0.128,0.101,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.02,0.08,0.07,0.114,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00099,0.023,0.13,0.101,0.129,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.025,0.13,0.086,0.151,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.031,0.231,0.096,0.241,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.141,0.097,0.145,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.111,0.111,0.1,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.011,0.156,0.101,0.155,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.009,0.092,0.087,0.106,0,0,1 -0.28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.09,0.111,0.081,0,0,1 -0.8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0053,0.011,0.097,0.087,0.112,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.025,0.126,0.108,0.117,0,0,1 -0.21,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.007,0.024,0.045,0.111,0.041,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.009,0.091,0.054,0.169,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.008,0.082,0.063,0.13,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00023,0.024,0.108,0.103,0.105,0,0,1 -0.68,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0.00048,0.03,0.097,0.104,0.092,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.102,0.107,0.095,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.117,0.095,0.123,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.12,0.141,0.085,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.122,0.11,0.111,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.024,0.133,0.129,0.103,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.029,0.138,0.122,0.113,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.104,0.132,0.079,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.016,0.186,0.097,0.191,0,0,1 -0.8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0027,0.02,0.13,0.104,0.124,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.013,0.057,0.069,0.083,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.16,0.115,0.139,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.09,0.087,0.103,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.03,0.161,0.174,0.093,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.111,0.091,0.122,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.121,0.089,0.136,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.01,0.109,0.088,0.124,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.197,0.089,0.221,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.017,0.107,0.085,0.126,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.017,0.072,0.093,0.077,0,1,0 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.109,0.09,0.121,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.12,0.116,0.103,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.097,0.091,0.107,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.024,0.122,0.1,0.122,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.02,0.175,0.104,0.165,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.017,0.072,0.096,0.075,0,1,0 -0.2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00046,0.02,0.119,0.11,0.108,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00043,0.0201,0.107,0.098,0.109,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00114,0.0201,0.092,0.093,0.099,0,0,1 -0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00075,0.0201,0.129,0.103,0.125,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.098,0.095,0.103,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00112,0.026,0.122,0.095,0.127,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.091,0.089,0.102,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.017,0.067,0.092,0.073,0,1,0 -0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.0201,0.162,0.116,0.137,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.191,0.008,0.005,0.103,0.00485,1,0,0 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.094,0.092,0.102,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.171,0.092,0.186,0,0,1 -0.69,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.086,0.075,0.115,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0201,0.061,0.051,0.12,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.085,0.071,0.12,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.024,0.056,0.043,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.089,0.087,0.102,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0201,0.115,0.108,0.106,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.117,0.086,0.136,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.006,0.02,0.125,0.104,0.12,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.0096,0.043,0.087,0.049,1,0,0 -0.69,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.0201,0.098,0.084,0.117,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.025,0.118,0.121,0.098,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.02,0.088,0.084,0.105,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.11,0.099,0.111,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.095,0.092,0.103,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.0201,0.094,0.097,0.097,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.019,0.102,0.1,0.102,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.0201,0.109,0.101,0.108,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.103,0.111,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.016,0.113,0.088,0.128,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00095,0.02,0.136,0.101,0.134,0,0,1 -0.29,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.023,0.102,0.096,0.10602,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.069,0.081,0.085,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.024,0.059,0.088,0.067,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.02,0.104,0.095,0.109,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.017,0.073,0.087,0.084,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.092,0.083,0.111,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.0208,0.106,0.104,0.101,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.064,0.076,0.084,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.087,0.112,0.078,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.107,0.116,0.091,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.124,0.108,0.115,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.0201,0.124,0.086,0.144,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0037,0.014,0.083,0.081,0.102,0,0,1 -0.66,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0018,0.0201,0.105,0.108,0.097,0,0,1 -0.75,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.091,0.084,0.108,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.156,0.146,0.107,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.18,0.189,0.095,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.13,0.087,0.149,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0035,0.024,0.095,0.108,0.088,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.009,0.121,0.096,0.126,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.04,0.239,0.09,0.266,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.029,0.119,0.107,0.111,0,0,1 -0.48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.031,0.096,0.092,0.104,0,0,1 -0.48,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,7e-05,0.017,0.104,0.096,0.1081,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.117,0.098,0.119,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.013,0.107,0.096,0.11122,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.022,0.096,0.095,0.10041,0,1,0 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.126,0.102,0.124,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0012,0.013,0.095,0.102,0.093,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00022,0.028,0.095,0.11,0.086,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.025,0.115,0.112,0.103,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.094,0.11,0.086,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.074,0.073,0.101,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.0201,0.096,0.099,0.097,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.024,0.126,0.113,0.112,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.146,0.092,0.159,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.026,0.134,0.096,0.119,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0011,0.012,0.07,0.098,0.071,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.099,0.085,0.117,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.12,0.101,0.119,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.1,0.095,0.105,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.009,0.122,0.09,0.136,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.126,0.109,0.116,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.119,0.096,0.1237,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.109,0.11,0.099,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.015,0.168,0.111,0.151,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00075,0.022,0.106,0.088,0.12,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.006,0.02,0.091,0.107,0.085,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0058,0.011,0.047,0.099,0.048,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.115,0.112,0.103,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.084,0.083,0.101,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.178,0.202,0.088,0,0,1 -0.32,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0016,0.0201,0.17,0.173,0.098,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0208,0.109,0.114,0.096,0,0,1 -0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.034,0.219,0.151,0.145,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.098,0.081,0.121,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.148,0.107,0.138,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.092,0.103,0.089,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.069,0.09,0.077,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.087,0.08,0.109,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.003,0.018,0.115,0.101,0.114,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.0201,0.074,0.058,0.128,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.072,0.062,0.116,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00048,0.0201,0.04,0.052,0.077,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.109,0.067,0.163,0,0,1 -0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0208,0.099,0.073,0.136,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.113,0.092,0.123,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.018,0.097,0.096,0.10083,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.024,0.122,0.104,0.117,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.026,0.106,0.109,0.097,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.1,0.092,0.109,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.0201,0.11,0.081,0.136,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.031,0.105,0.102,0.103,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.009,0.099,0.099,0.1,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.095,0.084,0.113,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0201,0.123,0.102,0.121,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.148,0.095,0.156,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.027,0.163,0.114,0.143,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.033,0.139,0.1,0.139,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.161,0.088,0.183,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.126,0.103,0.122,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0.0096,0.051,0.104,0.049,1,0,0 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.096,0.096,0.1,0,0,1 -0.56,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.101,0.079,0.128,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.158,0.091,0.174,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.034,0.126,0.122,0.103,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.097,0.113,0.086,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.114,0.045,0.253,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.028,0.148,0.109,0.136,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0201,0.093,0.077,0.121,0,0,1 -0.81,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.112,0.091,0.123,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.126,0.081,0.156,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0.0096,0.029,0.103,0.028,1,0,0 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.107,0.1,0.107,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.101,0.09,0.112,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.03,0.105,0.099,0.106,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.118,0.1,0.118,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.033,0.13,0.12,0.108,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.024,0.113,0.108,0.105,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.106,0.074,0.143,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.0201,0.244,0.216,0.113,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.084,0.1,0.084,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.01,0.101,0.116,0.087,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00989,0.018,0.089,0.099,0.09,0,1,0 -0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00033,0.031,0.103,0.11,0.094,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.074,0.087,0.085,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.03,0.148,0.129,0.115,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0043,0.012,0.027,0.103,0.026,0,0,1 -0.53,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.108,0.082,0.132,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.144,0.089,0.162,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.087,0.081,0.107,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.086,0.068,0.126,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00057,0.0201,0.138,0.076,0.182,0,0,1 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.009,0.076,0.063,0.121,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.125,0.095,0.132,0,0,1 -0.32,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.077,0.073,0.105,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0026,0.022,0.109,0.096,0.1133,0,0,1 -0.23,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00031,0.017,0.147,0.104,0.141,0,0,1 -0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0208,0.077,0.09,0.086,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0201,0.092,0.087,0.106,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.015,0.107,0.086,0.124,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.081,0.092,0.088,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.108,0.104,0.104,0,0,1 -0.6,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.00232,0.026,0.11329,0.096,0.11776,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.0201,0.134,0.102,0.131,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.112,0.097,0.116,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.095,0.088,0.108,0,0,1 -0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.137,0.104,0.131,0,0,1 -0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.083,0.087,0.095,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.011,0.145,0.087,0.167,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.022,0.108,0.112,0.096,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.126,0.095,0.133,0,1,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.112,0.073,0.153,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.078,0.055,0.142,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.024,0.098,0.093,0.105,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.109,0.1,0.109,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00045,0.0201,0.184,0.121,0.152,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.0201,0.095,0.082,0.116,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.013,0.094,0.089,0.106,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.011,0.132,0.093,0.142,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.005,0.035,0.085,0.041,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.002,0.044,0.064,0.069,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.015,0.107,0.091,0.118,0,1,0 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.011,0.143,0.091,0.157,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.12,0.094,0.128,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0038,0.012,0.122,0.116,0.104,0,0,1 -0.75,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00041,0.017,0.134,0.084,0.16,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.031,0.09,0.096,0.094,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.011,0.078,0.071,0.11,0,0,1 -0.67,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00077,0.0201,0.095,0.102,0.093,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0031,0.026,0.095,0.089,0.107,0,0,1 -0.81,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.023,0.089,0.114,0.078,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.075,0.091,0.082,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.089,0.097,0.092,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.051,0.175,0.091,0.192,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.012,0.092,0.096,0.096,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.147,0.095,0.155,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.012,0.109,0.086,0.127,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0034,0.0201,0.094,0.083,0.113,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.0201,0.135,0.104,0.127,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.077,0.09,0.086,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.0201,0.134,0.086,0.156,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00093,0.0201,0.114,0.102,0.112,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0025,0.0201,0.108,0.098,0.11,0,0,1 -0.01,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0065,0.017,0.133,0.126,0.106,0,1,0 -0.46,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.008,0.097,0.089,0.109,0,0,1 -0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.041,0.017,0.095,0.102,0.093,0,1,0 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.0201,0.184,0.15,0.123,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.083,0.086,0.097,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0201,0.098,0.101,0.097,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.091,0.08,0.114,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.134,0.103,0.13,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.097,0.104,0.092,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.084,0.082,0.102,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0201,0.118,0.099,0.119,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.099,0.094,0.105,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.023,0.122,0.11,0.111,0,0,1 -0.25,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0018,0.0201,0.158,0.158,0.1,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.022,0.191,0.097,0.197,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.083,0.101,0.082,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.02,0.144,0.078,0.185,0,0,1 -0.67,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0077,0.014,0.083,0.104,0.08,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.016,0.075,0.109,0.069,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.157,0.104,0.15,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.189,0.177,0.107,0,0,1 -0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.001,0.028,0.079,0.035,0,0,1 -0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.009,0.092,0.091,0.101,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.022,0.134,0.097,0.138,0,0,1 -0.22,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.022,0.189,0.102,0.185,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.012,0.151,0.114,0.132,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0067,0.017,0.09,0.102,0.088,0,1,0 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00024,0.027,0.117,0.108,0.108,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.024,0.096,0.098,0.098,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.033,0.239,0.128,0.187,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.097,0.071,0.137,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.075,0.1,0.075,0,0,1 -0.54,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7e-05,0.05,0.216,0.086,0.251,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.0201,0.164,0.104,0.158,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0201,0.092,0.091,0.101,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0034,0.019,0.126,0.116,0.107,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.09,0.077,0.117,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.061,0.077,0.079,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0208,0.093,0.096,0.097,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0073,0.0208,0.139,0.115,0.121,0,1,0 -0.49,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.031,0.139,0.114,0.122,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.0201,0.098,0.1,0.098,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.016,0.109,0.083,0.131,0,0,1 -0.45,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0017,0.018,0.094,0.086,0.109,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0023,0.022,0.098,0.093,0.105,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.004,0.047,0.088,0.053,0,0,1 -0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00026,0.001,0.034,0.061,0.056,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.018,0.111,0.102,0.109,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.04,0.221,0.109,0.203,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.034,0.147,0.135,0.109,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.0201,0.099,0.101,0.098,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.162,0.097,0.167,0,0,1 -0.39,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.041,0.131,0.095,0.138,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.017,0.117,0.104,0.113,0,1,0 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.131,0.115,0.114,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.099,0.087,0.114,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.0201,0.117,0.108,0.108,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0201,0.116,0.098,0.118,0,0,1 -0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.117,0.097,0.121,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0072,0.017,0.106,0.083,0.128,0,1,0 -0.33,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0045,0.0208,0.083,0.095,0.087,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.006,0.04,0.083,0.048,1,0,0 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.02,0.177,0.116,0.15,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00889,0.017,0.119,0.119,0.1,0,1,0 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.016,0.112,0.091,0.123,0,1,0 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.017,0.077,0.076,0.101,0,1,0 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00021,0.0201,0.179,0.099,0.181,0,0,1 -0.5219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.132,0.102,0.129,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0032,0.019,0.114,0.1,0.114,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.0005,0.04,0.068,0.059,1,0,0 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.153,0.067,0.228,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.112,0.095,0.118,0,0,1 -0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.166,0.006,0.032,0.104,0.031,1,0,0 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.098,0.091,0.108,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.122,0.112,0.109,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.02,0.073,0.1,0.073,0,1,0 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.144,0.17,0.085,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0201,0.146,0.132,0.111,0,0,1 -0.24,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,6e-05,0.026,0.176,0.107,0.164,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.156,0.136,0.115,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.018,0.094,0.089,0.106,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.075,0.082,0.091,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.106,0.083,0.128,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.023,0.13,0.103,0.126,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4e-05,0.038,0.292,0.091,0.321,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.193,0.122,0.158,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.109,0.093,0.117,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.088,0.073,0.121,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.028,0.118,0.101,0.117,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.099,0.086,0.115,0,0,1 -0.38,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0043,0.015,0.142,0.097,0.146,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00052,0.026,0.091,0.097,0.094,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.176,0.149,0.118,0,0,1 -0.42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0.0038,0.023,0.127,0.097,0.131,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.025,0.202,0.1,0.202,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.017,0.142,0.126,0.113,0,1,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.101,0.096,0.105,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.106,0.093,0.114,0,0,1 -0.16,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00021,0.024,0.126,0.093,0.135,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00091,0.022,0.096,0.088,0.109,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0022,0.018,0.123,0.104,0.118,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.098,0.101,0.097,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.109,0.092,0.118,0,0,1 -0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.03,0.104,0.115,0.09,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.167,0.154,0.108,0,0,1 -0.74,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0208,0.166,0.089,0.186,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.188,0.083,0.226,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.022,0.142,0.131,0.108,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00063,0.0201,0.132,0.107,0.123,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4e-05,0.03,0.129,0.097,0.133,0,0,1 -0.71,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.103,0.099,0.104,0,0,1 -0.69,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.163,0.082,0.199,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.013,0.102,0.091,0.113,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.024,0.122,0.096,0.12681,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.097,0.112,0.087,0,0,1 -0.95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.004,0.054,0.062,0.087,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0201,0.137,0.111,0.123,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0025,0.025,0.108,0.123,0.088,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.024,0.107,0.096,0.112,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0026,0.0201,0.083,0.107,0.078,0,0,1 -0.53,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00072,0.0201,0.12,0.088,0.139,0,0,1 -0.59,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.027,0.074,0.112,0.066,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.02,0.101,0.085,0.119,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.112,0.095,0.118,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.02,0.028,0.074,0.095,0.0774,0,1,0 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.0201,0.135,0.088,0.153,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.026,0.089,0.089,0.1,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0208,0.135,0.108,0.125,0,0,1 -0.36,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.169,0.098,0.172,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.024,0.132,0.095,0.139,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.0201,0.093,0.083,0.112,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.152,0.103,0.148,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.078,0.083,0.094,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.137,0.115,0.119,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.08,0.095,0.084,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.026,0.109,0.099,0.11,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.027,0.09,0.099,0.091,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.02,0.091,0.085,0.107,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.086,0.077,0.112,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.022,0.091,0.085,0.107,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.228,0.165,0.138,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0.005,0.022,0.138,0.016,1,0,0 -0.26,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0016,0.0201,0.136,0.107,0.128,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.105,0.085,0.124,0,0,1 -0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.018,0.132,0.089,0.148,0,0,1 -0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.012,0.123,0.098,0.126,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0041,0.013,0.101,0.078,0.13,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.065,0.087,0.075,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.01,0.016,0.11,0.015,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.192,0.0096,0.03121,0.102,0.03042,1,0,0 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.024,0.135,0.092,0.147,0,0,1 -0.39,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0043,0.018,0.092,0.096,0.09563,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.111,0.108,0.103,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.077,0.071,0.109,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.128,0.112,0.114,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.093,0.081,0.115,0,0,1 -0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.08,0.095,0.084,0,0,1 -0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0201,0.127,0.093,0.137,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.079,0.083,0.095,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.024,0.105,0.099,0.106,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.029,0.127,0.1,0.127,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.11,0.111,0.099,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.004,0.017,0.064,0.096,0.067,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.08,0.094,0.085,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.134,0.12,0.112,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0201,0.203,0.195,0.104,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.107,0.1,0.105,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.058,0.065,0.089,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.077,0.06,0.128,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.017,0.089,0.101,0.088,0,1,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.117,0.108,0.108,0,0,1 -0.51,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,3e-05,0.043,0.167,0.102,0.164,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.076,0.076,0.1,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.02,0.11329,0.096,0.11776,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.031,0.041,0.23,0.2,0.115,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.091,0.096,0.095,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.136,0.075,0.181,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.015,0.138,0.099,0.139,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.019,0.138,0.095,0.145,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.107,0.09,0.119,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.002,0.043,0.063,0.068,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.026,0.144,0.101,0.143,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.004,0.076,0.104,0.072,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.023,0.077,0.083,0.093,0,0,1 -0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.026,0.153,0.123,0.124,0,0,1 -0.44,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0075,0.0201,0.086,0.142,0.061,0,0,1 -0.81,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.13,0.116,0.11,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.131,0.113,0.116,0,0,1 -0.75,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.016,0.086,0.089,0.097,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.024,0.103,0.102,0.101,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0011,0.0201,0.103,0.099,0.104,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.0201,0.061,0.099,0.062,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.13,0.112,0.116,0,0,1 -0.56,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.027,0.212,0.115,0.184,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.014,0.13,0.116,0.112,0,0,1 -0.63,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3e-05,0.015,0.147,0.093,0.158,0,0,1 -0.63,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.056,0.1,0.056,0,0,1 -0.61,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.109,0.013,0.044,0.098,0.045,1,0,0 -0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.157,0.092,0.171,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.098,0.093,0.105,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.129,0.085,0.152,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.103,0.081,0.127,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.076,0.236,0.091,0.259,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.027,0.201,0.084,0.239,0,0,1 -0.6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.099,0.103,0.096,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0201,0.179,0.081,0.221,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0208,0.133,0.097,0.137,0,1,0 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.173,0.09,0.192,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.081,0.078,0.104,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.0201,0.142,0.099,0.143,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.148,0.125,0.118,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.017,0.081,0.089,0.091,0,0,1 -0.02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.136,0.0201,0.053,0.077,0.069,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.11329,0.096,0.143,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0036,0.0201,0.097,0.107,0.091,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.0201,0.097,0.101,0.096,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.114,0.08,0.1425,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.164,0.161,0.102,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.105,0.101,0.104,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.069,0.096,0.072,0,1,0 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.106,0.111,0.096,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.13,0.107,0.122,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.093,0.088,0.106,0,0,1 -0.36,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.1,0.091,0.11,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.006,0.11329,0.096,0.11776,0,0,1 -0.48,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0201,0.108,0.103,0.105,0,0,1 -0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.014,0.129,0.09,0.143,0,0,1 -0.46,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.009,0.102,0.094,0.109,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.02,0.14,0.136,0.103,0,0,1 -0.64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.099,0.092,0.108,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0015,0.02,0.11329,0.096,0.107,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.003,0.013,0.094,0.014,1,0,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.046,0.058,0.079,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00024,0.0201,0.153,0.095,0.161,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.131,0.108,0.121,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.01,0.092,0.09,0.102,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.017,0.115,0.111,0.104,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.096,0.089,0.108,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0044,0.0201,0.127,0.135,0.094,0,0,1 -0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.019,0.092,0.084,0.11,0,1,0 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.013,0.146,0.091,0.16,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.049,0.249,0.086,0.29,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00079,0.018,0.081,0.086,0.094,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.017,0.116,0.094,0.123,0,1,0 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.166,0.177,0.094,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.102,0.094,0.109,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.01,0.061,0.077,0.079,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.01,0.06,0.074,0.081,0,0,1 -0.37,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.019,0.099,0.086,0.115,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.161,0.081,0.199,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0201,0.134,0.091,0.147,0,0,1 -0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0201,0.088,0.066,0.133,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.123,0.096,0.128,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.011,0.091,0.079,0.115,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.019,0.074,0.079,0.094,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.107,0.083,0.129,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.16,0.116,0.136,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.011,0.123,0.094,0.131,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.013,0.091,0.102,0.089,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.097,0.079,0.123,0,0,1 -0.66,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0.002,0.018,0.115,0.097,0.119,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.111,0.093,0.119,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.204,0.093,0.219,0,0,1 -0.1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.098,0.099,0.099,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.164,0.134,0.122,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.095,0.087,0.109,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.108,0.094,0.115,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.113,0.076,0.149,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.104,0.098,0.106,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.085,0.07,0.121,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.114,0.084,0.136,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.013,0.081,0.091,0.089,0,1,0 -0.43,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.03,0.13,0.084,0.155,0,0,1 -0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.143,0.097,0.147,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.056,0.278,0.078,0.356,0,0,1 -0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.155,0.078,0.199,0,0,1 -0.62,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00066,0.0208,0.15,0.119,0.126,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.001,0.032,0.117,0.111,0.105,0,0,1 -0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.114,0.104,0.11,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0201,0.131,0.099,0.132,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.027,0.116,0.113,0.103,0,0,1 -0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.077,0.095,0.081,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.146,0.178,0.082,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.118,0.128,0.092,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.14,0.15,0.093,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.122,0.103,0.119,0,0,1 -0.45,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0035,0.0201,0.107,0.098,0.109,0,0,1 -0.53,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.015,0.089,0.103,0.086,0,0,1 -0.7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.019,0.052,0.077,0.068,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.037,0.178,0.096,0.18503,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.11329,0.096,0.11776,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.103,0.115,0.09,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.062,0.078,0.08,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.009,0.15,0.09,0.167,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.007,0.117,0.084,0.139,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.0096,0.019,0.094,0.02,1,0,0 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.075,0.057,0.132,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.015,0.115,0.084,0.137,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00083,0.0201,0.125,0.094,0.133,0,0,1 -0.49,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00027,0.018,0.098,0.108,0.091,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0025,0.025,0.1,0.103,0.097,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.086,0.08,0.108,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.117,0.11,0.106,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.0201,0.126,0.082,0.154,0,0,1 -0.69,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3e-05,0.014,0.158,0.096,0.16424,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.157,0.152,0.103,0,0,1 -0.24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.114,0.111,0.103,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.04,0.019,0.048,0.079,0.061,1,0,0 -0.81,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0039,0.014,0.102,0.102,0.1,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.127,0.108,0.118,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.0201,0.08,0.066,0.121,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.148,0.103,0.144,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.086,0.086,0.1,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.0201,0.114,0.09,0.127,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.017,0.083,0.079,0.105,0,0,1 -0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177,0.0201,0.072,0.1,0.072,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.019,0.11329,0.096,0.11776,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00083,0.023,0.119,0.111,0.107,0,0,1 -0.5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5e-05,0.0201,0.129,0.104,0.124,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.025,0.109,0.107,0.102,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.102,0.11,0.093,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.12,0.091,0.132,0,0,1 -0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.068,0.1,0.068,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0208,0.134,0.107,0.125,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.017,0.167,0.096,0.17359,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.08,0.088,0.091,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.112,0.114,0.098,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.016,0.08,0.091,0.088,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.118,0.091,0.13,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.012,0.144,0.088,0.164,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.024,0.152,0.07,0.217,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.017,0.11,0.091,0.121,0,1,0 -0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.137,0.104,0.131,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.226,0.093,0.243,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.204,0.146,0.14,0,0,1 -0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00081,0.016,0.099,0.096,0.10291,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.102,0.077,0.133,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.097,0.102,0.095,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.108,0.109,0.099,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.143,0.1,0.143,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.013,0.017,0.12,0.088,0.136,0,1,0 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.102,0.098,0.104,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.0201,0.057,0.083,0.069,0,0,1 -0.82,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00469,0.014,0.098,0.091,0.108,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0008,0.018,0.069,0.085,0.082,0,0,1 -0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.013,0.092,0.078,0.118,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.14,0.096,0.146,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.012,0.169,0.099,0.171,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0083,0.104,0.077,0.135,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.017,0.107,0.102,0.105,0,1,0 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.0201,0.155,0.15,0.103,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.138,0.124,0.111,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.161,0.102,0.158,0,0,1 -0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0069,0.115,0.08,0.144,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.098,0.065,0.151,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.014,0.066,0.078,0.085,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0093,0.089,0.066,0.135,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.086,0.101,0.085,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.097,0.104,0.093,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.025,0.129,0.104,0.124,0,0,1 -0.44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.163,0.12,0.136,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.101,0.104,0.097,0,0,1 -0.45,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.106,0.096,0.11,0,0,1 -0.67,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0025,0.0201,0.103,0.074,0.139,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0032,0.022,0.107,0.1,0.107,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.013,0.079,0.076,0.104,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.065,0.096,0.068,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.012,0.106,0.11,0.096,0,0,1 -0.38,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.144,0.104,0.136,0,0,1 -0.18,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.033,0.163,0.153,0.107,0,0,1 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2e-05,0.016,0.183,0.103,0.178,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.11,0.094,0.117,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.0201,0.102,0.076,0.134,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.019,0.088,0.104,0.085,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.115,0.07,0.164,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.083,0.083,0.1,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.117,0.1,0.117,0,0,1 -0.28,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.0201,0.106,0.123,0.086,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0005,0.008,0.123,0.116,0.105,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.0201,0.197,0.176,0.112,0,0,1 -0.59,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00058,0.019,0.143,0.096,0.14864,0,0,1 -0.34,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.023,0.113,0.104,0.107,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.135,0.116,0.116,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.131,0.097,0.135,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.017,0.114,0.093,0.123,0,1,0 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00829,0.017,0.094,0.095,0.099,0,1,0 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.09,0.084,0.107,0,0,1 -0.35,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0017,0.0201,0.083,0.112,0.074,0,0,1 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.015,0.103,0.088,0.117,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.0208,0.142,0.128,0.111,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.011,0.084,0.098,0.086,0,0,1 -0.54,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.085,0.089,0.096,0,0,1 -0.27,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.032,0.163,0.11,0.148,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.023,0.102,0.094,0.109,0,0,1 -0.27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.16,0.112,0.143,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0201,0.098,0.075,0.131,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.015,0.081,0.101,0.08,0,0,1 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0201,0.077,0.091,0.085,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.074,0.073,0.101,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.088,0.101,0.087,0,0,1 -0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.176,0.157,0.112,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.161,0.099,0.163,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.099,0.104,0.094,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.01,0.099,0.092,0.108,0,1,0 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.0201,0.082,0.058,0.139,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.091,0.104,0.088,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0201,0.114,0.092,0.124,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0201,0.095,0.086,0.11,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.091,0.096,0.095,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.108,0.093,0.116,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.035,0.207,0.096,0.21517,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.025,0.093,0.107,0.087,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.065,0.0096,0.049,0.095,0.052,1,0,0 -0.75,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0011,0.017,0.103,0.077,0.134,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0013,0.0201,0.125,0.094,0.133,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.119,0.104,0.114,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.114,0.11,0.104,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.018,0.131,0.122,0.107,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.147,0.089,0.165,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.0201,0.139,0.095,0.146,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.085,0.094,0.09,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.017,0.096,0.093,0.103,0,1,0 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.005,0.053,0.125,0.042,0,0,1 -0.44,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.014,0.088,0.079,0.111,0,0,1 -0.71,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.141,0.103,0.137,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.015,0.15,0.093,0.161,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.016,0.121,0.088,0.138,0,1,0 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.064,0.07,0.091,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.024,0.139,0.098,0.142,0,0,1 -0.48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0.0029,0.028,0.122,0.119,0.103,0,0,1 -0.65,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.023,0.017,0.078,0.092,0.085,0,1,0 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0208,0.084,0.09,0.093,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.004,0.099,0.08,0.124,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.024,0.116,0.097,0.12,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6e-05,0.024,0.152,0.116,0.131,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.124,0.11,0.113,0,0,1 -0.64,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0018,0.0208,0.097,0.104,0.093,0,0,1 -0.7,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.004,0.018,0.109,0.082,0.133,0,0,1 -0.67,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,3e-05,0.024,0.137,0.085,0.161,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.0201,0.131,0.084,0.156,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.025,0.099,0.097,0.102,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.084,0.124,0.068,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.105,0.091,0.115,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.0201,0.152,0.13,0.117,0,0,1 -0.45,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.131,0.104,0.126,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.0201,0.094,0.061,0.154,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00095,0.022,0.134,0.09,0.149,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0014,0.0201,0.148,0.107,0.138,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.125,0.104,0.119,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.173,0.162,0.107,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.097,0.095,0.102,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.027,0.137,0.114,0.12,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.091,0.104,0.087,0,0,1 -0.22,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0019,0.0201,0.182,0.195,0.093,0,0,1 -0.02,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0041,0.0201,0.155,0.104,0.149,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.16,0.104,0.152,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.023,0.11329,0.096,0.11776,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.178,0.071,0.251,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0035,0.015,0.083,0.092,0.09,0,0,1 -0.26,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.198,0.0096,0.005,0.095,0.0055,1,0,0 -0.26,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00232,0.018,0.11329,0.096,0.11776,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0082,0.009,0.128,0.091,0.141,0,1,0 -0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.023,0.114,0.093,0.123,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.121,0.129,0.094,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.006,0.026,0.128,0.125,0.102,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.129,0.1,0.129,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.101,0.083,0.122,0,0,1 -0.49,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.039,0.24,0.125,0.192,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.0201,0.102,0.093,0.11,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.123,0.097,0.127,0,0,1 -0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.038,0.012,0.06,0.103,0.058,1,0,0 -0.84,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.002,0.094,0.081,0.116,0,0,1 -0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0048,0.007,0.077,0.096,0.08004,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.14,0.116,0.12,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0095,0.0208,0.14,0.149,0.094,0,1,0 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.063,0.085,0.074,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.118,0.088,0.134,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.0201,0.134,0.099,0.135,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.019,0.142,0.098,0.145,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.121,0.103,0.117,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.126,0.116,0.109,0,0,1 -0.5,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0035,0.0208,0.177,0.1,0.177,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.018,0.072,0.09,0.08,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.207,0.166,0.125,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.111,0.099,0.112,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.11,0.1,0.11,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.0201,0.078,0.075,0.104,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.096,0.087,0.11,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.0201,0.117,0.088,0.133,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.0201,0.127,0.109,0.117,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.075,0.068,0.11,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0201,0.185,0.17,0.109,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.032,0.198,0.155,0.128,0,0,1 -0.18,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.0201,0.154,0.086,0.179,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.017,0.127,0.09,0.141,0,1,0 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.096,0.086,0.112,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.081,0.074,0.109,0,0,1 -0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.024,0.017,0.075,0.084,0.089,0,1,0 -0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.137,0.089,0.154,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0033,0.0201,0.149,0.133,0.112,0,0,1 -0.46,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.0201,0.116,0.094,0.123,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.014,0.102,0.084,0.121,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.0201,0.101,0.101,0.1,0,0,1 -0.58,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.001,0.018,0.112,0.072,0.156,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.018,0.095,0.091,0.104,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.096,0.066,0.145,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.036,0.175,0.099,0.177,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.093,0.08,0.116,0,0,1 -0.76,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00035,0.014,0.139,0.092,0.151,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.016,0.097,0.079,0.123,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0201,0.131,0.101,0.13,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.012,0.123,0.09,0.137,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.015,0.114,0.07,0.163,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.059,0.079,0.075,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.093,0.085,0.109,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.173,0.132,0.131,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0201,0.153,0.099,0.155,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.154,0.131,0.118,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.102,0.066,0.155,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.078,0.096,0.08108,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.025,0.134,0.088,0.152,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.085,0.087,0.098,0,0,1 -0.42,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0.00082,0.0208,0.121,0.077,0.157,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.113,0.093,0.122,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.0096,0.043,0.085,0.051,1,0,0 -0.52,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.105,0.083,0.127,0,0,1 -0.21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.119,0.079,0.151,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.1,0.076,0.132,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.095,0.083,0.114,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.1,0.087,0.115,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.0201,0.12,0.095,0.126,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0201,0.06,0.072,0.083,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.089,0.095,0.094,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2e-05,0.0201,0.149,0.098,0.152,0,0,1 -0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.0201,0.084,0.08,0.105,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.02,0.152,0.095,0.16,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.008,0.062,0.076,0.082,0,0,1 -0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.024,0.139,0.096,0.145,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.015,0.135,0.104,0.127,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.107,0.113,0.095,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.104,0.068,0.153,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.022,0.132,0.088,0.15,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.104,0.101,0.103,0,0,1 -0.3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.031,0.013,0.066,0.088,0.075,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.015,0.108,0.094,0.115,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.006,0.121,0.119,0.102,0,0,1 -0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.0201,0.096,0.087,0.11,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.022,0.094,0.081,0.116,0,0,1 -0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.013,0.096,0.101,0.095,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.138,0.099,0.139,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.08,0.093,0.086,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.138,0.093,0.148,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.1,0.096,0.10395,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.001,0.056,0.078,0.072,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.115,0.11,0.105,0,0,1 -0.24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.023,0.042,0.092,0.046,0,0,1 -0.27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.106,0.079,0.134,0,0,1 -0.6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.023,0.116,0.094,0.123,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0075,0.017,0.081,0.103,0.079,0,1,0 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.01,0.146,0.098,0.149,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.0201,0.105,0.092,0.114,0,0,1 -0.75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0015,0.012,0.091,0.097,0.094,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.104,0.087,0.12,0,0,1 -0.57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.116,0.12,0.097,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.067,0.083,0.081,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.07,0.077,0.091,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.0201,0.118,0.122,0.097,0,0,1 -0.91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00101,0.0201,0.104,0.089,0.117,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00064,0.014,0.13,0.091,0.143,0,0,1 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.065,0.091,0.071,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0201,0.148,0.098,0.151,0,0,1 -0.63,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.022,0.017,0.088,0.11,0.08,0,1,0 -0.64,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0.00084,0.0201,0.121,0.089,0.136,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.08,0.088,0.091,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0201,0.133,0.104,0.125,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.13,0.087,0.149,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.111,0.097,0.114,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.096,0.1,0.096,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.018,0.109,0.082,0.133,0,0,1 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.063,0.078,0.081,0,0,1 -0.18,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0011,0.0201,0.071,0.061,0.116,0,0,1 -0.78,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.01,0.086,0.079,0.109,0,0,1 -0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.012,0.084,0.091,0.092,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0013,0.013,0.073,0.104,0.07,0,0,1 -0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00083,0.0201,0.09,0.102,0.088,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.08,0.082,0.098,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.126,0.116,0.107,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.018,0.077,0.062,0.124,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00018,0.002,0.094,0.079,0.119,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.139,0.091,0.153,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.123,0.096,0.12785,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.093,0.098,0.095,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.014,0.108,0.097,0.111,0,0,1 -0.22,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.155,0.097,0.16,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.017,0.064,0.097,0.066,0,1,0 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.104,0.093,0.112,0,0,1 -0.62,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0011,0.014,0.103,0.089,0.115,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.09,0.087,0.103,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.081,0.086,0.094,0,0,1 -0.75,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0007,0.0201,0.146,0.096,0.152,0,0,1 -0.5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.108,0.088,0.123,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.102,0.101,0.101,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.0201,0.094,0.095,0.099,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.147,0.109,0.135,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.009,0.063,0.065,0.097,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.0201,0.111,0.076,0.146,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.083,0.084,0.099,0,0,1 -0.34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0079,0.0201,0.088,0.083,0.106,0,0,1 -0.63,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.013,0.096,0.092,0.104,0,0,1 -0.6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.158,0.104,0.152,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.133,0.1,0.133,0,0,1 -0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.0201,0.149,0.084,0.177,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.13,0.086,0.151,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.073,0.082,0.089,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.091,0.083,0.11,0,0,1 -0.7,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.011,0.094,0.062,0.152,0,0,1 -0.33,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0011,0.016,0.104,0.079,0.132,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.012,0.092,0.069,0.133,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0029,0.0201,0.082,0.067,0.122,0,0,1 -0.47,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00075,0.01,0.141,0.095,0.148,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.014,0.101,0.084,0.12,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.0201,0.139,0.108,0.129,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.072,0.096,0.07483,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.032,0.239,0.083,0.288,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.05,0.16,0.087,0.184,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.1,0.092,0.109,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.129,0.096,0.13409,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.094,0.086,0.109,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.094,0.088,0.107,0,0,1 -0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2e-05,0.022,0.153,0.109,0.14,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0137,0.017,0.067,0.075,0.089,0,1,0 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.089,0.097,0.092,0,0,1 -0.64,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00056,0.018,0.09,0.079,0.114,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.0201,0.102,0.085,0.12,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.0208,0.101,0.078,0.129,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.0201,0.097,0.101,0.096,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.025,0.058,0.107,0.054,1,0,0 -0.21,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.06,0.098,0.061,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.0201,0.153,0.107,0.143,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.083,0.084,0.099,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.087,0.073,0.119,0,0,1 -0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.0201,0.214,0.123,0.174,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0201,0.115,0.125,0.092,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0208,0.16,0.098,0.163,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.02,0.076,0.108,0.07,0,1,0 -0.43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.019,0.092,0.076,0.121,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.0201,0.08,0.086,0.093,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.096,0.09,0.107,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.108,0.087,0.124,0,0,1 -0.72,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00041,0.019,0.108,0.072,0.15,0,0,1 -0.19,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2e-05,0.0201,0.171,0.097,0.176,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.026,0.03,0.061,0.088,0.069,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.126,0.085,0.148,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.064,0.052,0.121,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.097,0.072,0.135,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.078,0.076,0.103,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.015,0.087,0.089,0.098,0,0,1 -0.67,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.11329,0.096,0.11776,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.029,0.1,0.097,0.103,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.0201,0.097,0.094,0.103,0,0,1 -0.37,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.044,0.064,0.069,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.09,0.077,0.117,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.0201,0.117,0.078,0.15,0,0,1 -0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0.0096,0.087,0.135,0.064,1,0,0 -0.4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.02,0.057,0.068,0.084,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.015,0.052,0.084,0.062,1,0,0 -0.54,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0035,0.017,0.113,0.096,0.11746,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.016,0.066,0.115,0.057,0,0,1 -0.3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.0033,0.0201,0.087,0.116,0.074,0,0,1 -0.76,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0015,0.0201,0.101,0.082,0.123,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0023,0.023,0.093,0.127,0.073,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.088,0.077,0.114,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0.0011,0.019,0.106,0.116,0.091,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.102,0.08,0.128,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.017,0.07,0.09,0.078,0,0,1 -0.05,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.206,0.141,0.146,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.057,0.172,0.086,0.2,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.102,0.09,0.113,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.091,0.124,0.073,0,0,1 -0.54,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.077,0.09,0.086,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.011,0.082,0.094,0.087,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.13,0.1,0.13,0,0,1 -0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.017,0.093,0.091,0.102,0,0,1 -0.76,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0014,0.0208,0.08,0.113,0.071,0,0,1 -0.53,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00072,0.016,0.065,0.065,0.1,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.059,0.183,0.082,0.223,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.029,0.13,0.08,0.163,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.064,0.066,0.097,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.0201,0.082,0.067,0.122,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.0201,0.122,0.084,0.145,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0201,0.118,0.09,0.131,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.086,0.096,0.08939,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.0201,0.059,0.077,0.077,0,0,1 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.121,0.088,0.138,0,0,1 -0.2,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0.0004,0.023,0.132,0.083,0.159,0,0,1 -0.2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00054,0.0201,0.075,0.071,0.106,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.017,0.15,0.087,0.172,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.02,0.183,0.104,0.174,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.009,0.102,0.071,0.144,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.0096,0.034,0.063,0.054,1,0,0 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.09,0.079,0.114,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.064,0.089,0.072,0,0,1 -0.3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.106,0.092,0.115,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.082,0.095,0.086,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.12,0.08,0.15,0,0,1 -0.44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.154,0.104,0.148,0,0,1 -0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.015,0.091,0.092,0.099,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0026,0.022,0.14,0.133,0.105,0,0,1 -0.14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.025,0.119,0.073,0.163,0,0,1 -0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.016,0.138,0.084,0.164,0,0,1 -0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0029,0.008,0.074,0.072,0.103,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.102,0.08,0.128,0,0,1 -0.57,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.01679,0.017,0.034,0.097,0.035,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.024,0.137,0.099,0.138,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.134,0.101,0.133,0,0,1 -0.66,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.015,0.108,0.089,0.121,0,0,1 -0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.001,0.01,0.102,0.069,0.148,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0201,0.091,0.104,0.088,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.0201,0.132,0.104,0.127,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.077,0.089,0.087,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.115,0.097,0.119,0,0,1 -0.48,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0029,0.0201,0.109,0.099,0.11,0,0,1 -0.6,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0055,0.0201,0.105,0.081,0.13,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0201,0.138,0.08,0.173,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.071,0.078,0.091,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0.005,0.005,0.093,0.0055,1,0,0 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.0201,0.128,0.103,0.124,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.153,0.156,0.098,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.116,0.173,0.067,0,0,1 -0.79,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.008,0.083,0.067,0.124,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00093,0.011,0.077,0.096,0.08004,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.036,0.204,0.179,0.114,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.097,0.083,0.117,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.097,0.066,0.147,0,0,1 -0.09,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.032,0.125,0.085,0.147,0,0,1 -0.66,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.005,0.02,0.106,0.104,0.101,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00047,0.014,0.042,0.073,0.058,0,0,1 -0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.114,0.09,0.127,0,0,1 -0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.113,0.104,0.109,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.068,0.093,0.073,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00097,0.027,0.096,0.08,0.12,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.084,0.067,0.125,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.098,0.077,0.127,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.18,0.125,0.144,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.165,0.099,0.167,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.075,0.095,0.079,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.1,0.11,0.091,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.032,0.0096,0.055,0.089,0.062,1,0,0 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.145,0.092,0.158,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.064,0.08,0.08,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0201,0.098,0.088,0.111,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.0201,0.094,0.052,0.177,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.117,0.109,0.107,0,0,1 -0.6,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.016,0.104,0.098,0.106,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.02,0.154,0.1,0.154,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0017,0.018,0.072,0.069,0.104,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.13,0.103,0.126,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.12,0.096,0.125,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.059,0.08,0.074,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.053,0.016,0.113,0.129,0.088,0,1,0 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.008,0.044,0.115,0.038,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.132,0.121,0.109,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.067,0.099,0.068,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.139,0.107,0.13,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.129,0.1,0.129,0,0,1 -0.58,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0004,0.0201,0.077,0.081,0.095,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.0201,0.118,0.091,0.13,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0201,0.065,0.107,0.061,0,0,1 -0.59,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0.00419,0.025,0.09,0.102,0.088,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.087,0.089,0.098,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.119,0.088,0.135,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.057,0.078,0.073,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.145,0.113,0.128,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.08,0.075,0.107,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.099,0.086,0.115,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00095,0.0201,0.088,0.085,0.104,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0031,0.0201,0.064,0.09,0.071,0,0,1 -0.49,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.024,0.18,0.125,0.144,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.108,0.083,0.13,0,0,1 -0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0208,0.082,0.104,0.077,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.011,0.045,0.091,0.049,1,0,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.105,0.096,0.109,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.017,0.115,0.087,0.132,0,0,1 -0.59,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.043,0.081,0.053,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.012,0.069,0.099,0.07,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.0208,0.116,0.098,0.118,0,0,1 -0.57,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.093,0.084,0.111,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.089,0.09,0.099,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.006,0.0201,0.135,0.096,0.141,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.083,0.065,0.128,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.08,0.077,0.104,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.11,0.104,0.106,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.017,0.051,0.056,0.091,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.071,0.076,0.093,0,0,1 -0.26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.03,0.189,0.121,0.156,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.091,0.076,0.12,0,0,1 -0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.182,0.143,0.127,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.179,0.098,0.183,0,0,1 -0.37,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.024,0.016,0.095,0.086,0.11,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.083,0.075,0.111,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.085,0.085,0.1,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.116,0.092,0.126,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.0096,0.059,0.098,0.06,1,0,0 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.137,0.096,0.143,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.085,0.069,0.123,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.087,0.097,0.09,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.073,0.087,0.084,0,0,1 -0.31,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00469,0.026,0.073,0.097,0.075,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.136,0.158,0.086,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.0096,0.039,0.1,0.039,1,0,0 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.005,0.005,0.119,0.004,1,0,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.085,0.073,0.116,0,0,1 -0.6,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2e-05,0.014,0.09,0.081,0.111,0,0,1 -0.08,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.024,0.126,0.096,0.131,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.024,0.182,0.101,0.18,0,0,1 -0.77,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0036,0.018,0.134,0.102,0.131,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.017,0.082,0.084,0.098,0,1,0 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.11329,0.096,0.11776,0,0,1 -0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0067,0.0201,0.056,0.073,0.077,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.017,0.095,0.104,0.09,0,1,0 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.066,0.093,0.071,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.022,0.09,0.084,0.107,0,0,1 -0.56,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.067,0.071,0.094,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.097,0.123,0.079,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.014,0.063,0.096,0.06548,0,0,1 -0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0052,0.0201,0.103,0.146,0.071,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.095,0.077,0.123,0,0,1 -0.51,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0027,0.02,0.115,0.09,0.128,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.017,0.081,0.09,0.09,0,1,0 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.0201,0.234,0.07,0.334,0,0,1 -0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.0201,0.162,0.142,0.114,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.093,0.076,0.122,0,0,1 -0.28,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.157,0.091,0.173,0,0,1 -0.69,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.109,0.093,0.117,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.011,0.048,0.062,0.077,0,0,1 -0.59,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.106,0.116,0.091,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0201,0.121,0.111,0.109,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.097,0.096,0.101,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0045,0.0201,0.097,0.085,0.114,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.0201,0.072,0.092,0.078,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.09,0.093,0.097,0,0,1 -0.26,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00056,0.0208,0.137,0.091,0.151,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.104,0.08,0.13,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.02,0.106,0.085,0.125,0,0,1 -0.84,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00041,0.011,0.148,0.109,0.136,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.026,0.128,0.114,0.112,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.067,0.28,0.085,0.329,0,0,1 -0.57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2e-05,0.0208,0.193,0.096,0.20062,0,0,1 -0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.084,0.094,0.089,0,0,1 -0.65,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.0201,0.144,0.115,0.125,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.093,0.088,0.106,0,0,1 -0.62,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.154,0.175,0.088,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.02,0.112,0.111,0.101,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00959,0.012,0.126,0.09,0.14,0,1,0 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.091,0.09,0.101,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.143,0.096,0.14864,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00055,0.004,0.09,0.071,0.127,0,0,1 -0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00099,0.019,0.121,0.109,0.111,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.17,0.15,0.113,0,0,1 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.022,0.145,0.101,0.144,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.024,0.122,0.092,0.133,0,0,1 -0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.094,0.088,0.107,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.02,0.099,0.11,0.09,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.018,0.083,0.082,0.101,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.094,0.109,0.086,0,0,1 -0.66,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0036,0.019,0.082,0.113,0.073,0,0,1 -0.77,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.039,0.012,0.048,0.114,0.042,0,0,1 -0.35,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0.0025,0.0201,0.144,0.152,0.095,0,0,1 -0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.023,0.018,0.087,0.096,0.091,0,1,0 -0.31,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.124,0.096,0.129,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0022,0.0201,0.087,0.08,0.109,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.027,0.101,0.11,0.092,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.0201,0.07,0.067,0.104,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.133,0.107,0.124,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.012,0.088,0.069,0.128,0,0,1 -0.42,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.0208,0.11329,0.096,0.11776,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.069,0.102,0.068,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.02,0.094,0.09,0.104,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.041,0.115,0.096,0.12,0,0,1 -0.46,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.004,0.022,0.123,0.09,0.137,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.0201,0.123,0.099,0.124,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.121,0.121,0.1,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.117,0.104,0.111,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.066,0.077,0.086,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.09,0.08,0.113,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.024,0.164,0.112,0.146,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.11,0.082,0.134,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.022,0.092,0.083,0.111,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.116,0.074,0.157,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.158,0.155,0.102,0,0,1 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.074,0.077,0.096,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.074,0.058,0.125,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0051,0.025,0.132,0.097,0.136,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00041,0.0201,0.117,0.114,0.103,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.0201,0.09,0.068,0.132,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0029,0.0201,0.143,0.091,0.157,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.011,0.119,0.088,0.135,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.02,0.093,0.098,0.095,0,0,1 -0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00058,0.009,0.096,0.076,0.126,0,0,1 -0.57,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.025,0.066,0.091,0.073,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.09,0.082,0.11,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0005,0.018,0.111,0.083,0.134,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.08,0.075,0.107,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.078,0.07,0.111,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.0201,0.105,0.083,0.127,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.017,0.098,0.096,0.10187,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.024,0.102,0.102,0.1,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0036,0.02,0.084,0.078,0.108,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.098,0.093,0.105,0,0,1 -0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.098,0.091,0.108,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.015,0.097,0.071,0.136,0,0,1 -0.45,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.114,0.081,0.141,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.028,0.118,0.116,0.101,0,0,1 -0.65,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,3e-05,0.022,0.146,0.104,0.138,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0008,0.022,0.091,0.079,0.115,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.101,0.077,0.131,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0469,0.172,0.087,0.198,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.123,0.097,0.127,0,0,1 -0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.11,0.087,0.126,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.125,0.078,0.16,0,0,1 -0.46,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.135,0.104,0.129,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.0201,0.117,0.09,0.13,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.013,0.107,0.085,0.126,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0018,0.0201,0.121,0.099,0.122,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.115,0.074,0.155,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.0201,0.13,0.112,0.116,0,0,1 -0.72,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.001,0.014,0.12,0.094,0.128,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.0096,0.06,0.116,0.051,1,0,0 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.077,0.083,0.093,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.023,0.083,0.081,0.102,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.017,0.109,0.103,0.106,0,1,0 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.056,0.086,0.065,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.127,0.094,0.135,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.096,0.079,0.122,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.106,0.093,0.114,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0033,0.0201,0.113,0.093,0.122,0,0,1 -0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00044,0.011,0.066,0.1,0.066,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.086,0.094,0.091,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.096,0.079,0.122,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.082,0.093,0.088,0,0,1 -0.56,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00046,0.019,0.103,0.104,0.097,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.11329,0.096,0.11776,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.104,0.095,0.109,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0201,0.077,0.082,0.094,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0025,0.0208,0.079,0.099,0.08,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106,0.006,0.005,0.089,0.0055,1,0,0 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00076,0.0201,0.09,0.067,0.134,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.09,0.089,0.101,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00056,0.0201,0.081,0.09,0.09,0,0,1 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.028,0.111,0.131,0.085,2 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.084,0.078,0.107,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.239,0.1,0.239,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.087,0.088,0.099,3 +0.22,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.134,0.135,0.099,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.123,0.113,0.109,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.036,0.133,0.144,0.093,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.02,0.08,0.096,0.08316,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.014,0.113,0.096,0.11746,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.011,0.104,0.104,0.099,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0.006,0.023,0.087,0.026,1 +0.65,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,3e-05,0.023,0.154,0.09,0.17,3 +0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.022,0.115,0.093,0.124,3 +0.79,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00419,0.011,0.078,0.097,0.081,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.159,0.116,0.136,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.12,0.1,0.12,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.225,0.083,0.273,3 +0.61,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0007,0.022,0.118,0.096,0.12266,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.115,0.083,0.138,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.089,0.074,0.121,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.103,0.092,0.112,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.028,0.122,0.112,0.109,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.018,0.111,0.107,0.104,2 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.016,0.123,0.081,0.152,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.019,0.151,0.097,0.155,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.175,0.103,0.169,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.017,0.074,0.101,0.074,2 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.012,0.102,0.095,0.10669,2 +0.61,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0059,0.02,0.082,0.096,0.08523,3 +0.42,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.125,0.112,0.112,3 +0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00859,0.0201,0.124,0.098,0.126,3 +0.64,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.065,0.082,0.08,3 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.16,0.082,0.195,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.019,0.118,0.102,0.116,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.014,0.109,0.073,0.148,3 +0.75,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0052,0.0201,0.096,0.089,0.108,3 +0.64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0201,0.1,0.084,0.119,3 +0.23,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.136,0.067,0.203,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.14,0.137,0.102,3 +0.53,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0201,0.047,0.093,0.05,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.016,0.133,0.102,0.131,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.017,0.171,0.146,0.117,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.141,0.098,0.144,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.025,0.161,0.126,0.128,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.018,0.101,0.092,0.11,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.026,0.148,0.129,0.115,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.019,0.063,0.058,0.107,3 +0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.0208,0.096,0.102,0.096,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.026,0.105,0.096,0.10914,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.007,0.069,0.096,0.07172,3 +0.7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.071,0.08,0.089,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.119,0.089,0.134,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.015,0.116,0.088,0.132,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.136,0.114,0.119,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.019,0.065,0.094,0.07,2 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.015,0.147,0.06,0.247,3 +0.77,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.012,0.017,0.123,0.103,0.12,2 +0.63,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0032,0.0201,0.16,0.098,0.162,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.0201,0.206,0.081,0.254,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.164,0.136,0.121,3 +0.4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.152,0.15,0.102,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.0201,0.101,0.102,0.099,3 +0.28,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.104,0.103,0.101,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.135,0.101,0.135,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.121,0.108,0.112,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0208,0.107,0.095,0.113,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.022,0.137,0.102,0.135,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.024,0.15,0.096,0.155,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0201,0.163,0.156,0.104,3 +0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.029,0.015,0.061,0.096,0.064,1 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.056,0.076,0.073,3 +0.27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11,0.11,0.1,3 +0.75,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.032,0.015,0.096,0.098,0.098,3 +0.78,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0012,0.012,0.082,0.101,0.081,3 +0.69,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00208,0.025,0.131,0.103,0.126,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.116,0.108,0.107,3 +0.63,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.017,0.093,0.064,0.146,3 +0.62,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.069,0.087,0.079,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.016,0.147,0.089,0.165,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.102,0.093,0.11,3 +0.57,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00057,0.027,0.189,0.135,0.14,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.029,0.019,0.058,0.103,0.056,1 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.023,0.066,0.107,0.062,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.02,0.123,0.096,0.12785,3 +0.7,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.028,0.122,0.109,0.112,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.0201,0.127,0.104,0.121,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.0201,0.12,0.097,0.123,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.023,0.119,0.09,0.132,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.006,0.086,0.087,0.1,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.012,0.076,0.074,0.102,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.114,0.003,0.024,0.061,0.039,1 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.015,0.09,0.079,0.115,3 +0.38,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.016,0.131,0.096,0.13617,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.096,0.095,0.1,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.0469,0.141,0.09,0.156,3 +0.65,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00208,0.017,0.164,0.109,0.151,3 +0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.014,0.131,0.109,0.121,3 +0.42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00909,0.0201,0.12,0.107,0.112,3 +0.42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.0201,0.077,0.097,0.08,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.016,0.089,0.082,0.108,3 +0.26,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00041,0.0201,0.177,0.149,0.119,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.015,0.077,0.115,0.067,3 +0.26,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0012,0.0201,0.131,0.153,0.086,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.011,0.113,0.113,0.1,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.0201,0.115,0.102,0.113,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.048,0.055,0.087,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.093,0.091,0.102,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.032,0.11329,0.096,0.11776,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.071,0.101,0.07,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.099,0.101,0.098,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.027,0.132,0.139,0.096,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.071,0.096,0.0738,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.004,0.083,0.054,0.154,3 +0.64,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00091,0.011,0.17,0.096,0.176,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.025,0.16,0.138,0.116,3 +0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.098,0.112,0.087,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.106,0.115,0.093,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.018,0.107,0.088,0.121,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.015,0.092,0.102,0.09,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.014,0.105,0.101,0.105,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.016,0.139,0.093,0.15,3 +0.79,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.007,0.124,0.102,0.122,3 +0.43,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00052,0.0005,0.046,0.052,0.086,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.081,0.084,0.097,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.017,0.138,0.102,0.136,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.009,0.102,0.097,0.106,2 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.004,0.082,0.058,0.14,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.039,0.085,0.046,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.094,0.09,0.105,3 +0.5219,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.02,0.113,0.108,0.104,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.123,0.101,0.121,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.159,0.18,0.088,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.16,0.178,0.09,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00072,0.0201,0.131,0.091,0.143,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.007,0.084,0.07,0.121,2 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0.003,0.005,0.116,0.004,1 +0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00055,0.017,0.11,0.107,0.102,3 +0.51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.104,0.104,0.098,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.0201,0.074,0.099,0.075,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00103,0.02,0.098,0.095,0.103,3 +0.82,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.009,0.111,0.096,0.11538,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.015,0.103,0.11,0.093,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0201,0.114,0.131,0.087,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.095,0.095,0.1,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.083,0.076,0.108,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.096,0.101,0.095,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.0005,0.091,0.097,0.093,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.01,0.128,0.107,0.119,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.005,0.077,0.11,0.07,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.082,0.095,0.086,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.008,0.099,0.108,0.092,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.131,0.094,0.138,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.098,0.076,0.13,3 +0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.123,0.102,0.12,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.125,0.09,0.138,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00829,0.019,0.095,0.116,0.081,2 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.014,0.12,0.085,0.141,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.0201,0.098,0.063,0.156,3 +0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.014,0.101,0.088,0.115,3 +0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.053,0.278,0.078,0.356,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.087,0.084,0.103,3 +0.63,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,9e-05,0.049,0.221,0.093,0.237,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.123,0.089,0.139,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.107,0.093,0.115,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.145,0.104,0.137,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.017,0.116,0.09,0.128,2 +0.85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.197,0.0096,0.03121,0.102,0.03042,1 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.096,0.091,0.105,3 +0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.123,0.104,0.116,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.058,0.084,0.068,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197,0.0096,0.014,0.062,0.023,1 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.112,0.114,0.098,3 +0.49,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.0201,0.09,0.092,0.098,3 +0.22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0201,0.159,0.104,0.153,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00076,0.008,0.096,0.086,0.111,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0.004,0.0029,0.12,0.0024,1 +0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.0201,0.147,0.114,0.129,3 +0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.008,0.103,0.089,0.116,3 +0.7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.01,0.077,0.072,0.107,3 +0.75,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.091,0.079,0.114,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.1,0.086,0.117,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.105,0.074,0.143,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.093,0.077,0.121,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.113,0.116,0.096,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.082,0.089,0.091,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.142,0.096,0.149,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.097,0.085,0.115,3 +0.56,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.098,0.086,0.115,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.097,0.1,0.096,3 +0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.106,0.113,0.094,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.008,0.061,0.098,0.062,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.02,0.13,0.102,0.128,3 +0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0115,0.01,0.128,0.096,0.133,2 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00101,0.025,0.125,0.102,0.122,3 +0.75,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0201,0.102,0.116,0.087,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.028,0.105,0.096,0.10914,3 +0.57,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.105,0.094,0.111,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.079,0.074,0.107,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.037,0.046,0.092,0.051,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.091,0.088,0.103,3 +0.5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0055,0.016,0.044,0.108,0.04,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.016,0.098,0.089,0.11,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.081,0.085,0.095,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.027,0.163,0.104,0.156,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.119,0.09,0.132,3 +0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0044,0.024,0.115,0.114,0.101,3 +0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.12,0.098,0.122,3 +0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0201,0.139,0.104,0.134,3 +0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.1,0.095,0.106,3 +0.77,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0019,0.016,0.114,0.099,0.114,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.098,0.104,0.094,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.11329,0.096,0.11776,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2e-05,0.0201,0.127,0.095,0.134,3 +0.56,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0.00047,0.0201,0.125,0.104,0.119,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.038,0.146,0.142,0.103,3 +0.18,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00074,0.023,0.143,0.115,0.124,3 +0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0037,0.028,0.19,0.14,0.136,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.116,0.098,0.118,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.138,0.084,0.165,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.108,0.08,0.134,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.119,0.111,0.107,3 +0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0201,0.118,0.111,0.106,3 +0.35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0011,0.028,0.127,0.158,0.08,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.079,0.096,0.08212,3 +0.5,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0201,0.157,0.12,0.131,3 +0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.015,0.096,0.084,0.114,3 +0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.118,0.102,0.116,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.019,0.162,0.107,0.151,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.1,0.093,0.107,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.126,0.113,0.112,3 +0.35,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.077,0.096,0.08004,3 +0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.012,0.093,0.125,0.074,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0.003,0.00839,0.101,0.00829,1 +0.16,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.019,0.106,0.104,0.104,3 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.143,0.096,0.14864,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.025,0.114,0.116,0.097,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.101,0.113,0.09,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.42,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00889,0.013,0.075,0.074,0.102,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.014,0.116,0.095,0.123,3 +0.6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.069,0.132,0.096,0.13721,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.082,0.101,0.082,3 +0.36,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.03,0.071,0.085,0.084,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.013,0.108,0.096,0.11226,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.133,0.083,0.161,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.084,0.104,0.08,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.138,0.121,0.114,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.091,0.08,0.114,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.02,0.112,0.097,0.115,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.157,0.189,0.083,3 +0.2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.02,0.092,0.103,0.089,3 +0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.007,0.101,0.084,0.12,3 +0.66,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.00469,0.013,0.145,0.096,0.15072,3 +0.28,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.003,0.0208,0.136,0.096,0.14137,3 +0.44,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.172,0.099,0.174,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.1,0.08,0.123,3 +0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001,0.019,0.13,0.121,0.107,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.009,0.125,0.104,0.119,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.106,0.095,0.111,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.012,0.097,0.097,0.1,3 +0.57,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.0208,0.113,0.101,0.112,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.046,0.088,0.052,3 +0.61,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.0201,0.18,0.093,0.194,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.0201,0.166,0.128,0.13,3 +0.56,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.003,0.015,0.103,0.08,0.128,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.104,0.104,0.098,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.025,0.111,0.125,0.088,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.133,0.089,0.149,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00083,0.029,0.123,0.095,0.13,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.022,0.162,0.104,0.156,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.081,0.076,0.106,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.025,0.081,0.073,0.112,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.01,0.111,0.085,0.131,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.029,0.104,0.095,0.11,3 +0.85,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00055,0.0201,0.024,0.111,0.022,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.065,0.077,0.085,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.5,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.067,0.007,0.08,0.107,0.074,3 +0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.1,0.091,0.11,3 +0.29,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0.02,0.017,0.079,0.116,0.068,2 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.0201,0.093,0.101,0.093,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.115,0.085,0.136,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.135,0.069,0.196,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.014,0.127,0.111,0.114,2 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.116,0.101,0.115,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.138,0.089,0.154,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.055,0.166,0.121,0.138,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0016,0.017,0.102,0.089,0.115,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.123,0.093,0.133,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.017,0.123,0.095,0.13,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.075,0.078,0.096,3 +0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.031,0.119,0.08,0.149,3 +0.41,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.0031,0.012,0.144,0.103,0.139,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.135,0.094,0.145,3 +0.43,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.029,0.128,0.087,0.148,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.147,0.097,0.152,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.073,0.077,0.095,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.182,0.15,0.121,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.0201,0.103,0.087,0.118,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.139,0.096,0.14449,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0201,0.107,0.1,0.108,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.006,0.022,0.111,0.02,1 +0.33,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0.0012,0.022,0.117,0.094,0.126,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.062,0.11329,0.096,0.11776,3 +0.58,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.022,0.078,0.097,0.079,3 +0.43,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0201,0.117,0.077,0.151,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.101,0.108,0.094,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.118,0.088,0.133,3 +0.79,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.003,0.092,0.044,0.206,3 +0.72,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.01,0.053,0.061,0.087,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.033,0.157,0.128,0.123,3 +0.35,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.115,0.096,0.121,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0052,0.018,0.107,0.102,0.104,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.026,0.119,0.104,0.114,3 +0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.006,0.124,0.096,0.129,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.032,0.136,0.091,0.149,3 +0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.024,0.155,0.113,0.137,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.007,0.076,0.075,0.102,3 +0.39,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0071,0.017,0.106,0.094,0.114,2 +0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.027,0.108,0.072,0.149,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.098,0.096,0.10187,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.025,0.06,0.091,0.065,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.094,0.077,0.123,3 +0.86,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.012,0.128,0.094,0.137,3 +0.56,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0018,0.01,0.112,0.098,0.113,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.086,0.109,0.079,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00038,0.034,0.144,0.126,0.114,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.08,0.086,0.093,3 +0.41,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,6e-05,0.0201,0.159,0.094,0.169,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.147,0.116,0.127,3 +0.7,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0.0095,0.005,0.099,0.058,0.169,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.017,0.152,0.113,0.135,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.028,0.148,0.149,0.099,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.142,0.104,0.135,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.029,0.136,0.12,0.114,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.015,0.084,0.102,0.082,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.159,0.104,0.153,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.024,0.058,0.098,0.059,1 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00075,0.0208,0.129,0.104,0.122,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00085,0.0201,0.196,0.173,0.113,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.102,0.093,0.11,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.123,0.102,0.12,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.026,0.108,0.096,0.113,3 +0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0051,0.024,0.105,0.131,0.08,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0201,0.093,0.099,0.093,3 +0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.022,0.116,0.103,0.112,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.02,0.108,0.09,0.119,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.026,0.144,0.143,0.101,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.126,0.115,0.11,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.115,0.121,0.095,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.016,0.095,0.085,0.112,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.108,0.086,0.125,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.016,0.104,0.107,0.097,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.12,0.116,0.102,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.011,0.104,0.113,0.092,3 +0.21,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.014,0.082,0.099,0.083,2 +0.69,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.136,0.085,0.159,3 +0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00066,0.0201,0.131,0.104,0.124,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.0201,0.098,0.075,0.13,3 +0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.044,0.192,0.091,0.211,3 +0.57,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.024,0.112,0.096,0.11642,3 +0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00081,0.0201,0.126,0.096,0.131,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.028,0.112,0.112,0.099,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.014,0.089,0.113,0.079,3 +0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.0201,0.11,0.103,0.106,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.011,0.118,0.075,0.157,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.011,0.095,0.079,0.12,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.055,0.214,0.091,0.236,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.156,0.095,0.164,3 +0.68,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.125,0.104,0.119,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.06,0.122,0.05,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.125,0.102,0.123,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.0201,0.091,0.093,0.098,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.019,0.133,0.1,0.133,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.026,0.091,0.067,0.135,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.019,0.096,0.094,0.102,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.119,0.094,0.127,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.026,0.09663,0.095,0.10107,2 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.121,0.096,0.12577,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.085,0.1,0.085,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.174,0.098,0.177,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.102,0.094,0.109,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.029,0.122,0.111,0.11,3 +0.6,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0048,0.028,0.1,0.104,0.094,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.017,0.087,0.087,0.1,2 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.023,0.093,0.101,0.092,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.113,0.112,0.101,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.161,0.103,0.157,3 +0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.131,0.099,0.132,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.033,0.119,0.131,0.09,3 +0.3,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00061,0.015,0.082,0.119,0.069,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.016,0.118,0.104,0.111,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.104,0.092,0.113,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.107,0.103,0.104,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.025,0.134,0.109,0.123,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00054,0.023,0.099,0.108,0.092,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.099,0.115,0.086,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.013,0.164,0.1,0.164,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.018,0.117,0.1,0.117,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.113,0.083,0.136,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.017,0.074,0.084,0.088,2 +0.27,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.001,0.0201,0.138,0.091,0.152,3 +0.73,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.024,0.192,0.119,0.162,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00101,0.018,0.095,0.096,0.09875,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.117,0.109,0.107,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.151,0.096,0.157,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.102,0.11,0.093,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0.002,0.014,0.116,0.012,1 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.138,0.124,0.111,3 +0.79,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.01,0.0201,0.125,0.099,0.127,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.107,0.094,0.114,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0029,0.0201,0.11,0.104,0.103,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.106,0.087,0.122,3 +0.19,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0085,0.034,0.134,0.155,0.086,2 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0013,0.016,0.087,0.096,0.09043,3 +0.46,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.103,0.087,0.118,3 +0.56,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0027,0.0201,0.125,0.104,0.119,3 +0.4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.15,0.124,0.121,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0072,0.017,0.074,0.088,0.084,2 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.088,0.103,0.085,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.001,0.0201,0.101,0.083,0.121,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.112,0.101,0.111,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.099,0.099,0.099,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.03,0.096,0.081,0.119,3 +0.23,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0017,0.039,0.12,0.116,0.102,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.017,0.115,0.087,0.133,3 +0.44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.189,0.1,0.19,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.118,0.096,0.12266,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.0208,0.096,0.086,0.112,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.124,0.136,0.091,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.127,0.084,0.151,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.098,0.086,0.115,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.0201,0.117,0.089,0.131,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.145,0.098,0.147,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0201,0.074,0.063,0.116,3 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.022,0.103,0.086,0.12,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.017,0.117,0.104,0.113,2 +0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0046,0.024,0.129,0.102,0.127,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.014,0.082,0.085,0.097,2 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.031,0.124,0.11,0.113,3 +0.53,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.078,0.085,0.091,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.015,0.123,0.096,0.12785,3 +0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.137,0.08,0.172,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.027,0.116,0.087,0.134,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.07,0.066,0.106,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.126,0.097,0.129,3 +0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.0201,0.089,0.096,0.092,3 +0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.126,0.116,0.109,3 +0.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.027,0.099,0.1,0.099,3 +0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00013,0.03,0.122,0.095,0.128,3 +0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.111,0.088,0.127,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.136,0.15,0.09,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.17,0.184,0.092,3 +0.19,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.0032,0.022,0.118,0.099,0.119,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.141,0.104,0.133,3 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0044,0.0201,0.058,0.058,0.1,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.018,0.12,0.096,0.124,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.089,0.074,0.119,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.01,0.067,0.096,0.07,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.017,0.148,0.104,0.141,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.143,0.092,0.155,3 +0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0029,0.0201,0.133,0.097,0.137,3 +0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.1,0.092,0.108,3 +0.72,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.004,0.0201,0.138,0.15,0.092,3 +0.36,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.113,0.101,0.113,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.136,0.098,0.138,3 +0.59,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0076,0.0201,0.106,0.107,0.1,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.165,0.09,0.182,3 +0.5,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00032,0.015,0.138,0.104,0.131,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0208,0.14,0.114,0.123,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.025,0.175,0.123,0.143,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.009,0.062,0.09,0.069,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.177,0.096,0.18399,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.086,0.068,0.126,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.111,0.082,0.137,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.024,0.118,0.101,0.117,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.094,0.079,0.119,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.166,0.135,0.123,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.093,0.069,0.135,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.109,0.104,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.163,0.126,0.13,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.054,0.085,0.063,3 +0.04,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6e-05,0.0201,0.103,0.086,0.12,3 +0.73,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00023,0.0201,0.095,0.116,0.081,3 +0.49,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0201,0.114,0.085,0.135,3 +0.63,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.085,0.075,0.113,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.104,0.096,0.108,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.017,0.139,0.135,0.103,2 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.085,0.082,0.104,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.105,0.096,0.109,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.077,0.085,0.091,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.089,0.074,0.121,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.119,0.098,0.121,3 +0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.02,0.0096,0.042,0.098,0.043,1 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0201,0.141,0.173,0.081,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.017,0.066,0.079,0.084,3 +0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0082,0.016,0.096,0.095,0.10041,2 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.013,0.117,0.116,0.101,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.019,0.158,0.107,0.148,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.118,0.128,0.093,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.11329,0.096,0.123,3 +0.38,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.129,0.116,0.11,3 +0.38,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.099,0.096,0.10291,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0208,0.082,0.086,0.095,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.06,0.082,0.072,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0016,0.0201,0.117,0.107,0.109,3 +0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.027,0.111,0.088,0.127,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.086,0.071,0.12,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.019,0.11329,0.116,0.105,3 +0.4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.0201,0.155,0.093,0.166,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.068,0.169,0.084,0.201,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.077,0.096,0.08004,3 +0.23,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.0201,0.167,0.111,0.15,3 +0.23,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0014,0.028,0.087,0.114,0.087,3 +0.72,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.0201,0.102,0.096,0.102,3 +0.66,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.094,0.078,0.099,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.087,0.094,0.093,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.022,0.097,0.1,0.097,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.093,0.064,0.146,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.077,0.099,0.078,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.02,0.109,0.093,0.117,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106,0.004,0.01,0.111,0.0087,1 +0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.204,0.134,0.152,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.026,0.113,0.113,0.1,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.017,0.091,0.096,0.095,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.016,0.086,0.094,0.092,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.03,0.136,0.1,0.135,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.024,0.107,0.098,0.11,3 +0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0201,0.1,0.104,0.096,3 +0.34,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.105,0.107,0.099,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.101,0.104,0.096,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.105,0.093,0.113,3 +0.54,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.088,0.087,0.1,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.023,0.19,0.107,0.177,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.0201,0.085,0.076,0.111,3 +0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.087,0.084,0.103,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.139,0.124,0.112,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.106,0.094,0.113,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.0201,0.14,0.104,0.132,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0201,0.115,0.087,0.131,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.02,0.104,0.091,0.113,3 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.004,0.11329,0.096,0.11776,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.014,0.111,0.126,0.088,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.143,0.091,0.156,3 +0.64,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00092,0.009,0.039,0.091,0.043,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.123,0.096,0.12785,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.015,0.072,0.095,0.07531,2 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.017,0.117,0.074,0.158,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.017,0.084,0.077,0.109,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.101,0.092,0.11,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.129,0.108,0.12,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.065,0.064,0.103,3 +0.6,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00065,0.0201,0.114,0.095,0.12,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.115,0.104,0.111,3 +0.57,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0048,0.0208,0.085,0.097,0.087,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.187,0.072,0.262,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.102,0.09,0.114,3 +0.77,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.016,0.109,0.095,0.11401,2 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.072,0.075,0.096,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.116,0.099,0.117,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.108,0.096,0.11226,3 +0.51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00073,0.0201,0.11,0.085,0.129,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.014,0.131,0.098,0.133,3 +0.27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.014,0.06,0.125,0.048,3 +0.33,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.013,0.092,0.014,3 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.016,0.149,0.097,0.154,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.015,0.131,0.112,0.117,3 +0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.129,0.087,0.148,3 +0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.083,0.071,0.117,3 +0.56,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0.006,0.0201,0.11,0.103,0.107,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00056,0.024,0.097,0.096,0.10083,3 +0.33,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0062,0.0201,0.051,0.066,0.078,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.032,0.154,0.132,0.117,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0201,0.102,0.084,0.122,3 +0.51,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.0201,0.085,0.096,0.089,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.105,0.087,0.121,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.119,0.076,0.157,3 +0.61,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,2e-05,0.0201,0.113,0.093,0.122,3 +0.72,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0016,0.0208,0.114,0.114,0.1,3 +0.67,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0069,0.017,0.082,0.091,0.09,2 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0201,0.189,0.147,0.128,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.178,0.157,0.114,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.02,0.104,0.093,0.112,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.102,0.087,0.117,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.0201,0.185,0.094,0.197,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.132,0.112,0.118,3 +0.47,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.114,0.111,0.102,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.087,0.099,0.087,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.103,0.099,0.104,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.099,0.103,0.095,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.123,0.11,0.111,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.0201,0.104,0.113,0.092,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0201,0.11,0.096,0.115,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.106,0.092,0.116,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.017,0.063,0.081,0.079,2 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.076,0.078,0.098,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.019,0.099,0.119,0.083,3 +0.71,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0028,0.0201,0.106,0.088,0.12,3 +0.77,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00042,0.013,0.067,0.108,0.062,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.121,0.094,0.129,3 +0.36,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00071,0.017,0.093,0.088,0.106,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.017,0.096,0.068,0.142,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.093,0.097,0.095,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0018,0.0201,0.095,0.098,0.097,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.101,0.084,0.12,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.011,0.069,0.078,0.088,3 +0.8,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00083,0.019,0.116,0.096,0.12058,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.086,0.086,0.099,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.175,0.108,0.161,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.018,0.115,0.1,0.115,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0.017,0.086,0.082,0.105,2 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.017,0.125,0.081,0.153,2 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.101,0.107,0.094,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.068,0.087,0.078,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.015,0.119,0.101,0.118,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.172,0.0096,0.029,0.084,0.035,1 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.101,0.113,3 +0.56,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.0201,0.134,0.066,0.204,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.022,0.091,0.094,0.096,3 +0.75,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0026,0.0201,0.096,0.112,0.086,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.014,0.11,0.078,0.142,3 +0.51,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.12,0.122,0.099,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.124,0.088,0.141,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.028,0.124,0.116,0.106,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.183,0.102,0.179,3 +0.42,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0044,0.019,0.127,0.114,0.111,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.12,0.111,0.108,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0201,0.097,0.09,0.108,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.0201,0.085,0.08,0.106,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.1,0.103,0.096,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.015,0.172,0.115,0.149,3 +0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.0208,0.12,0.109,0.11,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.0201,0.113,0.104,0.107,3 +0.45,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.0419,0.183,0.078,0.235,3 +0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.114,0.008,0.00406,0.104,0.00384,1 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.023,0.212,0.134,0.158,3 +0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.018,0.109,0.097,0.113,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.017,0.088,0.092,0.096,3 +0.42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.172,0.101,0.172,3 +0.42,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.031,0.136,0.1,0.136,3 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.016,0.129,0.099,0.13,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.119,0.112,0.107,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.11329,0.096,0.11776,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.017,0.111,0.098,0.113,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.145,0.151,0.096,3 +0.78,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.0201,0.115,0.108,0.106,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.011,0.091,0.086,0.105,3 +0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.083,0.093,0.089,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.116,0.104,0.111,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.135,0.119,0.113,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.111,0.132,0.084,3 +0.75,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0043,0.017,0.142,0.112,0.127,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.081,0.085,0.095,3 +0.25,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.018,0.093,0.099,0.094,3 +0.25,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.034,0.0096,0.014,0.103,0.013,1 +0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.027,0.159,0.092,0.173,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.0201,0.115,0.097,0.117,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.062,0.094,0.063,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.134,0.114,0.117,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.121,0.138,0.087,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.105,0.094,0.112,3 +0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.019,0.175,0.123,0.143,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.106,0.097,0.11,2 +0.44,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.064,0.101,0.063,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.087,0.088,0.099,3 +0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.013,0.067,0.096,0.07,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.01,0.155,0.113,0.137,3 +0.42,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.015,0.11,0.096,0.11434,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.075,0.075,0.1,3 +0.31,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.123,0.096,0.12785,3 +0.31,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0036,0.015,0.105,0.08,0.131,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.062,0.064,0.098,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.152,0.151,0.101,3 +0.39,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0011,0.018,0.091,0.094,0.097,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.107,0.107,0.1,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.116,0.1,0.117,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.018,0.11329,0.096,0.11776,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.078,0.093,0.084,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.009,0.1,0.101,0.1,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0201,0.103,0.103,0.1,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.125,0.108,0.115,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.029,0.116,0.096,0.12058,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.138,0.115,0.125,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.0201,0.081,0.091,0.089,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.0201,0.13,0.104,0.123,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.132,0.126,0.105,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.038,0.2,0.076,0.264,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.029,0.15,0.096,0.15592,3 +0.37,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.1,0.086,0.117,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.097,0.092,0.106,3 +0.55,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.092,0.058,0.157,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.017,0.185,0.08,0.231,3 +0.66,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.048,0.004,0.012,0.135,0.00909,1 +0.66,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0027,0.01,0.067,0.083,0.08,3 +0.66,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.001,0.02,0.091,0.095,0.095,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.203,0.091,0.224,3 +0.36,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0201,0.155,0.097,0.159,3 +0.65,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.144,0.13,0.11,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.113,0.097,0.117,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.083,0.081,0.103,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.017,0.097,0.086,0.113,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0201,0.146,0.108,0.136,3 +0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.11329,0.096,0.11776,3 +0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.124,0.111,0.112,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00103,0.0201,0.09,0.102,0.089,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.124,0.101,0.122,3 +0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.134,0.112,0.109,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.102,0.096,0.10602,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.091,0.104,0.087,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.119,0.094,0.128,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.096,0.086,0.112,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.098,0.083,0.118,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.09,0.089,0.102,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.109,0.104,0.104,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.148,0.085,0.174,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.011,0.14,0.09,0.156,3 +0.6,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00208,0.016,0.136,0.096,0.14137,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.112,0.133,0.084,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.132,0.116,0.114,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.016,0.122,0.086,0.141,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.149,0.137,0.109,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.088,0.074,0.12,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.017,0.122,0.107,0.114,3 +0.29,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.023,0.099,0.096,0.104,3 +0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164,0.0096,0.065,0.159,0.041,1 +0.73,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0032,0.0201,0.121,0.088,0.137,3 +0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.018,0.122,0.116,0.104,3 +0.39,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.46,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.141,0.098,0.143,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.08,0.088,0.091,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.104,0.093,0.112,3 +0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.26,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.014,0.036,0.086,0.042,3 +0.22,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.395,0.107,0.369,3 +0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0072,0.013,0.096,0.099,0.097,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0201,0.128,0.102,0.125,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.098,0.089,0.11,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.134,0.128,0.105,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.106,0.098,0.108,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.193,0.104,0.184,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.077,0.087,0.088,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.017,0.113,0.094,0.12,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.124,0.12,0.103,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.014,0.091,0.104,0.087,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.107,0.104,0.101,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.113,0.094,0.12,3 +0.61,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,6e-05,0.026,0.11,0.096,0.11434,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.013,0.05,0.067,0.075,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.086,0.091,0.095,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.118,0.091,0.13,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.104,0.095,0.109,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.074,0.083,0.089,3 +0.52,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00063,0.0201,0.111,0.099,0.113,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.017,0.079,0.082,0.096,2 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.02,0.085,0.104,0.081,3 +0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.032,0.185,0.091,0.206,3 +0.59,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.148,0.109,0.136,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.133,0.1,0.133,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.005,0.11,0.086,0.127,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.121,0.093,0.131,3 +0.32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0075,0.0201,0.109,0.113,0.096,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.019,0.136,0.107,0.127,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.0201,0.075,0.102,0.073,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.02,0.101,0.09,0.112,3 +0.36,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0023,0.0201,0.095,0.091,0.104,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00045,0.014,0.091,0.08,0.114,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.016,0.105,0.086,0.122,3 +0.49,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.068,0.003,0.068,0.088,0.077,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.022,0.13,0.097,0.134,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.018,0.098,0.088,0.112,3 +0.68,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.001,0.0201,0.089,0.084,0.106,3 +0.65,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.098,0.078,0.126,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.106,0.113,0.094,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.088,0.099,0.089,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.121,0.088,0.137,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.006,0.087,0.087,0.1,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.013,0.098,0.103,0.095,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.086,0.095,0.091,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0058,0.027,0.079,0.1,0.079,3 +0.76,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0038,0.027,0.097,0.119,0.081,3 +0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0051,0.016,0.091,0.108,0.085,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.095,0.099,0.096,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.017,0.076,0.095,0.08,2 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0033,0.0201,0.115,0.133,0.086,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.107,0.108,0.099,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.011,0.096,0.094,0.102,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.104,0.099,0.106,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.019,0.091,0.08,0.114,3 +0.7,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0023,0.028,0.09,0.11,0.082,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.142,0.096,0.1476,3 +0.52,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0034,0.023,0.084,0.072,0.117,3 +0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.018,0.12,0.104,0.116,3 +0.2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.026,0.038,0.11,0.035,3 +0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0052,0.011,0.112,0.078,0.143,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.007,0.105,0.085,0.124,3 +0.5219,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.028,0.112,0.084,0.133,3 +0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.024,0.22,0.148,0.149,3 +0.34,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.00232,0.026,0.082,0.102,0.08,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3e-05,0.032,0.123,0.108,0.114,3 +0.34,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3e-05,0.022,0.105,0.085,0.123,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.093,0.103,0.09,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.01,0.065,0.06,0.108,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.0201,0.111,0.09,0.124,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.108,0.099,0.11,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.12,0.103,0.116,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.012,0.023,0.017,0.136,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.02,0.105,0.085,0.125,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.084,0.096,0.088,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4e-05,0.017,0.102,0.09,0.113,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.13,0.085,0.153,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.08,0.091,0.088,3 +0.51,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.019,0.019,0.092,0.084,0.11,2 +0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00088,0.0201,0.125,0.087,0.145,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.083,0.114,3 +0.69,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,9e-05,0.0201,0.131,0.07,0.186,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.0201,0.11,0.097,0.113,3 +0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.038,0.162,0.104,0.155,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.018,0.13,0.091,0.143,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.131,0.092,0.141,3 +0.6,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,4e-05,0.023,0.155,0.07,0.221,3 +0.63,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00889,0.017,0.097,0.088,0.111,2 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.023,0.166,0.084,0.198,3 +0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.035,0.012,0.016,0.086,0.019,1 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.017,0.088,0.099,0.089,2 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0201,0.107,0.086,0.124,3 +0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00015,0.0201,0.173,0.112,0.154,3 +0.63,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.113,0.096,0.11746,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.017,0.081,0.095,0.086,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.018,0.067,0.089,0.072,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.199,0.098,0.204,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0062,0.007,0.055,0.058,0.096,2 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.014,0.161,0.088,0.183,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.11329,0.096,0.11776,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.107,0.101,0.106,3 +0.89,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.014,0.0096,0.03121,0.102,0.03042,1 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.11329,0.096,0.11776,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.017,0.116,0.101,0.115,3 +0.72,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0045,0.0201,0.102,0.094,0.108,3 +0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0068,0.009,0.096,0.101,0.095,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.031,0.153,0.16,0.096,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00018,0.015,0.103,0.096,0.10706,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.024,0.037,0.081,0.045,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.106,0.091,0.117,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.11,0.103,0.107,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11,0.108,0.102,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.123,0.085,0.145,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.044,0.0096,0.031,0.104,0.029,1 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.01,0.103,0.072,0.142,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.076,0.098,0.077,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.106,0.107,0.099,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0023,0.016,0.077,0.104,0.075,3 +0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.36,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.041,0.153,0.086,0.178,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0024,0.016,0.11,0.104,0.105,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.053,0.054,0.098,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.03,0.139,0.098,0.141,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.013,0.146,0.104,0.137,2 +0.73,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0033,0.009,0.09,0.088,0.102,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.132,0.092,0.143,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.135,0.102,0.133,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.013,0.121,0.08,0.152,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.019,0.124,0.108,0.115,3 +0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.116,0.093,0.125,3 +0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.084,0.077,0.11,3 +0.76,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.0201,0.084,0.086,0.097,3 +0.6,1,1,0,0,0,0,1,0,0,1,0,0,0,0,0,7e-05,0.013,0.131,0.093,0.142,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.077,0.085,0.09,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.0201,0.093,0.093,0.1,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00045,0.0201,0.119,0.115,0.104,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.017,0.108,0.08,0.135,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.176,0.093,0.189,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.147,0.134,0.11,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.1,0.098,0.102,3 +0.26,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00088,0.0201,0.119,0.152,0.078,3 +0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.038,0.148,0.096,0.15384,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.015,0.151,0.096,0.15696,3 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.116,0.112,0.103,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.016,0.131,0.095,0.138,3 +0.28,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.0201,0.172,0.171,0.101,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.082,0.092,0.089,3 +0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.048,0.005,0.00419,0.136,0.0031,1 +0.74,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.009,0.104,0.078,0.133,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.123,0.116,0.104,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0044,0.0201,0.136,0.1,0.136,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00829,0.017,0.115,0.086,0.134,2 +0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.011,0.087,0.094,0.093,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.088,0.078,0.113,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.157,0.104,0.148,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.141,0.136,0.104,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.065,0.076,0.086,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.184,0.141,0.13,3 +0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.095,0.098,0.097,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.01,0.079,0.086,0.092,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.101,0.096,0.105,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.11,0.081,0.137,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.057,0.065,0.087,3 +0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.112,0.096,0.116,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.013,0.052,0.083,0.063,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0017,0.0201,0.127,0.094,0.136,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.014,0.095,0.09,0.105,3 +0.38,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0011,0.018,0.081,0.087,0.093,3 +0.63,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0041,0.018,0.1,0.121,0.083,3 +0.57,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.142,0.087,0.163,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.02,0.209,0.096,0.218,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.017,0.085,0.101,0.084,2 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.0201,0.161,0.087,0.185,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.139,0.089,0.156,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.09,0.103,0.087,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.017,0.086,0.102,0.084,2 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.0096,0.033,0.096,0.034,1 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.144,0.125,0.115,3 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0201,0.1,0.091,0.11,3 +0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0025,0.031,0.119,0.123,0.097,3 +0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.062,0.386,0.102,0.378,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.138,0.148,0.093,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.1,0.091,0.11,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.095,0.063,0.151,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.029,0.139,0.093,0.15,3 +0.76,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.083,0.096,0.087,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.133,0.109,0.122,3 +0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.0201,0.127,0.093,0.137,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0201,0.1,0.081,0.122,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.013,0.057,0.096,0.05925,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.011,0.0208,0.075,0.101,0.074,2 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.013,0.108,0.076,0.141,3 +0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.0201,0.125,0.086,0.145,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.149,0.104,0.14,3 +0.33,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.132,0.187,0.071,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.149,0.129,0.116,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.076,0.071,0.107,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0.0005,0.003,0.104,0.003,1 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.085,0.079,0.107,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.01,0.126,0.108,0.117,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.005,0.11329,0.096,0.11776,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.006,0.079,0.054,0.148,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.119,0.101,0.119,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.009,0.112,0.094,0.119,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.081,0.11,0.074,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.015,0.082,0.113,0.073,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.125,0.109,0.114,3 +0.3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.103,0.079,0.13,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.015,0.141,0.104,0.134,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0005,0.02,0.065,0.031,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.0201,0.123,0.096,0.128,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.011,0.105,0.081,0.129,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.162,0.119,0.136,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.017,0.077,0.098,0.078,2 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.08,0.072,0.11,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.0201,0.118,0.087,0.136,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.014,0.088,0.077,0.115,2 +0.53,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0201,0.075,0.047,0.16,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.152,0.099,0.154,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0024,0.013,0.043,0.09,0.048,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00069,0.0201,0.123,0.097,0.128,3 +0.37,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.142,0.123,0.115,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.248,0.143,0.173,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.053,0.116,0.097,0.119,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.038,0.148,0.096,0.15384,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.013,0.127,0.111,0.115,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.14,0.09,0.156,3 +0.3,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.019,0.119,0.083,0.143,3 +0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.107,0.085,0.126,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.055,0.09,0.062,3 +0.74,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.013,0.096,0.075,0.129,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.111,0.102,0.109,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.017,0.148,0.095,0.155,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0028,0.026,0.111,0.087,0.127,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.025,0.173,0.108,0.161,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.143,0.095,0.151,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.1,0.077,0.13,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.015,0.099,0.09,0.11,2 +0.77,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.08,0.09,0.09,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.016,0.124,0.109,0.114,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00019,0.019,0.109,0.097,0.112,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00104,0.025,0.116,0.089,0.131,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.012,0.053,0.079,0.067,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.063,0.089,0.071,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.0201,0.098,0.072,0.135,3 +0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.092,0.063,0.146,3 +0.84,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.004,0.024,0.123,0.096,0.12785,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.011,0.126,0.089,0.142,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.022,0.126,0.096,0.13097,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.005,0.134,0.073,0.183,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.011,0.073,0.079,0.093,3 +0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.018,0.126,0.091,0.138,3 +0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.109,0.089,0.122,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.016,0.093,0.096,0.096,3 +0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.023,0.157,0.104,0.15,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.0208,0.124,0.095,0.131,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.09,0.079,0.114,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.163,0.089,0.182,3 +0.32,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.104,0.096,0.108,3 +0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0029,0.017,0.075,0.097,0.077,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0201,0.074,0.136,0.054,3 +0.17,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.153,0.131,0.116,3 +0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.0201,0.096,0.096,0.1,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.017,0.122,0.091,0.135,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.114,0.096,0.118,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.088,0.082,0.108,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0036,0.018,0.139,0.111,0.125,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.111,0.092,0.12,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.115,0.09,0.129,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.025,0.144,0.119,0.121,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.12,0.109,0.11,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.156,0.102,0.152,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.029,0.101,0.096,0.106,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.029,0.102,0.088,0.116,3 +0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.118,0.104,0.113,3 +0.35,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00039,0.0201,0.196,0.17,0.115,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.0201,0.103,0.112,0.092,3 +0.2,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.002,0.018,0.13,0.101,0.128,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.142,0.12,0.118,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.018,0.11,0.089,0.124,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0201,0.14,0.074,0.189,3 +0.73,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.121,0.091,0.134,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00085,0.0208,0.093,0.096,0.09667,3 +0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00067,0.0201,0.112,0.095,0.118,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.077,0.078,0.1,3 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.015,0.087,0.087,0.1,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.101,0.08,0.126,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0201,0.148,0.087,0.17,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.0201,0.12,0.108,0.11,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.003,0.023,0.085,0.09,0.094,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.009,0.097,0.093,0.104,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.0201,0.139,0.078,0.179,3 +0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.095,0.091,0.118,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.007,0.089,0.072,0.123,3 +0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.019,0.146,0.085,0.172,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.0208,0.1,0.096,0.104,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.099,0.071,0.14,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.0201,0.177,0.091,0.194,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.091,0.079,0.115,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.117,0.099,0.118,3 +0.33,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00879,0.02,0.091,0.082,0.111,3 +0.49,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.183,0.102,0.179,3 +0.72,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00013,0.022,0.112,0.095,0.118,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,9e-05,0.0201,0.172,0.096,0.18,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.131,0.104,0.123,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.009,0.093,0.085,0.109,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.025,0.123,0.1,0.123,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.029,0.132,0.104,0.124,3 +0.38,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.146,0.141,0.104,3 +0.33,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.039,0.115,0.104,0.11,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.14,0.11,0.127,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.015,0.113,0.093,0.122,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.026,0.152,0.113,0.135,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.032,0.134,0.098,0.137,3 +0.47,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00049,0.017,0.101,0.075,0.134,3 +0.38,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0025,0.02,0.128,0.112,0.115,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.009,0.105,0.072,0.145,3 +0.27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00036,0.024,0.114,0.1,0.115,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00091,0.018,0.125,0.074,0.169,3 +0.57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00051,0.019,0.136,0.076,0.18,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.026,0.214,0.099,0.216,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.02,0.119,0.096,0.1237,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.024,0.13,0.095,0.137,3 +0.45,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,4e-05,0.0201,0.238,0.109,0.218,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.012,0.108,0.073,0.148,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.02,0.101,0.108,0.094,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.099,0.089,0.111,3 +0.76,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.0018,0.025,0.136,0.104,0.129,3 +0.69,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.014,0.104,0.068,0.153,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.017,0.118,0.099,0.119,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.118,0.093,0.127,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.022,0.095,0.084,0.113,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.098,0.081,0.12,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.169,0.089,0.189,3 +0.43,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.045,0.161,0.108,0.149,3 +0.57,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.0208,0.134,0.095,0.14016,2 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.099,0.115,0.086,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.082,0.095,0.086,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.024,0.189,0.104,0.179,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.013,0.113,0.091,0.124,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.13,0.091,0.143,3 +0.3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00024,0.018,0.188,0.096,0.19542,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.183,0.16,0.114,3 +0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.136,0.088,0.155,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.003,0.057,0.11,0.052,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.022,0.103,0.09,0.114,2 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.105,0.087,0.121,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00096,0.014,0.106,0.09,0.118,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.028,0.124,0.108,0.115,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.141,0.098,0.145,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.081,0.086,0.094,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.071,0.099,0.072,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.019,0.15,0.103,0.146,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.17,0.166,0.102,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.11329,0.096,0.11776,3 +0.61,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.036,0.012,0.109,0.104,0.103,3 +0.2,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.027,0.121,0.096,0.12577,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.13,0.087,0.149,3 +0.37,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,8e-05,0.0201,0.168,0.104,0.162,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0012,0.0201,0.105,0.098,0.107,3 +0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.104,0.099,0.105,3 +0.36,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8e-05,0.045,0.198,0.115,0.172,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.091,0.077,0.118,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.0201,0.108,0.103,0.105,3 +0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.02,0.146,0.095,0.154,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.003,0.061,0.116,0.052,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.01,0.141,0.102,0.138,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.015,0.108,0.107,0.101,3 +0.46,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0017,0.01,0.105,0.1,0.105,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.18,0.146,0.123,3 +0.64,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.015,0.131,0.108,0.121,3 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.014,0.127,0.096,0.132,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.017,0.127,0.097,0.131,2 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.112,0.104,0.106,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.004,0.106,0.068,0.156,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.082,0.095,0.086,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.007,0.099,0.094,0.105,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.015,0.111,0.073,0.152,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0053,0.011,0.098,0.092,0.107,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.005,0.093,0.075,0.124,3 +0.45,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8e-05,0.0201,0.171,0.088,0.194,3 +0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0201,0.069,0.052,0.13,3 +0.48,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.00072,0.017,0.144,0.108,0.133,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.0208,0.173,0.093,0.186,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.031,0.102,0.075,0.136,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.012,0.068,0.037,0.184,3 +0.46,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.04,0.131,0.1,0.131,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.0208,0.145,0.102,0.142,3 +0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00098,0.015,0.106,0.087,0.122,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.023,0.124,0.082,0.151,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.019,0.12,0.096,0.125,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.104,0.121,0.087,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.03,0.109,0.104,0.103,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.132,0.11,0.12,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.079,0.107,0.074,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0208,0.182,0.103,0.177,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.019,0.11329,0.096,0.11776,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.016,0.128,0.101,0.127,2 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.014,0.096,0.099,0.097,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.0201,0.179,0.079,0.227,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.151,0.114,0.133,3 +0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.024,0.103,0.104,0.097,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.023,0.096,0.065,0.148,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00208,0.019,0.142,0.161,0.088,3 +0.19,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0.0041,0.026,0.124,0.13,0.095,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.018,0.125,0.074,0.169,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.141,0.075,0.188,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.114,0.095,0.12,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.085,0.093,0.091,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.116,0.114,0.102,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.011,0.131,0.104,0.126,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.016,0.099,0.094,0.105,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.008,0.048,0.07,0.069,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.012,0.108,0.09,0.12,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.017,0.095,0.096,0.099,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0201,0.12,0.093,0.129,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.023,0.11,0.116,0.095,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.155,0.133,0.117,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.006,0.091,0.068,0.134,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.096,0.091,0.106,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.118,0.097,0.12,3 +0.42,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0067,0.016,0.086,0.084,0.102,3 +0.45,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.0201,0.102,0.088,0.116,3 +0.33,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.0201,0.085,0.102,0.083,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.01,0.022,0.081,0.109,0.074,2 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.095,0.097,0.098,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.092,0.086,0.107,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.104,0.094,0.111,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.107,0.111,0.096,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.014,0.076,0.074,0.103,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00021,0.0201,0.104,0.095,0.11,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.02,0.099,0.086,0.115,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.027,0.132,0.17,0.078,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.028,0.092,0.122,0.075,3 +0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.009,0.106,0.114,0.093,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.116,0.081,0.143,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.102,0.071,0.144,3 +0.73,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0064,0.017,0.097,0.087,0.112,2 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.03,0.095,0.134,0.071,3 +0.69,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8e-05,0.024,0.132,0.095,0.139,3 +0.42,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,7e-05,0.022,0.138,0.085,0.162,3 +0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.016,0.091,0.096,0.095,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0208,0.087,0.083,0.105,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.026,0.057,0.094,0.061,1 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00074,0.039,0.148,0.153,0.097,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.0201,0.15,0.16,0.094,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.008,0.073,0.075,0.097,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.088,0.096,0.092,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.009,0.093,0.087,0.107,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.032,0.148,0.114,0.13,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.114,0.095,0.12,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.0096,0.06,0.095,0.063,1 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.02,0.142,0.103,0.138,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.123,0.115,0.107,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.016,0.192,0.116,0.164,3 +0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.6,0.11,0.546,3 +0.46,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0.0053,0.016,0.093,0.091,0.102,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.017,0.123,0.107,0.115,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.125,0.116,0.108,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.11,0.093,0.118,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.038,0.18,0.157,0.115,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00078,0.029,0.137,0.141,0.097,3 +0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0044,0.0201,0.12,0.076,0.158,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.187,0.104,0.178,3 +0.83,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0015,0.0201,0.159,0.098,0.162,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.16,0.098,0.162,3 +0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0201,0.137,0.082,0.167,3 +0.63,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0067,0.015,0.101,0.065,0.155,2 +0.68,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.103,0.097,0.106,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.027,0.09,0.074,0.122,2 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.106,0.1,0.106,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.039,0.007,0.099,0.089,0.111,2 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.015,0.057,0.069,0.083,2 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.017,0.098,0.084,0.117,2 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.017,0.13,0.102,0.128,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.091,0.104,0.088,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.182,0.131,0.14,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,9e-05,0.019,0.16,0.08,0.2,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.022,0.123,0.109,0.113,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.023,0.069,0.091,0.076,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00028,0.0201,0.114,0.094,0.121,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.039,0.186,0.094,0.198,3 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.026,0.157,0.109,0.144,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00012,0.007,0.053,0.096,0.05509,3 +0.4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.138,0.095,0.145,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.122,0.099,0.123,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.012,0.133,0.094,0.142,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.063,0.088,0.072,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.127,0.12,0.106,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.09,0.089,0.101,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.093,0.077,0.121,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.028,0.181,0.126,0.144,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.023,0.076,0.086,0.088,3 +0.75,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00073,0.022,0.106,0.074,0.143,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.034,0.135,0.104,0.129,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.012,0.097,0.091,0.107,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.018,0.122,0.066,0.185,3 +0.38,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.023,0.122,0.096,0.12681,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.103,0.12,0.086,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.66,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,8e-05,0.01,0.141,0.075,0.188,3 +0.84,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.137,0.11,0.125,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.101,0.081,0.125,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.028,0.113,0.116,0.096,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.001,0.037,0.052,0.071,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.011,0.105,0.087,0.121,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.023,0.091,0.099,0.092,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.023,0.126,0.1,0.126,3 +0.44,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0032,0.025,0.088,0.102,0.086,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8e-05,0.022,0.13,0.091,0.143,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.142,0.101,0.141,3 +0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.033,0.13,0.121,0.107,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.017,0.081,0.096,0.084,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.109,0.082,0.133,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.029,0.165,0.112,0.147,3 +0.64,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0022,0.023,0.113,0.069,0.164,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0019,0.022,0.126,0.097,0.13,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.144,0.109,0.132,3 +0.2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.031,0.135,0.116,0.115,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.066,0.078,0.085,3 +0.41,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.02,0.086,0.086,0.1,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.135,0.107,0.126,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.012,0.089,0.09,0.099,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.011,0.092,0.084,0.11,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.011,0.138,0.08,0.173,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.028,0.11329,0.096,0.11776,3 +0.66,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.029,0.145,0.125,0.116,3 +0.51,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.029,0.044,0.113,0.039,3 +0.47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0012,0.027,0.082,0.104,0.078,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00011,0.026,0.118,0.093,0.127,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.023,0.102,0.103,0.099,3 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.078,0.076,0.103,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.122,0.103,0.118,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.023,0.134,0.1,0.134,3 +0.02,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.076,0.257,0.096,0.268,3 +0.79,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0027,0.012,0.1,0.093,0.108,3 +0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.061,0.187,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.09,0.091,0.099,3 +0.49,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0037,0.02,0.053,0.071,0.075,3 +0.46,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0025,0.015,0.069,0.09,0.077,3 +0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.0208,0.111,0.089,0.125,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.106,0.098,0.108,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.017,0.017,0.112,0.116,0.097,2 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.108,0.071,0.152,3 +0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.022,0.092,0.071,0.13,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0201,0.098,0.099,0.099,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.01,0.117,0.119,0.098,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.0201,0.091,0.099,0.092,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.029,0.123,0.103,0.119,3 +0.71,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0043,0.013,0.055,0.083,0.066,3 +0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.022,0.0096,0.065,0.115,0.057,1 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.035,0.12,0.116,0.102,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0006,0.019,0.104,0.101,0.103,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.023,0.09,0.098,0.092,2 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.022,0.132,0.093,0.142,3 +0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.022,0.105,0.088,0.119,3 +0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00012,0.023,0.106,0.092,0.115,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00063,0.024,0.094,0.093,0.101,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.0201,0.119,0.057,0.209,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.025,0.131,0.116,0.11,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.105,0.1,0.105,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.025,0.157,0.097,0.162,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.09,0.09,0.1,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.109,0.138,0.079,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.012,0.106,0.123,0.086,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.02,0.087,0.115,0.076,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.127,0.128,0.099,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.026,0.129,0.142,0.091,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.003,0.033,0.064,0.052,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00097,0.027,0.069,0.052,0.133,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.098,0.128,0.077,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.026,0.063,0.074,0.085,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.019,0.104,0.097,0.107,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.085,0.083,0.102,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.108,0.094,0.115,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.025,0.131,0.111,0.118,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.017,0.168,0.114,0.147,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.099,0.06,0.165,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.011,0.112,0.068,0.165,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.013,0.108,0.094,0.115,3 +0.39,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0201,0.163,0.123,0.133,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.023,0.087,0.112,0.078,2 +0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0201,0.113,0.091,0.125,3 +0.34,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0001,0.031,0.03,0.089,0.034,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00035,0.008,0.07,0.083,0.084,3 +0.33,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.012,0.015,0.086,0.1,0.086,2 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.022,0.133,0.092,0.145,3 +0.69,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0035,0.013,0.07,0.092,0.076,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.112,0.089,0.126,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.006,0.103,0.101,0.102,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.148,0.113,0.131,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.114,0.09,0.126,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0201,0.14,0.092,0.152,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.436,0.0096,0.012,0.101,0.012,1 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0201,0.108,0.084,0.129,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.122,0.114,0.107,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.135,0.098,0.138,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.023,0.11329,0.096,0.11776,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.033,0.153,0.119,0.129,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.014,0.115,0.091,0.126,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.015,0.095,0.091,0.104,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.02,0.142,0.115,0.123,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.017,0.104,0.095,0.10878,2 +0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.02,0.108,0.097,0.111,3 +0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.017,0.087,0.089,0.098,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.075,0.096,0.07796,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.004,0.08,0.057,0.14,3 +0.67,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0031,0.0201,0.118,0.101,0.117,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.006,0.152,0.075,0.203,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0.049,0.037,0.078,0.047,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.015,0.09,0.097,0.093,3 +0.34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00038,0.019,0.137,0.082,0.167,3 +0.61,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0048,0.017,0.105,0.107,0.098,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.102,0.104,0.096,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.12,0.088,0.136,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.156,0.099,0.158,3 +0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.019,0.068,0.103,0.066,3 +0.17,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.0201,0.118,0.062,0.19,3 +0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.024,0.15,0.116,0.127,3 +0.78,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.017,0.107,0.108,0.099,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.022,0.098,0.114,0.086,3 +0.66,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0024,0.0201,0.174,0.116,0.15,3 +0.76,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.033,0.024,0.064,0.116,0.055,1 +0.26,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.023,0.101,0.114,0.089,2 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.012,0.101,0.107,0.094,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00047,0.024,0.092,0.072,0.128,3 +0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00027,0.0208,0.092,0.104,0.088,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.081,0.089,0.091,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.007,0.058,0.067,0.087,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.094,0.08,0.118,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.09,0.08,0.113,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.023,0.08,0.064,0.125,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.011,0.11,0.084,0.131,2 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.097,0.096,0.10083,3 +0.72,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0041,0.019,0.085,0.099,0.085,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0201,0.105,0.104,0.101,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.037,0.201,0.097,0.207,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00067,0.0201,0.108,0.099,0.109,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.089,0.11,0.081,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.025,0.082,0.116,0.07,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.017,0.076,0.095,0.08,2 +0.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.039,0.11329,0.096,0.11776,3 +0.03,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.077,0.076,0.101,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.089,0.082,0.109,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.0096,0.057,0.108,0.053,1 +0.87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.096,0.08,0.12,3 +0.83,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0027,0.013,0.1,0.083,0.121,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.013,0.113,0.084,0.135,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.08,0.1,0.08,3 +0.39,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.077,0.065,0.118,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.156,0.096,0.16216,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.016,0.091,0.104,0.088,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.017,0.123,0.111,0.111,2 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.017,0.111,0.085,0.131,2 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.063,0.057,0.111,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.115,0.071,0.162,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.125,0.112,0.112,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.011,0.129,0.08,0.162,3 +0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0062,0.007,0.084,0.073,0.115,2 +0.64,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0033,0.008,0.088,0.067,0.131,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.1,0.104,0.094,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0029,0.0201,0.104,0.087,0.12,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.103,0.086,0.12,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.015,0.128,0.089,0.144,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.095,0.098,0.097,3 +0.49,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.003,0.022,0.091,0.086,0.105,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.007,0.123,0.073,0.168,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.1,0.089,0.112,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.132,0.076,0.174,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0208,0.127,0.101,0.126,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.111,0.104,0.107,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.018,0.097,0.085,0.114,3 +0.61,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0074,0.012,0.086,0.096,0.09,3 +0.42,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00012,0.013,0.093,0.067,0.139,3 +0.29,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00019,0.017,0.147,0.096,0.1528,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.026,0.136,0.115,0.118,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.033,0.082,0.089,0.092,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0208,0.116,0.067,0.173,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.09,0.087,0.103,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.084,0.078,0.108,3 +0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.016,0.12,0.095,0.12552,2 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.104,0.09,0.116,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.014,0.077,0.07,0.11,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.119,0.092,0.129,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.078,0.065,0.121,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.077,0.063,0.122,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.015,0.092,0.085,0.108,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.019,0.122,0.056,0.218,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.098,0.088,0.111,3 +0.15,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.088,0.074,0.119,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.014,0.137,0.081,0.169,3 +0.47,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0052,0.0201,0.098,0.074,0.132,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.08,0.096,0.08316,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.01,0.084,0.052,0.162,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.137,0.119,0.115,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.009,0.116,0.045,0.258,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.019,0.088,0.102,0.086,2 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.0201,0.081,0.094,0.086,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.025,0.094,0.094,0.1,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.012,0.107,0.086,0.122,3 +0.7,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0019,0.013,0.136,0.08,0.17,3 +0.47,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.109,0.089,0.123,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.073,0.01,0.025,0.099,0.025,1 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00063,0.016,0.107,0.093,0.115,3 +0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0017,0.011,0.064,0.076,0.084,3 +0.69,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.001,0.054,0.071,0.076,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.124,0.049,0.253,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.028,0.118,0.097,0.122,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0049,0.009,0.099,0.078,0.127,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.098,0.095,0.103,3 +0.63,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0032,0.017,0.087,0.075,0.116,3 +0.36,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0029,0.02,0.096,0.091,0.106,3 +0.63,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.019,0.186,0.096,0.19334,3 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0201,0.137,0.074,0.185,3 +0.45,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0019,0.018,0.129,0.063,0.205,3 +0.49,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.114,0.072,0.158,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.003,0.1,0.087,0.115,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.007,0.131,0.074,0.177,3 +0.59,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0078,0.017,0.089,0.085,0.105,2 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.115,0.119,0.097,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.099,0.083,0.119,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.019,0.125,0.097,0.129,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.151,0.102,0.148,3 +0.26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.018,0.147,0.079,0.185,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.025,0.089,0.095,0.094,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.012,0.09,0.086,0.105,2 +0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.0208,0.108,0.092,0.117,3 +0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0064,0.023,0.085,0.104,0.08,2 +0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.061,0.182,0.1,0.182,3 +0.54,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.184,0.109,0.169,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.027,0.129,0.095,0.136,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.0208,0.118,0.104,0.112,2 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.015,0.073,0.096,0.07587,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.093,0.082,0.113,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.024,0.1,0.096,0.10395,3 +0.6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0017,0.026,0.113,0.09,0.126,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.082,0.074,0.111,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.023,0.236,0.102,0.231,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.0201,0.111,0.096,0.116,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.15,0.104,0.142,3 +0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.222,0.173,0.128,3 +0.27,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00026,0.0201,0.142,0.134,0.106,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.016,0.089,0.069,0.129,2 +0.31,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00014,0.01,0.103,0.066,0.156,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.098,0.09,0.109,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.01,0.151,0.07,0.216,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.102,0.08,0.128,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.094,0.094,0.1,2 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.091,0.084,0.108,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.0201,0.081,0.057,0.142,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.009,0.083,0.065,0.128,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.032,0.146,0.12,0.122,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.024,0.088,0.062,0.142,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.093,0.078,0.119,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.107,0.093,0.115,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.026,0.054,0.102,0.053,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.097,0.085,0.114,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.034,0.133,0.052,0.251,3 +0.76,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.024,0.097,0.099,0.098,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.135,0.101,0.135,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.016,0.122,0.079,0.154,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.12,0.096,0.125,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.1,0.087,0.115,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.072,0.047,0.153,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.017,0.093,0.073,0.127,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0208,0.087,0.104,0.083,3 +0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.0201,0.127,0.111,0.114,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.095,0.091,0.104,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.0201,0.108,0.095,0.114,3 +0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.018,0.097,0.1,0.097,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.018,0.082,0.084,0.099,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.086,0.069,0.126,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.0201,0.116,0.088,0.132,3 +0.41,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00839,0.017,0.094,0.084,0.112,2 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.092,0.085,0.108,3 +0.27,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00078,0.023,0.116,0.073,0.159,3 +0.68,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.054,0.012,0.019,0.104,0.018,3 +0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.018,0.134,0.097,0.138,3 +0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.031,0.156,0.081,0.193,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.024,0.232,0.098,0.237,3 +0.71,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0033,0.019,0.116,0.091,0.128,3 +0.7,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0032,0.01,0.085,0.058,0.144,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.056,0.292,0.098,0.298,3 +0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.027,0.121,0.097,0.125,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.027,0.161,0.092,0.175,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.015,0.091,0.095,0.096,2 +0.49,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.032,0.0208,0.082,0.073,0.112,2 +0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.03,0.141,0.127,0.111,2 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.012,0.1,0.07,0.143,3 +0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0028,0.0201,0.114,0.094,0.122,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.01,0.09,0.077,0.117,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.025,0.11,0.091,0.121,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.031,0.11,0.082,0.134,3 +0.38,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.064,0.256,0.077,0.332,3 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.029,0.158,0.075,0.211,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0022,0.024,0.085,0.055,0.155,3 +0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.03,0.196,0.096,0.204,3 +0.6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.012,0.031,0.093,0.096,0.09667,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.037,0.144,0.091,0.158,3 +0.75,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0018,0.019,0.184,0.096,0.19126,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.029,0.108,0.1,0.108,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0.035,0.013,0.09,0.014,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.008,0.084,0.049,0.171,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.019,0.144,0.088,0.164,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.075,0.057,0.132,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.073,0.064,0.114,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00091,0.0201,0.118,0.085,0.139,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0017,0.026,0.089,0.06,0.148,3 +0.33,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.032,0.143,0.084,0.17,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.086,0.094,0.092,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.091,0.104,0.087,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.03,0.149,0.096,0.15488,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.031,0.156,0.094,0.166,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.019,0.099,0.103,0.096,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.051,0.138,0.113,0.122,3 +0.56,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.115,0.107,0.107,3 +0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.025,0.077,0.095,0.081,2 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.102,0.093,0.11,3 +0.36,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.028,0.131,0.104,0.125,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.105,0.09,0.117,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0208,0.096,0.087,0.11,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0119,0.026,0.079,0.09,0.088,2 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.028,0.118,0.101,0.117,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.074,0.073,0.101,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.084,0.089,0.094,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.111,0.091,0.122,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.026,0.101,0.103,0.098,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.02,0.107,0.084,0.127,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.018,0.099,0.076,0.13,3 +0.83,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.02,0.116,0.071,0.163,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.014,0.067,0.065,0.103,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.02,0.097,0.087,0.112,3 +0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.114,0.081,0.141,3 +0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.053,0.21,0.087,0.241,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.097,0.081,0.12,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.123,0.091,0.135,3 +0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0015,0.029,0.089,0.1,0.089,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.033,0.095,0.091,0.104,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.022,0.155,0.094,0.165,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.019,0.112,0.087,0.129,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.029,0.069,0.101,0.068,3 +0.57,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0036,0.025,0.06,0.094,0.064,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0.0096,0.028,0.107,0.026,1 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.107,0.099,0.108,3 +0.57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00208,0.025,0.134,0.094,0.142,3 +0.77,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.026,0.114,0.088,0.13,3 +0.36,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.017,0.083,0.058,0.143,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.012,0.078,0.073,0.107,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.02,0.075,0.082,0.092,3 +0.47,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00035,0.026,0.063,0.092,0.069,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.018,0.099,0.104,0.094,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.013,0.062,0.074,0.084,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.011,0.079,0.073,0.108,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.004,0.064,0.032,0.2,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.064,0.067,0.095,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.014,0.066,0.064,0.103,2 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.008,0.084,0.082,0.102,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.017,0.094,0.096,0.09771,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.0201,0.109,0.101,0.108,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.025,0.092,0.095,0.09623,2 +0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.03,0.097,0.114,0.085,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.012,0.088,0.063,0.14,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.017,0.094,0.085,0.111,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.142,0.116,0.121,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.109,0.097,0.112,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.111,0.097,0.114,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.103,0.072,0.143,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.026,0.117,0.096,0.12162,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.007,0.066,0.116,0.056,3 +0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.024,0.13,0.108,0.12,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.019,0.079,0.062,0.127,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00074,0.0208,0.127,0.107,0.119,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.025,0.091,0.087,0.105,2 +0.39,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.118,0.071,0.166,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.022,0.152,0.104,0.145,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.123,0.075,0.164,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.494,0.005,0.012,0.139,0.009,1 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.017,0.09,0.057,0.158,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.0208,0.107,0.093,0.115,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.151,0.073,0.207,3 +0.54,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0.0019,0.023,0.161,0.104,0.155,3 +0.23,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.18,0.43,0.067,0.642,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.107,0.084,0.127,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.129,0.094,0.137,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.026,0.151,0.148,0.102,3 +0.67,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0023,0.027,0.124,0.101,0.123,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.027,0.131,0.099,0.132,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.08,0.108,0.081,3 +0.79,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.02,0.189,0.104,0.18,3 +0.21,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0071,0.029,0.048,0.101,0.048,3 +0.62,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.071,0.072,0.099,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.165,0.099,0.167,3 +0.48,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0012,0.0201,0.105,0.072,0.146,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.152,0.08,0.19,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.133,0.099,0.134,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.025,0.147,0.089,0.165,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.161,0.127,0.127,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.011,0.1,0.082,0.122,2 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00039,0.025,0.12,0.104,0.115,3 +0.76,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7e-05,0.033,0.183,0.1,0.183,3 +0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.086,0.103,0.083,3 +0.49,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,8e-05,0.027,0.157,0.104,0.148,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.126,0.116,0.109,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,6e-05,0.039,0.148,0.101,0.147,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.148,0.114,0.13,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.157,0.124,0.127,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.015,0.12,0.076,0.158,3 +0.37,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.023,0.112,0.087,0.129,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.018,0.093,0.073,0.127,3 +0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.117,0.083,0.141,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.113,0.092,0.123,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.024,0.116,0.08,0.145,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.017,0.107,0.135,0.079,2 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.123,0.104,0.116,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.167,0.093,0.18,3 +0.49,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.039,0.224,0.124,0.181,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.164,0.11,0.149,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.129,0.096,0.13409,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.019,0.123,0.074,0.166,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.098,0.072,0.136,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.023,0.18,0.104,0.173,3 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.02,0.089,0.11,0.081,2 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.024,0.165,0.097,0.17,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.127,0.092,0.138,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.007,0.097,0.085,0.114,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0419,0.179,0.167,0.107,3 +0.52,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0.062,0.0096,0.0025,0.119,0.0025,1 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.146,0.12,0.121,3 +0.49,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.0201,0.126,0.084,0.15,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.007,0.105,0.071,0.148,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.074,0.069,0.107,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.126,0.116,0.109,3 +0.24,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.00094,0.037,0.19,0.195,0.097,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.004,0.042,0.116,0.036,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.01,0.085,0.079,0.107,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.014,0.115,0.094,0.122,2 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.009,0.068,0.096,0.07068,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.02,0.078,0.096,0.08108,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.004,0.048,0.051,0.094,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.014,0.12,0.096,0.12474,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.01,0.05,0.082,0.061,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.012,0.11,0.08,0.138,3 +0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0041,0.012,0.123,0.094,0.131,3 +0.51,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.137,0.084,0.163,3 +0.33,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.138,0.064,0.217,3 +0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0066,0.015,0.111,0.086,0.129,2 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.087,0.098,0.089,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.033,0.11,0.119,0.092,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.02,0.118,0.114,0.103,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.017,0.147,0.089,0.165,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.028,0.099,0.067,0.148,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.0201,0.096,0.083,0.116,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.01,0.139,0.08,0.174,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.101,0.09,0.112,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.08,0.074,0.108,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.104,0.078,0.133,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.106,0.095,0.112,3 +0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0.0201,0.139,0.116,0.118,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.011,0.1,0.064,0.156,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.102,0.096,0.106,3 +0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.019,0.108,0.077,0.14,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0049,0.01,0.122,0.11,0.111,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.02,0.141,0.078,0.181,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.018,0.111,0.081,0.137,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.017,0.101,0.086,0.117,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.017,0.106,0.072,0.147,3 +0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0201,0.116,0.103,0.113,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.028,0.086,0.089,0.097,3 +0.27,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00074,0.02,0.108,0.06,0.18,3 +0.46,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0.0034,0.018,0.123,0.09,0.137,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.393,0.0096,0.015,0.116,0.013,1 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.02,0.08,0.083,0.096,2 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.128,0.096,0.13305,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.011,0.121,0.074,0.164,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.013,0.109,0.092,0.118,3 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.0201,0.095,0.098,0.097,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.02,0.101,0.088,0.115,3 +0.29,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0043,0.037,0.124,0.146,0.085,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.02,0.106,0.09,0.118,3 +0.46,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.023,0.096,0.087,0.11,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.02,0.047,0.075,0.063,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.0096,0.036,0.101,0.036,1 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0208,0.07,0.076,0.092,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.129,0.098,0.132,3 +0.7,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.037,0.013,0.094,0.1,0.094,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.012,0.128,0.092,0.139,3 +0.53,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0011,0.019,0.076,0.067,0.113,3 +0.57,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.079,0.081,0.098,3 +0.25,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0019,0.0208,0.095,0.094,0.101,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.011,0.06,0.09,0.067,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.01,0.169,0.096,0.17567,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.012,0.107,0.095,0.112,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.019,0.09,0.098,0.092,2 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.018,0.093,0.095,0.09728,2 +0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.017,0.076,0.078,0.097,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.017,0.107,0.113,0.095,2 +0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0038,0.019,0.107,0.101,0.106,3 +0.22,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00066,0.022,0.12,0.122,0.098,3 +0.68,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.086,0.093,0.092,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.068,0.109,0.096,0.113,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.024,0.146,0.108,0.135,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.02,0.09,0.09,0.1,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.034,0.093,0.107,0.087,3 +0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.003,0.0208,0.107,0.116,0.092,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.02,0.102,0.097,0.105,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.073,0.078,0.094,2 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.098,0.1,0.098,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0201,0.102,0.096,0.106,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.121,0.102,0.119,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.113,0.09,0.126,3 +0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.005,0.101,0.064,0.158,3 +0.97,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.093,0.089,0.104,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.024,0.25,0.104,0.238,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.079,0.096,0.082,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.027,0.11329,0.096,0.11776,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.112,0.102,0.11,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.024,0.086,0.092,0.094,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.022,0.133,0.095,0.14,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.031,0.061,0.093,0.066,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.034,0.099,0.107,0.093,3 +0.49,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.02,0.0096,0.005,0.1,0.005,1 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.098,0.113,0.087,3 +0.28,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0001,0.095,0.09,0.112,0.08,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.032,0.108,0.104,0.102,3 +0.55,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0.0026,0.024,0.074,0.097,0.076,3 +0.6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00232,0.027,0.071,0.085,0.084,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.028,0.161,0.112,0.144,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.082,0.091,0.09,3 +0.43,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.023,0.081,0.099,0.082,2 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.023,0.096,0.078,0.123,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.029,0.133,0.1,0.133,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.009,0.057,0.061,0.093,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.119,0.104,0.114,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.009,0.05,0.062,0.081,3 +0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0031,0.014,0.096,0.102,0.094,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.009,0.058,0.128,0.045,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.016,0.08,0.064,0.125,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.024,0.093,0.11,0.085,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.016,0.075,0.077,0.097,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.012,0.055,0.074,0.074,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.11,0.087,0.126,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.103,0.072,0.143,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.023,0.103,0.095,0.108,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.03,0.154,0.114,0.135,3 +0.41,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00089,0.023,0.098,0.098,0.1,3 +0.42,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00013,0.0208,0.084,0.075,0.112,3 +0.47,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.075,0.089,0.084,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.0208,0.095,0.107,0.089,2 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.146,0.082,0.178,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0201,0.078,0.098,0.08,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.026,0.095,0.104,0.09,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.117,0.092,0.127,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.025,0.075,0.096,0.07796,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.009,0.069,0.074,0.093,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.084,0.063,0.133,3 +0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0054,0.0208,0.102,0.11,0.093,3 +0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.098,0.094,0.104,3 +0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.075,0.082,0.092,3 +0.38,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00058,0.023,0.099,0.096,0.103,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.101,0.103,0.098,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.0208,0.111,0.091,0.122,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.006,0.065,0.066,0.098,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.036,0.161,0.069,0.233,3 +0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.024,0.15,0.11,0.136,3 +0.47,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0012,0.0208,0.105,0.089,0.118,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.027,0.128,0.096,0.13305,3 +0.34,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.01,0.022,0.086,0.091,0.095,2 +0.47,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.0208,0.061,0.089,0.069,3 +0.48,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.038,0.168,0.098,0.171,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.013,0.077,0.094,0.082,2 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.022,0.083,0.096,0.08627,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.099,0.083,0.119,3 +0.67,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.099,0.094,0.105,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038,0.014,0.074,0.098,0.076,2 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.073,0.076,0.096,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0087,0.033,0.138,0.153,0.09,2 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.112,0.104,0.108,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.01,0.081,0.082,0.099,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.108,0.081,0.133,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.01,0.09,0.067,0.134,3 +0.62,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0065,0.017,0.11,0.141,0.078,2 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.093,0.104,0.088,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.074,0.127,0.058,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.111,0.082,0.135,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.013,0.16,0.099,0.162,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0.017,0.005,0.108,0.005,1 +0.61,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.023,0.096,0.072,0.133,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.026,0.157,0.116,0.135,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.023,0.09,0.094,0.096,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.03,0.108,0.113,0.096,3 +0.28,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.029,0.119,0.141,0.084,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.107,0.101,0.106,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0027,0.013,0.105,0.101,0.104,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.018,0.097,0.101,0.096,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.014,0.057,0.072,0.079,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.137,0.115,0.119,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.082,0.108,0.076,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0079,0.024,0.151,0.163,0.093,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.031,0.062,0.094,0.066,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.104,0.094,0.11,3 +0.65,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.027,0.105,0.116,0.091,3 +0.66,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,9e-05,0.034,0.153,0.233,0.066,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0419,0.126,0.11,0.115,3 +0.53,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.075,0.086,0.087,3 +0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.0201,0.161,0.162,0.099,3 +0.61,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.0201,0.115,0.108,0.106,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.0201,0.099,0.103,0.095,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.057,0.041,0.14,3 +0.32,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0016,0.017,0.125,0.096,0.13,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.012,0.083,0.069,0.121,2 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.031,0.132,0.104,0.125,3 +0.59,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.087,0.096,0.091,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0208,0.104,0.091,0.114,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.014,0.089,0.076,0.117,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.136,0.107,0.127,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.033,0.144,0.116,0.122,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.128,0.102,0.125,3 +0.23,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.065,0.245,0.076,0.325,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.059,0.1,0.059,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.024,0.082,0.081,0.102,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.02,0.08,0.077,0.104,3 +0.84,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0009,0.017,0.099,0.079,0.125,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.129,0.086,0.15,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.106,0.096,0.11018,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.099,0.093,0.106,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.093,0.069,0.135,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.024,0.11,0.085,0.129,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00088,0.029,0.068,0.096,0.07068,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.02,0.088,0.091,0.097,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.014,0.067,0.071,0.094,2 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.009,0.094,0.074,0.127,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.011,0.06,0.064,0.094,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.015,0.095,0.067,0.142,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.01,0.079,0.111,0.071,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.011,0.094,0.079,0.119,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.007,0.061,0.046,0.133,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.1,0.087,0.115,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.018,0.11329,0.096,0.079,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.154,0.114,0.135,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0201,0.127,0.089,0.143,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.089,0.116,0.076,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.081,0.088,0.092,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.109,0.097,0.112,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.024,0.117,0.104,0.113,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0208,0.09,0.107,0.084,3 +0.66,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,9e-05,0.022,0.198,0.097,0.204,3 +0.59,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.014,0.155,0.104,0.148,3 +0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.027,0.15,0.109,0.138,2 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.003,0.023,0.051,0.045,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.079,0.113,0.07,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.025,0.208,0.086,0.242,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.075,0.098,0.077,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.022,0.098,0.097,0.101,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00839,0.013,0.068,0.09,0.076,2 +0.3,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.019,0.112,0.077,0.145,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0208,0.079,0.089,0.089,2 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.011,0.106,0.081,0.131,3 +0.47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.094,0.1,0.094,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.092,0.081,0.114,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.027,0.166,0.149,0.111,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.016,0.101,0.087,0.116,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.032,0.138,0.108,0.128,3 +0.7,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0001,0.0208,0.126,0.083,0.152,3 +0.55,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.109,0.097,0.112,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0208,0.088,0.107,0.082,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.078,0.08,0.098,3 +0.44,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.118,0.11,0.107,3 +0.62,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.031,0.108,0.107,0.101,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.11329,0.096,0.11776,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.062,0.009,0.087,0.094,0.092,2 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.114,0.093,0.123,3 +0.31,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0.0027,0.023,0.087,0.116,0.074,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.014,0.056,0.088,0.064,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.027,0.08,0.094,0.085,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.092,0.089,0.103,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.092,0.096,0.096,3 +0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.017,0.076,0.102,0.075,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.008,0.077,0.096,0.08004,3 +0.81,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.006,0.123,0.091,0.135,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.019,0.107,0.085,0.126,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.016,0.085,0.091,0.093,2 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.093,0.109,0.085,3 +0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.015,0.077,0.096,0.08004,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.024,0.104,0.074,0.141,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.023,0.093,0.089,0.104,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.023,0.125,0.095,0.132,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.024,0.158,0.116,0.135,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.023,0.095,0.11,0.086,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0208,0.165,0.1,0.165,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.023,0.152,0.093,0.163,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0027,0.023,0.094,0.094,0.1,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.013,0.063,0.104,0.061,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.025,0.166,0.098,0.169,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.024,0.165,0.1,0.165,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.026,0.157,0.131,0.12,3 +0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0201,0.128,0.087,0.147,3 +0.51,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00046,0.0201,0.186,0.115,0.162,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.024,0.046,0.11,0.042,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.125,0.095,0.132,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.169,0.144,0.117,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.145,0.1,0.145,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.03,0.132,0.135,0.098,3 +0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.025,0.186,0.133,0.14,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.023,0.084,0.098,0.086,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.121,0.125,0.097,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.019,0.138,0.098,0.141,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.086,0.072,0.119,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.008,0.108,0.082,0.132,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.038,0.177,0.175,0.101,3 +0.22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.024,0.181,0.109,0.166,3 +0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7e-05,0.0208,0.094,0.1,0.094,3 +0.81,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.112,0.08,0.14,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.012,0.1,0.07,0.143,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.008,0.102,0.08,0.128,3 +0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.0201,0.224,0.134,0.167,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.022,0.111,0.101,0.11,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.025,0.194,0.108,0.18,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.013,0.106,0.088,0.12,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0201,0.111,0.084,0.132,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0074,0.019,0.101,0.083,0.122,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.083,0.063,0.132,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.022,0.134,0.095,0.141,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2e-05,0.044,0.235,0.092,0.255,3 +0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00094,0.026,0.115,0.111,0.104,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.095,0.09,0.106,3 +0.57,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.006,0.023,0.115,0.096,0.11954,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.025,0.111,0.097,0.114,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.114,0.088,0.13,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.009,0.119,0.091,0.131,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.017,0.113,0.093,0.122,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.005,0.1,0.096,0.104,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.108,0.093,0.116,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.008,0.081,0.085,0.095,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.007,0.078,0.058,0.132,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.007,0.108,0.069,0.156,3 +0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.012,0.094,0.058,0.162,3 +0.24,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,8e-05,0.004,0.058,0.076,0.076,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.105,0.076,0.138,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.003,0.065,0.042,0.155,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.006,0.058,0.073,0.079,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.019,0.094,0.086,0.109,2 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.022,0.107,0.086,0.124,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.023,0.091,0.096,0.095,2 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.013,0.094,0.102,0.092,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.009,0.11,0.088,0.125,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.025,0.094,0.098,0.096,3 +0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.027,0.112,0.1,0.112,3 +0.75,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00037,0.017,0.101,0.077,0.131,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00018,0.026,0.083,0.08,0.104,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.128,0.111,0.115,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.105,0.11,0.095,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.106,0.075,0.141,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.095,0.087,0.109,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.016,0.145,0.097,0.149,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.133,0.096,0.139,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.005,0.076,0.058,0.129,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.013,0.111,0.086,0.128,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00036,0.022,0.161,0.124,0.13,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.029,0.107,0.087,0.123,3 +0.53,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.001,0.0201,0.101,0.102,0.099,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00088,0.0208,0.088,0.085,0.104,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.0201,0.096,0.087,0.11,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.017,0.095,0.095,0.09937,2 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.025,0.18,0.123,0.146,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.024,0.119,0.17,0.07,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.025,0.101,0.098,0.103,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.023,0.082,0.102,0.08,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.025,0.141,0.139,0.101,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.078,0.094,0.083,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.018,0.078,0.101,0.077,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.026,0.106,0.097,0.109,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.11329,0.096,0.11776,3 +0.36,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0026,0.0208,0.095,0.097,0.097,3 +0.7,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0053,0.027,0.103,0.129,0.08,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.019,0.159,0.116,0.137,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.107,0.108,0.099,3 +0.11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.028,0.092,0.097,0.095,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.003,0.07,0.061,0.115,3 +0.28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.007,0.087,0.108,0.081,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.089,0.097,0.092,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.019,0.091,0.095,0.096,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.102,0.09,0.113,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.027,0.123,0.129,0.095,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.025,0.111,0.13,0.085,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.022,0.164,0.135,0.122,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.072,0.104,0.069,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.016,0.058,0.113,0.051,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.11329,0.096,0.11776,3 +0.4,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0.00232,0.0201,0.085,0.112,0.076,3 +0.57,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.024,0.116,0.089,0.13,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.027,0.112,0.103,0.109,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.022,0.108,0.115,0.094,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.019,0.096,0.093,0.103,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.097,0.082,0.118,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.08,0.099,0.081,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.095,0.084,0.113,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.1,0.082,0.122,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.084,0.104,0.081,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.022,0.148,0.122,0.121,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.03,0.114,0.1,0.114,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.139,0.097,0.143,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.083,0.101,0.082,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.018,0.099,0.08,0.124,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.101,0.09,0.112,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00066,0.024,0.087,0.082,0.106,3 +0.47,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00208,0.024,0.106,0.112,0.095,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.014,0.104,0.083,0.125,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.028,0.06,0.095,0.063,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.188,0.181,0.104,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.128,0.093,0.138,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00889,0.012,0.109,0.093,0.117,2 +0.73,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.017,0.059,0.087,0.068,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.012,0.127,0.089,0.143,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.015,0.1,0.087,0.115,2 +0.7,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.006,0.115,0.073,0.158,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.006,0.078,0.084,0.093,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.003,0.08,0.072,0.111,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.028,0.135,0.12,0.113,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106,0.003,0.005,0.111,0.0045,1 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.025,0.056,0.09,0.062,3 +0.84,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.0419,0.151,0.088,0.172,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.103,0.104,0.1,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.025,0.082,0.092,0.089,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.1,0.098,0.102,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.022,0.101,0.104,0.095,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.017,0.092,0.099,0.093,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.01,0.081,0.073,0.111,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.035,0.146,0.11,0.133,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.028,0.158,0.096,0.165,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.14,0.11,0.127,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.131,0.095,0.138,3 +0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.004,0.105,0.08,0.131,2 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.005,0.109,0.077,0.142,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.014,0.02,0.062,0.09,0.069,2 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.031,0.223,0.132,0.169,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.027,0.129,0.11,0.117,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.027,0.176,0.098,0.18,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.152,0.115,0.132,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.115,0.086,0.134,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0201,0.101,0.091,0.111,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.098,0.089,0.11,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.031,0.109,0.109,0.1,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.1329,0.41,0.079,0.519,3 +0.28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.011,0.089,0.093,0.096,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0208,0.11,0.114,0.096,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.03,0.125,0.124,0.101,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.11329,0.096,0.11776,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.109,0.08,0.136,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.096,0.103,0.093,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.083,0.08,0.104,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0201,0.11,0.101,0.109,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.009,0.11,0.087,0.126,3 +0.66,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00089,0.017,0.125,0.098,0.128,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.02,0.144,0.116,0.124,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.016,0.079,0.066,0.12,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.03,0.138,0.124,0.111,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.025,0.117,0.104,0.113,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.0201,0.088,0.094,0.094,3 +0.38,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0031,0.0201,0.134,0.107,0.125,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.003,0.085,0.061,0.139,3 +0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.114,0.103,0.111,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.115,0.098,0.117,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.008,0.08,0.135,0.059,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.02,0.095,0.083,0.115,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.08,0.094,0.085,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.019,0.097,0.093,0.104,2 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.017,0.092,0.103,0.09,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.125,0.104,0.118,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.074,0.095,0.078,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.016,0.028,0.097,0.029,1 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.1,0.087,0.115,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.026,0.108,0.107,0.101,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.064,0.191,0.097,0.197,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0208,0.117,0.096,0.122,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.013,0.11329,0.096,0.11776,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.017,0.005,0.12,0.00415,3 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.033,0.084,0.096,0.08731,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.03,0.093,0.095,0.098,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0029,0.02,0.068,0.088,0.077,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.139,0.098,0.142,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.132,0.113,0.117,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.0201,0.076,0.1,0.076,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.012,0.139,0.109,0.128,2 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.013,0.128,0.104,0.121,3 +0.36,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.04,0.178,0.114,0.156,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.087,0.095,0.092,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.005,0.079,0.063,0.126,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.005,0.06,0.062,0.097,2 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.013,0.072,0.075,0.096,3 +0.34,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.028,0.155,0.1,0.155,3 +0.24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.038,0.096,0.081,0.119,3 +0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0039,0.0201,0.09,0.102,0.088,3 +0.69,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00011,0.0201,0.141,0.09,0.157,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.005,0.104,0.104,0.099,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.178,0.113,0.158,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.011,0.133,0.083,0.16,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.0201,0.234,0.215,0.109,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.059,0.019,0.038,0.113,0.034,1 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.084,0.061,0.139,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.0201,0.05,0.066,0.076,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.143,0.111,0.129,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0012,0.0201,0.072,0.084,0.086,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.138,0.094,0.146,3 +0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.029,0.119,0.112,0.106,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.02,0.134,0.066,0.203,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.116,0.104,0.112,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.014,0.079,0.092,0.086,2 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.008,0.081,0.066,0.123,2 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.018,0.118,0.091,0.13,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.007,0.087,0.091,0.096,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.013,0.086,0.102,0.084,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.014,0.184,0.062,0.297,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.016,0.099,0.082,0.121,3 +0.61,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.118,0.0096,0.018,0.104,0.017,1 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.069,0.093,0.074,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.024,0.117,0.107,0.108,2 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.015,0.118,0.075,0.157,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.01,0.09,0.077,0.117,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.025,0.085,0.092,0.092,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00031,0.029,0.143,0.139,0.103,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.022,0.078,0.104,0.075,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.028,0.142,0.104,0.135,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.014,0.091,0.081,0.112,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.0201,0.165,0.164,0.101,3 +0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0039,0.009,0.09,0.062,0.145,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.0201,0.134,0.102,0.131,3 +0.91,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.082,0.088,0.093,2 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.011,0.064,0.055,0.116,3 +0.87,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.176,0.0096,0.052,0.123,0.042,1 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.078,0.096,0.081,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.112,0.089,0.126,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.213,0.176,0.121,3 +0.49,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0019,0.0201,0.122,0.078,0.156,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.083,0.08,0.104,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.091,0.081,0.112,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.016,0.062,0.088,0.071,2 +0.88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.14,0.114,0.123,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0201,0.105,0.062,0.169,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.047,0.068,0.069,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.093,0.073,0.127,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.097,0.098,0.099,3 +0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0048,0.0201,0.057,0.08,0.071,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.026,0.112,0.101,0.111,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.016,0.069,0.099,0.07,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.017,0.111,0.083,0.134,3 +0.48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.129,0.128,0.101,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.02,0.08,0.07,0.114,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00099,0.023,0.13,0.101,0.129,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.025,0.13,0.086,0.151,3 +0.54,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.031,0.231,0.096,0.241,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.141,0.097,0.145,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.111,0.111,0.1,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.011,0.156,0.101,0.155,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.009,0.092,0.087,0.106,3 +0.28,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.09,0.111,0.081,3 +0.8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0053,0.011,0.097,0.087,0.112,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.025,0.126,0.108,0.117,3 +0.21,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.007,0.024,0.045,0.111,0.041,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.009,0.091,0.054,0.169,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.008,0.082,0.063,0.13,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00023,0.024,0.108,0.103,0.105,3 +0.68,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0.00048,0.03,0.097,0.104,0.092,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.102,0.107,0.095,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.117,0.095,0.123,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.12,0.141,0.085,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.122,0.11,0.111,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.024,0.133,0.129,0.103,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.029,0.138,0.122,0.113,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.104,0.132,0.079,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.016,0.186,0.097,0.191,3 +0.8,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0027,0.02,0.13,0.104,0.124,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.013,0.057,0.069,0.083,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.16,0.115,0.139,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.09,0.087,0.103,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.03,0.161,0.174,0.093,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.111,0.091,0.122,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.121,0.089,0.136,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.01,0.109,0.088,0.124,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0201,0.197,0.089,0.221,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.017,0.107,0.085,0.126,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.017,0.072,0.093,0.077,2 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.109,0.09,0.121,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.12,0.116,0.103,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.097,0.091,0.107,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.024,0.122,0.1,0.122,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.02,0.175,0.104,0.165,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.017,0.072,0.096,0.075,2 +0.2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00046,0.02,0.119,0.11,0.108,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00043,0.0201,0.107,0.098,0.109,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00114,0.0201,0.092,0.093,0.099,3 +0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00075,0.0201,0.129,0.103,0.125,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.098,0.095,0.103,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00112,0.026,0.122,0.095,0.127,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.091,0.089,0.102,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.017,0.067,0.092,0.073,2 +0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.0201,0.162,0.116,0.137,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.191,0.008,0.005,0.103,0.00485,1 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.094,0.092,0.102,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.171,0.092,0.186,3 +0.69,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.086,0.075,0.115,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0201,0.061,0.051,0.12,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.085,0.071,0.12,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.024,0.056,0.043,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.089,0.087,0.102,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0201,0.115,0.108,0.106,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.117,0.086,0.136,3 +0.4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.006,0.02,0.125,0.104,0.12,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.0096,0.043,0.087,0.049,1 +0.69,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.0201,0.098,0.084,0.117,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.025,0.118,0.121,0.098,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.02,0.088,0.084,0.105,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.11,0.099,0.111,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.095,0.092,0.103,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.0201,0.094,0.097,0.097,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.019,0.102,0.1,0.102,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.0201,0.109,0.101,0.108,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.114,0.103,0.111,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.016,0.113,0.088,0.128,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00095,0.02,0.136,0.101,0.134,3 +0.29,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.023,0.102,0.096,0.10602,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.069,0.081,0.085,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.024,0.059,0.088,0.067,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.02,0.104,0.095,0.109,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.017,0.073,0.087,0.084,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.092,0.083,0.111,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.0208,0.106,0.104,0.101,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.0201,0.064,0.076,0.084,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.087,0.112,0.078,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.107,0.116,0.091,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.124,0.108,0.115,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.0201,0.124,0.086,0.144,3 +0.62,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0037,0.014,0.083,0.081,0.102,3 +0.66,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0018,0.0201,0.105,0.108,0.097,3 +0.75,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.091,0.084,0.108,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.156,0.146,0.107,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.25,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.18,0.189,0.095,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.13,0.087,0.149,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0035,0.024,0.095,0.108,0.088,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.009,0.121,0.096,0.126,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.04,0.239,0.09,0.266,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.029,0.119,0.107,0.111,3 +0.48,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.031,0.096,0.092,0.104,3 +0.48,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,7e-05,0.017,0.104,0.096,0.1081,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.117,0.098,0.119,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.013,0.107,0.096,0.11122,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.022,0.096,0.095,0.10041,2 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.126,0.102,0.124,3 +0.74,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0012,0.013,0.095,0.102,0.093,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00022,0.028,0.095,0.11,0.086,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.025,0.115,0.112,0.103,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.094,0.11,0.086,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.074,0.073,0.101,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.0201,0.096,0.099,0.097,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.024,0.126,0.113,0.112,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.146,0.092,0.159,3 +0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.026,0.134,0.096,0.119,3 +0.45,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0011,0.012,0.07,0.098,0.071,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.099,0.085,0.117,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.12,0.101,0.119,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.1,0.095,0.105,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.009,0.122,0.09,0.136,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.126,0.109,0.116,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.119,0.096,0.1237,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.109,0.11,0.099,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.015,0.168,0.111,0.151,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00075,0.022,0.106,0.088,0.12,3 +0.66,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.006,0.02,0.091,0.107,0.085,3 +0.34,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0058,0.011,0.047,0.099,0.048,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.115,0.112,0.103,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.084,0.083,0.101,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.178,0.202,0.088,3 +0.32,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0016,0.0201,0.17,0.173,0.098,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0208,0.109,0.114,0.096,3 +0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.034,0.219,0.151,0.145,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.098,0.081,0.121,3 +0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.148,0.107,0.138,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.092,0.103,0.089,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.069,0.09,0.077,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.087,0.08,0.109,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.003,0.018,0.115,0.101,0.114,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.0201,0.074,0.058,0.128,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.072,0.062,0.116,3 +0.37,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00048,0.0201,0.04,0.052,0.077,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.109,0.067,0.163,3 +0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0208,0.099,0.073,0.136,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.113,0.092,0.123,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.018,0.097,0.096,0.10083,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.024,0.122,0.104,0.117,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.026,0.106,0.109,0.097,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.1,0.092,0.109,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.0201,0.11,0.081,0.136,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.031,0.105,0.102,0.103,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.009,0.099,0.099,0.1,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.095,0.084,0.113,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0201,0.123,0.102,0.121,3 +0.44,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0201,0.148,0.095,0.156,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.027,0.163,0.114,0.143,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.033,0.139,0.1,0.139,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.161,0.088,0.183,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.126,0.103,0.122,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0.0096,0.051,0.104,0.049,1 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.096,0.096,0.1,3 +0.56,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.101,0.079,0.128,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.158,0.091,0.174,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.034,0.126,0.122,0.103,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.097,0.113,0.086,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.114,0.045,0.253,3 +0.39,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.028,0.148,0.109,0.136,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0201,0.093,0.077,0.121,3 +0.81,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.112,0.091,0.123,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.126,0.081,0.156,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0.0096,0.029,0.103,0.028,1 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.107,0.1,0.107,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.101,0.09,0.112,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.03,0.105,0.099,0.106,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.118,0.1,0.118,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.033,0.13,0.12,0.108,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.024,0.113,0.108,0.105,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.106,0.074,0.143,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.0201,0.244,0.216,0.113,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.084,0.1,0.084,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.01,0.101,0.116,0.087,3 +0.71,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00989,0.018,0.089,0.099,0.09,2 +0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00033,0.031,0.103,0.11,0.094,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.074,0.087,0.085,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.03,0.148,0.129,0.115,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0043,0.012,0.027,0.103,0.026,3 +0.53,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.108,0.082,0.132,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.144,0.089,0.162,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.087,0.081,0.107,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.086,0.068,0.126,3 +0.78,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00057,0.0201,0.138,0.076,0.182,3 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.009,0.076,0.063,0.121,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.125,0.095,0.132,3 +0.32,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.077,0.073,0.105,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0026,0.022,0.109,0.096,0.1133,3 +0.23,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00031,0.017,0.147,0.104,0.141,3 +0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0208,0.077,0.09,0.086,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0201,0.092,0.087,0.106,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.015,0.107,0.086,0.124,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.081,0.092,0.088,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.108,0.104,0.104,3 +0.6,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.00232,0.026,0.11329,0.096,0.11776,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.0201,0.134,0.102,0.131,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.112,0.097,0.116,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.095,0.088,0.108,3 +0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.137,0.104,0.131,3 +0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.083,0.087,0.095,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.011,0.145,0.087,0.167,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.022,0.108,0.112,0.096,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.126,0.095,0.133,2 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.112,0.073,0.153,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.078,0.055,0.142,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.024,0.098,0.093,0.105,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.109,0.1,0.109,3 +0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00045,0.0201,0.184,0.121,0.152,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.0201,0.095,0.082,0.116,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.013,0.094,0.089,0.106,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.011,0.132,0.093,0.142,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.005,0.035,0.085,0.041,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.002,0.044,0.064,0.069,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.015,0.107,0.091,0.118,2 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.011,0.143,0.091,0.157,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.12,0.094,0.128,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0038,0.012,0.122,0.116,0.104,3 +0.75,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00041,0.017,0.134,0.084,0.16,3 +0.75,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.031,0.09,0.096,0.094,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.011,0.078,0.071,0.11,3 +0.67,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00077,0.0201,0.095,0.102,0.093,3 +0.26,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0031,0.026,0.095,0.089,0.107,3 +0.81,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.023,0.089,0.114,0.078,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.075,0.091,0.082,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.089,0.097,0.092,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.051,0.175,0.091,0.192,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.012,0.092,0.096,0.096,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.147,0.095,0.155,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.012,0.109,0.086,0.127,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0034,0.0201,0.094,0.083,0.113,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.0201,0.135,0.104,0.127,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.077,0.09,0.086,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.0201,0.134,0.086,0.156,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00093,0.0201,0.114,0.102,0.112,3 +0.45,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0025,0.0201,0.108,0.098,0.11,3 +0.01,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0065,0.017,0.133,0.126,0.106,2 +0.46,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.008,0.097,0.089,0.109,3 +0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.041,0.017,0.095,0.102,0.093,2 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.0201,0.184,0.15,0.123,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.083,0.086,0.097,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0201,0.098,0.101,0.097,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.091,0.08,0.114,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.134,0.103,0.13,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.097,0.104,0.092,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.084,0.082,0.102,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0201,0.118,0.099,0.119,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.099,0.094,0.105,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.023,0.122,0.11,0.111,3 +0.25,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0018,0.0201,0.158,0.158,0.1,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.022,0.191,0.097,0.197,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.083,0.101,0.082,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.02,0.144,0.078,0.185,3 +0.67,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0077,0.014,0.083,0.104,0.08,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.016,0.075,0.109,0.069,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.157,0.104,0.15,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.189,0.177,0.107,3 +0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.001,0.028,0.079,0.035,3 +0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.009,0.092,0.091,0.101,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.022,0.134,0.097,0.138,3 +0.22,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.022,0.189,0.102,0.185,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.012,0.151,0.114,0.132,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0067,0.017,0.09,0.102,0.088,2 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00024,0.027,0.117,0.108,0.108,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.024,0.096,0.098,0.098,3 +0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,7e-05,0.033,0.239,0.128,0.187,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.097,0.071,0.137,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.075,0.1,0.075,3 +0.54,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,7e-05,0.05,0.216,0.086,0.251,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.0201,0.164,0.104,0.158,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0201,0.092,0.091,0.101,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0034,0.019,0.126,0.116,0.107,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.09,0.077,0.117,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.061,0.077,0.079,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.0208,0.093,0.096,0.097,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0073,0.0208,0.139,0.115,0.121,2 +0.49,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.031,0.139,0.114,0.122,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.0201,0.098,0.1,0.098,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.016,0.109,0.083,0.131,3 +0.45,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0017,0.018,0.094,0.086,0.109,3 +0.45,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0023,0.022,0.098,0.093,0.105,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.004,0.047,0.088,0.053,3 +0.76,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00026,0.001,0.034,0.061,0.056,3 +0.35,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.018,0.111,0.102,0.109,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.04,0.221,0.109,0.203,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.034,0.147,0.135,0.109,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.0201,0.099,0.101,0.098,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.162,0.097,0.167,3 +0.39,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.041,0.131,0.095,0.138,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.017,0.117,0.104,0.113,2 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.131,0.115,0.114,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.099,0.087,0.114,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.0201,0.117,0.108,0.108,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0201,0.116,0.098,0.118,3 +0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.117,0.097,0.121,3 +0.55,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0072,0.017,0.106,0.083,0.128,2 +0.33,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0045,0.0208,0.083,0.095,0.087,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.006,0.04,0.083,0.048,1 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.02,0.177,0.116,0.15,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00889,0.017,0.119,0.119,0.1,2 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.016,0.112,0.091,0.123,2 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.017,0.077,0.076,0.101,2 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00021,0.0201,0.179,0.099,0.181,3 +0.5219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.132,0.102,0.129,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0032,0.019,0.114,0.1,0.114,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.0005,0.04,0.068,0.059,1 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.153,0.067,0.228,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.112,0.095,0.118,3 +0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.166,0.006,0.032,0.104,0.031,1 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.098,0.091,0.108,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.122,0.112,0.109,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.02,0.073,0.1,0.073,2 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.144,0.17,0.085,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0201,0.146,0.132,0.111,3 +0.24,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,6e-05,0.026,0.176,0.107,0.164,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.156,0.136,0.115,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.018,0.094,0.089,0.106,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.075,0.082,0.091,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.106,0.083,0.128,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.023,0.13,0.103,0.126,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4e-05,0.038,0.292,0.091,0.321,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.193,0.122,0.158,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.109,0.093,0.117,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.088,0.073,0.121,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.028,0.118,0.101,0.117,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.099,0.086,0.115,3 +0.38,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0043,0.015,0.142,0.097,0.146,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00052,0.026,0.091,0.097,0.094,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.176,0.149,0.118,3 +0.42,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0.0038,0.023,0.127,0.097,0.131,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.025,0.202,0.1,0.202,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.017,0.142,0.126,0.113,2 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.101,0.096,0.105,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.106,0.093,0.114,3 +0.16,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00021,0.024,0.126,0.093,0.135,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00091,0.022,0.096,0.088,0.109,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0022,0.018,0.123,0.104,0.118,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.098,0.101,0.097,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.109,0.092,0.118,3 +0.56,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.03,0.104,0.115,0.09,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.167,0.154,0.108,3 +0.74,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0208,0.166,0.089,0.186,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.188,0.083,0.226,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.022,0.142,0.131,0.108,3 +0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00063,0.0201,0.132,0.107,0.123,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4e-05,0.03,0.129,0.097,0.133,3 +0.71,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.103,0.099,0.104,3 +0.69,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.163,0.082,0.199,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.013,0.102,0.091,0.113,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.024,0.122,0.096,0.12681,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.097,0.112,0.087,3 +0.95,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.004,0.054,0.062,0.087,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0201,0.137,0.111,0.123,3 +0.47,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0025,0.025,0.108,0.123,0.088,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.024,0.107,0.096,0.112,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0026,0.0201,0.083,0.107,0.078,3 +0.53,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00072,0.0201,0.12,0.088,0.139,3 +0.59,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.027,0.074,0.112,0.066,3 +0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.02,0.101,0.085,0.119,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.112,0.095,0.118,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.02,0.028,0.074,0.095,0.0774,2 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.0201,0.135,0.088,0.153,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.026,0.089,0.089,0.1,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0208,0.135,0.108,0.125,3 +0.36,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.169,0.098,0.172,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.024,0.132,0.095,0.139,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.0201,0.093,0.083,0.112,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.152,0.103,0.148,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.078,0.083,0.094,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.137,0.115,0.119,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.08,0.095,0.084,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.026,0.109,0.099,0.11,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.027,0.09,0.099,0.091,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.02,0.091,0.085,0.107,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.086,0.077,0.112,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.022,0.091,0.085,0.107,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.228,0.165,0.138,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0.005,0.022,0.138,0.016,1 +0.26,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0016,0.0201,0.136,0.107,0.128,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.105,0.085,0.124,3 +0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.018,0.132,0.089,0.148,3 +0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.012,0.123,0.098,0.126,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0041,0.013,0.101,0.078,0.13,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.065,0.087,0.075,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.01,0.016,0.11,0.015,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.192,0.0096,0.03121,0.102,0.03042,1 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.024,0.135,0.092,0.147,3 +0.39,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0043,0.018,0.092,0.096,0.09563,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.111,0.108,0.103,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.077,0.071,0.109,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.128,0.112,0.114,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.093,0.081,0.115,3 +0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.08,0.095,0.084,3 +0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0201,0.127,0.093,0.137,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.079,0.083,0.095,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.024,0.105,0.099,0.106,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.029,0.127,0.1,0.127,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.11,0.111,0.099,3 +0.84,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.004,0.017,0.064,0.096,0.067,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.08,0.094,0.085,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.134,0.12,0.112,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0201,0.203,0.195,0.104,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.107,0.1,0.105,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.058,0.065,0.089,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.077,0.06,0.128,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.017,0.089,0.101,0.088,2 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.117,0.108,0.108,3 +0.51,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,3e-05,0.043,0.167,0.102,0.164,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.076,0.076,0.1,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.02,0.11329,0.096,0.11776,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.031,0.041,0.23,0.2,0.115,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.091,0.096,0.095,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.136,0.075,0.181,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.015,0.138,0.099,0.139,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.019,0.138,0.095,0.145,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.107,0.09,0.119,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.002,0.043,0.063,0.068,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.026,0.144,0.101,0.143,3 +0.86,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0016,0.004,0.076,0.104,0.072,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.023,0.077,0.083,0.093,3 +0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.026,0.153,0.123,0.124,3 +0.44,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0075,0.0201,0.086,0.142,0.061,3 +0.81,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.13,0.116,0.11,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.131,0.113,0.116,3 +0.75,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.016,0.086,0.089,0.097,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.024,0.103,0.102,0.101,3 +0.41,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0011,0.0201,0.103,0.099,0.104,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.0201,0.061,0.099,0.062,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.13,0.112,0.116,3 +0.56,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.027,0.212,0.115,0.184,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.014,0.13,0.116,0.112,3 +0.63,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3e-05,0.015,0.147,0.093,0.158,3 +0.63,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.056,0.1,0.056,3 +0.61,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.109,0.013,0.044,0.098,0.045,1 +0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.157,0.092,0.171,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.098,0.093,0.105,3 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00011,0.0201,0.129,0.085,0.152,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.103,0.081,0.127,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.076,0.236,0.091,0.259,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.027,0.201,0.084,0.239,3 +0.6,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.099,0.103,0.096,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0201,0.179,0.081,0.221,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0208,0.133,0.097,0.137,2 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.173,0.09,0.192,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.081,0.078,0.104,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.0201,0.142,0.099,0.143,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.148,0.125,0.118,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.017,0.081,0.089,0.091,3 +0.02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.136,0.0201,0.053,0.077,0.069,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.11329,0.096,0.143,3 +0.65,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0036,0.0201,0.097,0.107,0.091,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.0201,0.097,0.101,0.096,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.114,0.08,0.1425,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.164,0.161,0.102,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.105,0.101,0.104,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.017,0.069,0.096,0.072,2 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.106,0.111,0.096,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.13,0.107,0.122,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.093,0.088,0.106,3 +0.36,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.1,0.091,0.11,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.006,0.11329,0.096,0.11776,3 +0.48,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0201,0.108,0.103,0.105,3 +0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.014,0.129,0.09,0.143,3 +0.46,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.009,0.102,0.094,0.109,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.02,0.14,0.136,0.103,3 +0.64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.099,0.092,0.108,3 +0.22,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0015,0.02,0.11329,0.096,0.107,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.003,0.013,0.094,0.014,1 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0201,0.046,0.058,0.079,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00024,0.0201,0.153,0.095,0.161,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.131,0.108,0.121,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.01,0.092,0.09,0.102,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.017,0.115,0.111,0.104,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.096,0.089,0.108,3 +0.34,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0044,0.0201,0.127,0.135,0.094,3 +0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.011,0.019,0.092,0.084,0.11,2 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.013,0.146,0.091,0.16,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.049,0.249,0.086,0.29,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00079,0.018,0.081,0.086,0.094,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.017,0.116,0.094,0.123,2 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.166,0.177,0.094,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.102,0.094,0.109,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.01,0.061,0.077,0.079,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.01,0.06,0.074,0.081,3 +0.37,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.019,0.099,0.086,0.115,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.161,0.081,0.199,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0201,0.134,0.091,0.147,3 +0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0201,0.088,0.066,0.133,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.123,0.096,0.128,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.011,0.091,0.079,0.115,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.019,0.074,0.079,0.094,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.107,0.083,0.129,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.16,0.116,0.136,3 +0.71,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.011,0.123,0.094,0.131,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.013,0.091,0.102,0.089,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.097,0.079,0.123,3 +0.66,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0.002,0.018,0.115,0.097,0.119,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.111,0.093,0.119,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.204,0.093,0.219,3 +0.1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.098,0.099,0.099,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.164,0.134,0.122,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.095,0.087,0.109,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.108,0.094,0.115,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0201,0.113,0.076,0.149,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.104,0.098,0.106,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.085,0.07,0.121,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.114,0.084,0.136,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.013,0.081,0.091,0.089,2 +0.43,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.03,0.13,0.084,0.155,3 +0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.143,0.097,0.147,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.056,0.278,0.078,0.356,3 +0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.155,0.078,0.199,3 +0.62,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00066,0.0208,0.15,0.119,0.126,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.001,0.032,0.117,0.111,0.105,3 +0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.114,0.104,0.11,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0201,0.131,0.099,0.132,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.027,0.116,0.113,0.103,3 +0.24,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.077,0.095,0.081,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.146,0.178,0.082,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.118,0.128,0.092,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.14,0.15,0.093,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.122,0.103,0.119,3 +0.45,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0035,0.0201,0.107,0.098,0.109,3 +0.53,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.015,0.089,0.103,0.086,3 +0.7,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.019,0.052,0.077,0.068,3 +0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.037,0.178,0.096,0.18503,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.11329,0.096,0.11776,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.103,0.115,0.09,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.062,0.078,0.08,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.009,0.15,0.09,0.167,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.007,0.117,0.084,0.139,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.0096,0.019,0.094,0.02,1 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.075,0.057,0.132,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.015,0.115,0.084,0.137,3 +0.83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00083,0.0201,0.125,0.094,0.133,3 +0.49,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00027,0.018,0.098,0.108,0.091,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0025,0.025,0.1,0.103,0.097,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.086,0.08,0.108,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.117,0.11,0.106,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.0201,0.126,0.082,0.154,3 +0.69,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3e-05,0.014,0.158,0.096,0.16424,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.157,0.152,0.103,3 +0.24,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.114,0.111,0.103,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.04,0.019,0.048,0.079,0.061,1 +0.81,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0039,0.014,0.102,0.102,0.1,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.127,0.108,0.118,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.0201,0.08,0.066,0.121,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0201,0.148,0.103,0.144,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.086,0.086,0.1,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.0201,0.114,0.09,0.127,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.017,0.083,0.079,0.105,3 +0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177,0.0201,0.072,0.1,0.072,3 +0.42,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.019,0.11329,0.096,0.11776,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00083,0.023,0.119,0.111,0.107,3 +0.5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5e-05,0.0201,0.129,0.104,0.124,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.025,0.109,0.107,0.102,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.102,0.11,0.093,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.12,0.091,0.132,3 +0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.068,0.1,0.068,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0208,0.134,0.107,0.125,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.017,0.167,0.096,0.17359,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.08,0.088,0.091,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.112,0.114,0.098,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.016,0.08,0.091,0.088,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.118,0.091,0.13,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.012,0.144,0.088,0.164,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.024,0.152,0.07,0.217,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.017,0.11,0.091,0.121,2 +0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.137,0.104,0.131,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.226,0.093,0.243,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.204,0.146,0.14,3 +0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00081,0.016,0.099,0.096,0.10291,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.102,0.077,0.133,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.097,0.102,0.095,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.108,0.109,0.099,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.143,0.1,0.143,3 +0.85,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.013,0.017,0.12,0.088,0.136,2 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.102,0.098,0.104,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.0201,0.057,0.083,0.069,3 +0.82,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00469,0.014,0.098,0.091,0.108,3 +0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0008,0.018,0.069,0.085,0.082,3 +0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.013,0.092,0.078,0.118,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.14,0.096,0.146,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.012,0.169,0.099,0.171,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0083,0.104,0.077,0.135,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.017,0.107,0.102,0.105,2 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.0201,0.155,0.15,0.103,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.138,0.124,0.111,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.161,0.102,0.158,3 +0.48,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0069,0.115,0.08,0.144,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.098,0.065,0.151,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.014,0.066,0.078,0.085,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0093,0.089,0.066,0.135,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.086,0.101,0.085,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.097,0.104,0.093,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.025,0.129,0.104,0.124,3 +0.44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.163,0.12,0.136,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.101,0.104,0.097,3 +0.45,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.106,0.096,0.11,3 +0.67,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0025,0.0201,0.103,0.074,0.139,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0032,0.022,0.107,0.1,0.107,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.013,0.079,0.076,0.104,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.065,0.096,0.068,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.012,0.106,0.11,0.096,3 +0.38,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.144,0.104,0.136,3 +0.18,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.033,0.163,0.153,0.107,3 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2e-05,0.016,0.183,0.103,0.178,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.11,0.094,0.117,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.0201,0.102,0.076,0.134,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.019,0.088,0.104,0.085,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.115,0.07,0.164,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.083,0.083,0.1,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.117,0.1,0.117,3 +0.28,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.0201,0.106,0.123,0.086,3 +0.5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0005,0.008,0.123,0.116,0.105,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.0201,0.197,0.176,0.112,3 +0.59,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00058,0.019,0.143,0.096,0.14864,3 +0.34,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.023,0.113,0.104,0.107,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.135,0.116,0.116,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.131,0.097,0.135,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.017,0.114,0.093,0.123,2 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00829,0.017,0.094,0.095,0.099,2 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.09,0.084,0.107,3 +0.35,1,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0017,0.0201,0.083,0.112,0.074,3 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.015,0.103,0.088,0.117,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.0208,0.142,0.128,0.111,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.011,0.084,0.098,0.086,3 +0.54,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.085,0.089,0.096,3 +0.27,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.032,0.163,0.11,0.148,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.023,0.102,0.094,0.109,3 +0.27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.16,0.112,0.143,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0201,0.098,0.075,0.131,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.015,0.081,0.101,0.08,3 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0201,0.077,0.091,0.085,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.074,0.073,0.101,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.088,0.101,0.087,3 +0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0201,0.176,0.157,0.112,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0201,0.161,0.099,0.163,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.099,0.104,0.094,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.01,0.099,0.092,0.108,2 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.0201,0.082,0.058,0.139,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.091,0.104,0.088,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0201,0.114,0.092,0.124,3 +0.42,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0201,0.095,0.086,0.11,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.091,0.096,0.095,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.108,0.093,0.116,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.035,0.207,0.096,0.21517,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.025,0.093,0.107,0.087,3 +0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.065,0.0096,0.049,0.095,0.052,1 +0.75,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0011,0.017,0.103,0.077,0.134,3 +0.64,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0013,0.0201,0.125,0.094,0.133,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.119,0.104,0.114,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.114,0.11,0.104,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.018,0.131,0.122,0.107,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.147,0.089,0.165,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.0201,0.139,0.095,0.146,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0201,0.085,0.094,0.09,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.017,0.096,0.093,0.103,2 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.005,0.053,0.125,0.042,3 +0.44,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.014,0.088,0.079,0.111,3 +0.71,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.141,0.103,0.137,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.015,0.15,0.093,0.161,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.016,0.121,0.088,0.138,2 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.064,0.07,0.091,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.024,0.139,0.098,0.142,3 +0.48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0.0029,0.028,0.122,0.119,0.103,3 +0.65,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.023,0.017,0.078,0.092,0.085,2 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0208,0.084,0.09,0.093,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.004,0.099,0.08,0.124,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.024,0.116,0.097,0.12,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6e-05,0.024,0.152,0.116,0.131,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.124,0.11,0.113,3 +0.64,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0018,0.0208,0.097,0.104,0.093,3 +0.7,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.004,0.018,0.109,0.082,0.133,3 +0.67,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,3e-05,0.024,0.137,0.085,0.161,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.0201,0.131,0.084,0.156,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.025,0.099,0.097,0.102,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.084,0.124,0.068,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.105,0.091,0.115,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.0201,0.152,0.13,0.117,3 +0.45,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.131,0.104,0.126,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.0201,0.094,0.061,0.154,3 +0.69,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00095,0.022,0.134,0.09,0.149,3 +0.51,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0014,0.0201,0.148,0.107,0.138,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.125,0.104,0.119,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.173,0.162,0.107,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0201,0.097,0.095,0.102,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.027,0.137,0.114,0.12,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.091,0.104,0.087,3 +0.22,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0019,0.0201,0.182,0.195,0.093,3 +0.02,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0041,0.0201,0.155,0.104,0.149,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.16,0.104,0.152,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.023,0.11329,0.096,0.11776,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0201,0.178,0.071,0.251,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0035,0.015,0.083,0.092,0.09,3 +0.26,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.198,0.0096,0.005,0.095,0.0055,1 +0.26,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00232,0.018,0.11329,0.096,0.11776,3 +0.81,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0082,0.009,0.128,0.091,0.141,2 +0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.023,0.114,0.093,0.123,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.121,0.129,0.094,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.006,0.026,0.128,0.125,0.102,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.129,0.1,0.129,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.101,0.083,0.122,3 +0.49,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.039,0.24,0.125,0.192,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.0201,0.102,0.093,0.11,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.123,0.097,0.127,3 +0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.038,0.012,0.06,0.103,0.058,1 +0.84,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.002,0.094,0.081,0.116,3 +0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0048,0.007,0.077,0.096,0.08004,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.14,0.116,0.12,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0095,0.0208,0.14,0.149,0.094,2 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.063,0.085,0.074,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.118,0.088,0.134,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.0201,0.134,0.099,0.135,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.019,0.142,0.098,0.145,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.121,0.103,0.117,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.126,0.116,0.109,3 +0.5,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0035,0.0208,0.177,0.1,0.177,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.018,0.072,0.09,0.08,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.207,0.166,0.125,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.111,0.099,0.112,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.11,0.1,0.11,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.0201,0.078,0.075,0.104,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.096,0.087,0.11,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.0201,0.117,0.088,0.133,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.0201,0.127,0.109,0.117,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.075,0.068,0.11,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0201,0.185,0.17,0.109,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.032,0.198,0.155,0.128,3 +0.18,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.0201,0.154,0.086,0.179,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.017,0.127,0.09,0.141,2 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.096,0.086,0.112,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.081,0.074,0.109,3 +0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.024,0.017,0.075,0.084,0.089,2 +0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.137,0.089,0.154,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0033,0.0201,0.149,0.133,0.112,3 +0.46,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.0201,0.116,0.094,0.123,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.014,0.102,0.084,0.121,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.0201,0.101,0.101,0.1,3 +0.58,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.001,0.018,0.112,0.072,0.156,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.018,0.095,0.091,0.104,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.096,0.066,0.145,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.036,0.175,0.099,0.177,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.093,0.08,0.116,3 +0.76,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00035,0.014,0.139,0.092,0.151,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.016,0.097,0.079,0.123,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0201,0.131,0.101,0.13,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.012,0.123,0.09,0.137,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.015,0.114,0.07,0.163,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.059,0.079,0.075,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.093,0.085,0.109,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.173,0.132,0.131,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0201,0.153,0.099,0.155,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.154,0.131,0.118,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.102,0.066,0.155,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.078,0.096,0.08108,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.025,0.134,0.088,0.152,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.085,0.087,0.098,3 +0.42,1,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0.00082,0.0208,0.121,0.077,0.157,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.113,0.093,0.122,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.0096,0.043,0.085,0.051,1 +0.52,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.105,0.083,0.127,3 +0.21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.119,0.079,0.151,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.1,0.076,0.132,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.095,0.083,0.114,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.1,0.087,0.115,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.0201,0.12,0.095,0.126,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0201,0.06,0.072,0.083,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.089,0.095,0.094,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2e-05,0.0201,0.149,0.098,0.152,3 +0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.0201,0.084,0.08,0.105,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.02,0.152,0.095,0.16,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.008,0.062,0.076,0.082,3 +0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.024,0.139,0.096,0.145,3 +0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.015,0.135,0.104,0.127,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.107,0.113,0.095,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.0201,0.104,0.068,0.153,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.022,0.132,0.088,0.15,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.104,0.101,0.103,3 +0.3,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.031,0.013,0.066,0.088,0.075,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.015,0.108,0.094,0.115,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.006,0.121,0.119,0.102,3 +0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.0201,0.096,0.087,0.11,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.022,0.094,0.081,0.116,3 +0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.013,0.096,0.101,0.095,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0201,0.138,0.099,0.139,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.08,0.093,0.086,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.138,0.093,0.148,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.1,0.096,0.10395,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.001,0.056,0.078,0.072,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.115,0.11,0.105,3 +0.24,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.023,0.042,0.092,0.046,3 +0.27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.106,0.079,0.134,3 +0.6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.023,0.116,0.094,0.123,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0075,0.017,0.081,0.103,0.079,2 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.01,0.146,0.098,0.149,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.0201,0.105,0.092,0.114,3 +0.75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0015,0.012,0.091,0.097,0.094,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0201,0.104,0.087,0.12,3 +0.57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.116,0.12,0.097,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.067,0.083,0.081,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.07,0.077,0.091,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.0201,0.118,0.122,0.097,3 +0.91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00101,0.0201,0.104,0.089,0.117,3 +0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00064,0.014,0.13,0.091,0.143,3 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.0201,0.065,0.091,0.071,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0201,0.148,0.098,0.151,3 +0.63,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.022,0.017,0.088,0.11,0.08,2 +0.64,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0.00084,0.0201,0.121,0.089,0.136,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.08,0.088,0.091,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0201,0.133,0.104,0.125,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.13,0.087,0.149,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.111,0.097,0.114,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.096,0.1,0.096,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.018,0.109,0.082,0.133,3 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.063,0.078,0.081,3 +0.18,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0011,0.0201,0.071,0.061,0.116,3 +0.78,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.01,0.086,0.079,0.109,3 +0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.012,0.084,0.091,0.092,3 +0.45,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0013,0.013,0.073,0.104,0.07,3 +0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00083,0.0201,0.09,0.102,0.088,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.08,0.082,0.098,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.126,0.116,0.107,3 +0.39,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0011,0.018,0.077,0.062,0.124,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00018,0.002,0.094,0.079,0.119,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.139,0.091,0.153,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.123,0.096,0.12785,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0201,0.093,0.098,0.095,3 +0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.014,0.108,0.097,0.111,3 +0.22,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.155,0.097,0.16,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.017,0.064,0.097,0.066,2 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.104,0.093,0.112,3 +0.62,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0011,0.014,0.103,0.089,0.115,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.09,0.087,0.103,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0201,0.081,0.086,0.094,3 +0.75,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.0007,0.0201,0.146,0.096,0.152,3 +0.5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.108,0.088,0.123,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.102,0.101,0.101,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.0201,0.094,0.095,0.099,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.147,0.109,0.135,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.009,0.063,0.065,0.097,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.0201,0.111,0.076,0.146,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.083,0.084,0.099,3 +0.34,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0079,0.0201,0.088,0.083,0.106,3 +0.63,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.013,0.096,0.092,0.104,3 +0.6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.158,0.104,0.152,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.133,0.1,0.133,3 +0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.0201,0.149,0.084,0.177,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.13,0.086,0.151,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.073,0.082,0.089,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.091,0.083,0.11,3 +0.7,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.011,0.094,0.062,0.152,3 +0.33,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0011,0.016,0.104,0.079,0.132,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.012,0.092,0.069,0.133,3 +0.63,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0029,0.0201,0.082,0.067,0.122,3 +0.47,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00075,0.01,0.141,0.095,0.148,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.014,0.101,0.084,0.12,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.0201,0.139,0.108,0.129,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.072,0.096,0.07483,3 +0.72,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.032,0.239,0.083,0.288,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.05,0.16,0.087,0.184,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.1,0.092,0.109,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.129,0.096,0.13409,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0201,0.094,0.086,0.109,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.094,0.088,0.107,3 +0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2e-05,0.022,0.153,0.109,0.14,3 +0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0137,0.017,0.067,0.075,0.089,2 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.089,0.097,0.092,3 +0.64,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00056,0.018,0.09,0.079,0.114,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.0201,0.102,0.085,0.12,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.0208,0.101,0.078,0.129,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.0201,0.097,0.101,0.096,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.025,0.058,0.107,0.054,1 +0.21,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.06,0.098,0.061,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.0201,0.153,0.107,0.143,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.083,0.084,0.099,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.087,0.073,0.119,3 +0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.0201,0.214,0.123,0.174,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0201,0.115,0.125,0.092,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0208,0.16,0.098,0.163,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.02,0.076,0.108,0.07,2 +0.43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00232,0.019,0.092,0.076,0.121,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.0201,0.08,0.086,0.093,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.096,0.09,0.107,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0201,0.108,0.087,0.124,3 +0.72,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00041,0.019,0.108,0.072,0.15,3 +0.19,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2e-05,0.0201,0.171,0.097,0.176,3 +0.77,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.026,0.03,0.061,0.088,0.069,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.126,0.085,0.148,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.064,0.052,0.121,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.097,0.072,0.135,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.013,0.078,0.076,0.103,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.015,0.087,0.089,0.098,3 +0.67,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.11329,0.096,0.11776,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.029,0.1,0.097,0.103,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.0201,0.097,0.094,0.103,3 +0.37,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.044,0.064,0.069,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.09,0.077,0.117,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.0201,0.117,0.078,0.15,3 +0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0.0096,0.087,0.135,0.064,1 +0.4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.02,0.057,0.068,0.084,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.015,0.052,0.084,0.062,1 +0.54,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0035,0.017,0.113,0.096,0.11746,3 +0.39,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0015,0.016,0.066,0.115,0.057,3 +0.3,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.0033,0.0201,0.087,0.116,0.074,3 +0.76,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0015,0.0201,0.101,0.082,0.123,3 +0.42,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0023,0.023,0.093,0.127,0.073,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.088,0.077,0.114,3 +0.74,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0.0011,0.019,0.106,0.116,0.091,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.102,0.08,0.128,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.017,0.07,0.09,0.078,3 +0.05,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.206,0.141,0.146,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.29,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.057,0.172,0.086,0.2,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.102,0.09,0.113,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.091,0.124,0.073,3 +0.54,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.077,0.09,0.086,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.011,0.082,0.094,0.087,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.13,0.1,0.13,3 +0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.017,0.093,0.091,0.102,3 +0.76,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0014,0.0208,0.08,0.113,0.071,3 +0.53,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00072,0.016,0.065,0.065,0.1,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.059,0.183,0.082,0.223,3 +0.43,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.029,0.13,0.08,0.163,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.064,0.066,0.097,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.0201,0.082,0.067,0.122,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.0201,0.122,0.084,0.145,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0201,0.118,0.09,0.131,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.086,0.096,0.08939,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00232,0.0201,0.059,0.077,0.077,3 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.121,0.088,0.138,3 +0.2,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0.0004,0.023,0.132,0.083,0.159,3 +0.2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00054,0.0201,0.075,0.071,0.106,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.017,0.15,0.087,0.172,3 +0.43,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.02,0.183,0.104,0.174,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.009,0.102,0.071,0.144,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.0096,0.034,0.063,0.054,1 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.09,0.079,0.114,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.064,0.089,0.072,3 +0.3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.106,0.092,0.115,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.082,0.095,0.086,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.12,0.08,0.15,3 +0.44,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.154,0.104,0.148,3 +0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.015,0.091,0.092,0.099,3 +0.3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0026,0.022,0.14,0.133,0.105,3 +0.14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.025,0.119,0.073,0.163,3 +0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.016,0.138,0.084,0.164,3 +0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0029,0.008,0.074,0.072,0.103,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0201,0.102,0.08,0.128,3 +0.57,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.01679,0.017,0.034,0.097,0.035,3 +0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.024,0.137,0.099,0.138,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.134,0.101,0.133,3 +0.66,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.015,0.108,0.089,0.121,3 +0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.001,0.01,0.102,0.069,0.148,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0201,0.091,0.104,0.088,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.0201,0.132,0.104,0.127,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.077,0.089,0.087,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.115,0.097,0.119,3 +0.48,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0029,0.0201,0.109,0.099,0.11,3 +0.6,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0055,0.0201,0.105,0.081,0.13,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0201,0.138,0.08,0.173,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.022,0.071,0.078,0.091,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0.005,0.005,0.093,0.0055,1 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.0201,0.128,0.103,0.124,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.153,0.156,0.098,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.116,0.173,0.067,3 +0.79,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.008,0.083,0.067,0.124,3 +0.82,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00093,0.011,0.077,0.096,0.08004,3 +0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.036,0.204,0.179,0.114,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.097,0.083,0.117,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.097,0.066,0.147,3 +0.09,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.032,0.125,0.085,0.147,3 +0.66,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.005,0.02,0.106,0.104,0.101,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00047,0.014,0.042,0.073,0.058,3 +0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.114,0.09,0.127,3 +0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.113,0.104,0.109,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.068,0.093,0.073,3 +0.27,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00097,0.027,0.096,0.08,0.12,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.084,0.067,0.125,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.098,0.077,0.127,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.18,0.125,0.144,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.165,0.099,0.167,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.075,0.095,0.079,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.1,0.11,0.091,3 +0.85,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.032,0.0096,0.055,0.089,0.062,1 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.145,0.092,0.158,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0201,0.064,0.08,0.08,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0201,0.098,0.088,0.111,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.0201,0.094,0.052,0.177,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.117,0.109,0.107,3 +0.6,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.016,0.104,0.098,0.106,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.02,0.154,0.1,0.154,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0017,0.018,0.072,0.069,0.104,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.13,0.103,0.126,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.12,0.096,0.125,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.059,0.08,0.074,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.053,0.016,0.113,0.129,0.088,2 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.008,0.044,0.115,0.038,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.132,0.121,0.109,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.067,0.099,0.068,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0201,0.139,0.107,0.13,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.129,0.1,0.129,3 +0.58,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0004,0.0201,0.077,0.081,0.095,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.0201,0.118,0.091,0.13,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0201,0.065,0.107,0.061,3 +0.59,1,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0.00419,0.025,0.09,0.102,0.088,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.087,0.089,0.098,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0201,0.119,0.088,0.135,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.057,0.078,0.073,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.145,0.113,0.128,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.08,0.075,0.107,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.099,0.086,0.115,3 +0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00095,0.0201,0.088,0.085,0.104,3 +0.55,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0031,0.0201,0.064,0.09,0.071,3 +0.49,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.024,0.18,0.125,0.144,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.108,0.083,0.13,3 +0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0208,0.082,0.104,0.077,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.011,0.045,0.091,0.049,1 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0201,0.105,0.096,0.109,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.017,0.115,0.087,0.132,3 +0.59,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.043,0.081,0.053,3 +0.61,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.012,0.069,0.099,0.07,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,9e-05,0.0208,0.116,0.098,0.118,3 +0.57,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0208,0.093,0.084,0.111,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.089,0.09,0.099,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.006,0.0201,0.135,0.096,0.141,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.083,0.065,0.128,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.08,0.077,0.104,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0201,0.11,0.104,0.106,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.017,0.051,0.056,0.091,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.071,0.076,0.093,3 +0.26,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.03,0.189,0.121,0.156,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.091,0.076,0.12,3 +0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.182,0.143,0.127,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0201,0.179,0.098,0.183,3 +0.37,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.024,0.016,0.095,0.086,0.11,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.083,0.075,0.111,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.085,0.085,0.1,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.116,0.092,0.126,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.0096,0.059,0.098,0.06,1 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.137,0.096,0.143,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.085,0.069,0.123,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0201,0.087,0.097,0.09,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.073,0.087,0.084,3 +0.31,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00469,0.026,0.073,0.097,0.075,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.136,0.158,0.086,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.0096,0.039,0.1,0.039,1 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.005,0.005,0.119,0.004,1 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.085,0.073,0.116,3 +0.6,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2e-05,0.014,0.09,0.081,0.111,3 +0.08,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.024,0.126,0.096,0.131,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00232,0.024,0.182,0.101,0.18,3 +0.77,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0036,0.018,0.134,0.102,0.131,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.017,0.082,0.084,0.098,2 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.11329,0.096,0.11776,3 +0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0067,0.0201,0.056,0.073,0.077,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.017,0.095,0.104,0.09,2 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.066,0.093,0.071,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.022,0.09,0.084,0.107,3 +0.56,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.0201,0.067,0.071,0.094,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.097,0.123,0.079,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.014,0.063,0.096,0.06548,3 +0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0052,0.0201,0.103,0.146,0.071,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.095,0.077,0.123,3 +0.51,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0027,0.02,0.115,0.09,0.128,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.017,0.081,0.09,0.09,2 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.0201,0.234,0.07,0.334,3 +0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.0201,0.162,0.142,0.114,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.093,0.076,0.122,3 +0.28,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0201,0.157,0.091,0.173,3 +0.69,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.109,0.093,0.117,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.011,0.048,0.062,0.077,3 +0.59,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.106,0.116,0.091,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0201,0.121,0.111,0.109,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.097,0.096,0.101,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0045,0.0201,0.097,0.085,0.114,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.0201,0.072,0.092,0.078,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0201,0.09,0.093,0.097,3 +0.26,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00056,0.0208,0.137,0.091,0.151,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.104,0.08,0.13,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.02,0.106,0.085,0.125,3 +0.84,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00041,0.011,0.148,0.109,0.136,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.026,0.128,0.114,0.112,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.067,0.28,0.085,0.329,3 +0.57,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2e-05,0.0208,0.193,0.096,0.20062,3 +0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.084,0.094,0.089,3 +0.65,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.0201,0.144,0.115,0.125,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0201,0.093,0.088,0.106,3 +0.62,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00062,0.0201,0.154,0.175,0.088,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.02,0.112,0.111,0.101,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00959,0.012,0.126,0.09,0.14,2 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0201,0.091,0.09,0.101,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0201,0.143,0.096,0.14864,3 +0.8,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00055,0.004,0.09,0.071,0.127,3 +0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00099,0.019,0.121,0.109,0.111,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.17,0.15,0.113,3 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.022,0.145,0.101,0.144,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.024,0.122,0.092,0.133,3 +0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.094,0.088,0.107,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.02,0.099,0.11,0.09,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.018,0.083,0.082,0.101,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.094,0.109,0.086,3 +0.66,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0036,0.019,0.082,0.113,0.073,3 +0.77,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.039,0.012,0.048,0.114,0.042,3 +0.35,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0.0025,0.0201,0.144,0.152,0.095,3 +0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.023,0.018,0.087,0.096,0.091,2 +0.31,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.124,0.096,0.129,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.69,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0022,0.0201,0.087,0.08,0.109,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.027,0.101,0.11,0.092,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00099,0.0201,0.07,0.067,0.104,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0201,0.133,0.107,0.124,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.012,0.088,0.069,0.128,3 +0.42,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00232,0.0208,0.11329,0.096,0.11776,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0201,0.069,0.102,0.068,3 +0.56,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.02,0.094,0.09,0.104,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.041,0.115,0.096,0.12,3 +0.46,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.004,0.022,0.123,0.09,0.137,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.0201,0.123,0.099,0.124,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.121,0.121,0.1,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.117,0.104,0.111,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0201,0.066,0.077,0.086,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.09,0.08,0.113,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.024,0.164,0.112,0.146,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.11,0.082,0.134,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.022,0.092,0.083,0.111,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0201,0.116,0.074,0.157,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.158,0.155,0.102,3 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.074,0.077,0.096,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00232,0.0201,0.11329,0.096,0.11776,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.074,0.058,0.125,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0051,0.025,0.132,0.097,0.136,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00041,0.0201,0.117,0.114,0.103,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.0201,0.09,0.068,0.132,3 +0.55,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0029,0.0201,0.143,0.091,0.157,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.011,0.119,0.088,0.135,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.02,0.093,0.098,0.095,3 +0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00058,0.009,0.096,0.076,0.126,3 +0.57,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.025,0.066,0.091,0.073,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.09,0.082,0.11,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0005,0.018,0.111,0.083,0.134,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0201,0.08,0.075,0.107,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0201,0.078,0.07,0.111,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.0201,0.105,0.083,0.127,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.017,0.098,0.096,0.10187,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.024,0.102,0.102,0.1,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0036,0.02,0.084,0.078,0.108,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0201,0.098,0.093,0.105,3 +0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0201,0.098,0.091,0.108,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.015,0.097,0.071,0.136,3 +0.45,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0201,0.114,0.081,0.141,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.028,0.118,0.116,0.101,3 +0.65,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,3e-05,0.022,0.146,0.104,0.138,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0008,0.022,0.091,0.079,0.115,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0201,0.101,0.077,0.131,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0469,0.172,0.087,0.198,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.123,0.097,0.127,3 +0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.0201,0.11,0.087,0.126,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.125,0.078,0.16,3 +0.46,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.0201,0.135,0.104,0.129,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.0201,0.117,0.09,0.13,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.013,0.107,0.085,0.126,3 +0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0018,0.0201,0.121,0.099,0.122,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.115,0.074,0.155,3 +0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.0201,0.13,0.112,0.116,3 +0.72,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.001,0.014,0.12,0.094,0.128,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.0096,0.06,0.116,0.051,1 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0201,0.077,0.083,0.093,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.023,0.083,0.081,0.102,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.017,0.109,0.103,0.106,2 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0201,0.056,0.086,0.065,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0201,0.127,0.094,0.135,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0201,0.096,0.079,0.122,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0201,0.106,0.093,0.114,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0033,0.0201,0.113,0.093,0.122,3 +0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00044,0.011,0.066,0.1,0.066,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0201,0.086,0.094,0.091,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.0201,0.096,0.079,0.122,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.082,0.093,0.088,3 +0.56,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00046,0.019,0.103,0.104,0.097,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0201,0.11329,0.096,0.11776,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.104,0.095,0.109,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0201,0.077,0.082,0.094,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0025,0.0208,0.079,0.099,0.08,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.106,0.006,0.005,0.089,0.0055,1 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00076,0.0201,0.09,0.067,0.134,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0201,0.09,0.089,0.101,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00056,0.0201,0.081,0.09,0.09,3 diff --git a/src/mlpack/tests/data/thyroid_train.csv b/src/mlpack/tests/data/thyroid_train.csv index 007248f5df..c79b6110b4 100644 --- a/src/mlpack/tests/data/thyroid_train.csv +++ b/src/mlpack/tests/data/thyroid_train.csv @@ -1,3772 +1,3772 @@ -0.73,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0006,0.015,0.12,0.082,0.146,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.03,0.143,0.133,0.108,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.024,0.102,0.131,0.078,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.017,0.077,0.09,0.085,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.026,0.139,0.09,0.153,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.016,0.086,0.07,0.123,0,0,1 -0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.128,0.104,0.121,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.086,0.078,0.11,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.087,0.109,0.08,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.029,0.124,0.128,0.097,0,0,1 -0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.011,0.008,0.073,0.074,0.098,0,1,0 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.023,0.098,0.085,0.115,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.094,0.099,0.09475,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.023,0.113,0.102,0.111,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.02,0.063,0.095,0.066,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.09,0.071,0.126,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.02,0.114,0.1,0.114,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.018,0.078,0.092,0.085,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032,0.014,0.085,0.116,0.071,0,0,1 -0.5,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.061,0.0096,0.013,0.116,0.011,1,0,0 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0208,0.098,0.101,0.097,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0206,0.086,0.091,0.095,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0006,0.026,0.136,0.119,0.114,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.087,0.093,0.094,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.1,0.08,0.124,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.014,0.124,0.12,0.103,0,0,1 -0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.025,0.009,0.05,0.084,0.06,1,0,0 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.013,0.108,0.079,0.137,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.006,0.12,0.104,0.113,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.017,0.083,0.086,0.097,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.025,0.11,0.1,0.11,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.09,0.098,0.091,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.119,0.098,0.12,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.032,0.207,0.157,0.132,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.028,0.122,0.11,0.111,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00959,0.048,0.168,0.028,0.612,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.0469,0.123,0.028,0.445,0,0,1 -0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.025,0.18,0.083,0.217,0,0,1 -0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0001,0.006,0.07,0.09,0.177,0,0,1 -0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00979,0.004,0.081,0.064,0.126,0,1,0 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.106,0.079,0.134,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.095,0.081,0.118,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.104,0.093,0.112,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.108,0.071,0.151,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.129,0.108,0.119,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0206,0.12,0.08,0.15,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.018,0.086,0.082,0.105,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.103,0.091,0.113,0,0,1 -0.31,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00189,0.03,0.158,0.101,0.156,0,0,1 -0.54,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.06,0.087,0.069,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.019,0.102,0.093,0.11,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.091,0.087,0.105,0,0,1 -0.49,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.013,0.082,0.1,0.082,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.018,0.085,0.078,0.109,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.028,0.189,0.166,0.114,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.028,0.103,0.1,0.103,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.016,0.091,0.088,0.103,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.008,0.074,0.085,0.087,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.036,0.094,0.102,0.092,0,0,1 -0.67,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.02,0.083,0.096,0.087,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.079,0.062,0.126,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.093,0.078,0.119,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.087,0.089,0.097,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.107,0.112,0.096,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.032,0.11118,0.099,0.11207,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.104,0.099,0.10483,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.079,0.089,0.09,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.039,0.097,0.084,0.115,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.134,0.099,0.136,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.026,0.08,0.084,0.095,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.124,0.104,0.118,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.122,0.085,0.144,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.122,0.082,0.15,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.079,0.07,0.114,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.099,0.085,0.117,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.022,0.096,0.086,0.111,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.019,0.123,0.099,0.124,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.011,0.069,0.06,0.114,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.062,0.255,0.104,0.244,0,0,1 -0.28,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0025,0.026,0.179,0.155,0.115,0,0,1 -0.56,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.02,0.066,0.094,0.07,0,1,0 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.026,0.113,0.091,0.123,0,0,1 -0.55,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0003,0.0206,0.076,0.101,0.076,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0003,0.025,0.107,0.092,0.116,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.129,0.102,0.126,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.109,0.103,0.106,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.089,0.099,0.09,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.036,0.301,0.175,0.172,0,0,1 -0.55,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0076,0.01,0.086,0.084,0.102,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.027,0.103,0.099,0.10383,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0048,0.024,0.114,0.084,0.135,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.095,0.099,0.096,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.146,0.119,0.123,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.121,0.104,0.116,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.014,0.119,0.098,0.121,0,0,1 -0.67,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.075,0.073,0.102,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.106,0.094,0.113,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.05,0.164,0.126,0.13,0,0,1 -0.32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.105,0.104,0.1,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.112,0.098,0.115,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.011,0.052,0.09,0.058,1,0,0 -0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.102,0.123,0.083,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.006,0.061,0.058,0.105,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.13,0.099,0.13103,0,0,1 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.012,0.089,0.094,0.095,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.094,0.097,0.098,0,0,1 -0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0002,0.025,0.124,0.115,0.108,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.157,0.09,0.175,0,0,1 -0.38,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0039,0.022,0.061,0.076,0.08,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.144,0.094,0.154,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.005,0.0029,0.104,0.0028,1,0,0 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.008,0.013,0.119,0.011,1,0,0 -0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0037,0.0206,0.069,0.083,0.083,0,0,1 -0.7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0009,0.0206,0.07,0.08,0.087,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.086,0.09,0.096,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.115,0.092,0.124,0,0,1 -0.58,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0002,0.0206,0.256,0.09,0.283,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.134,0.098,0.137,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.098,0.089,0.11,0,0,1 -0.63,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.11,0.082,0.134,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0208,0.153,0.122,0.126,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.118,0.099,0.11895,0,0,1 -0.36,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.179,0.136,0.131,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.122,0.081,0.152,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.197,0.108,0.182,0,0,1 -0.43,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.018,0.137,0.102,0.134,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.123,0.097,0.126,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.011,0.093,0.073,0.127,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.008,0.075,0.077,0.098,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.024,0.087,0.094,0.093,0,0,1 -0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.038,0.252,0.113,0.222,0,0,1 -0.37,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.116,0.09,0.128,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.087,0.099,0.0877,0,0,1 -0.26,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.011,0.0206,0.089,0.104,0.086,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.051,0.187,0.116,0.16,0,0,1 -0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.007,0.137,0.084,0.164,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.012,0.059,0.083,0.071,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.008,0.124,0.09,0.137,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.109,0.103,0.106,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.105,0.091,0.115,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.011,0.056,0.086,0.065,0,1,0 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.013,0.111,0.094,0.118,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.004,0.039,0.061,0.064,1,0,0 -0.49,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.093,0.094,0.099,0,0,1 -0.01,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.033,0.156,0.167,0.093,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.028,0.142,0.099,0.143,0,0,1 -0.56,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0022,0.014,0.088,0.077,0.114,0,0,1 -0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.12,0.112,0.107,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.112,0.108,0.104,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.022,0.077,0.1,0.07692,0,1,0 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.027,0.114,0.131,0.087,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0208,0.108,0.091,0.119,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.025,0.142,0.125,0.113,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.137,0.095,0.144,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.072,0.104,0.068,0,0,1 -0.63,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.052,0.085,0.061,0,0,1 -0.49,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0002,0.024,0.137,0.099,0.1381,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.68,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0016,0.025,0.099,0.109,0.09,0,0,1 -0.73,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.003,0.019,0.106,0.099,0.10685,0,0,1 -0.57,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0001,0.024,0.081,0.089,0.091,0,0,1 -0.29,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.074,0.071,0.104,0,0,1 -0.29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.054,0.076,0.072,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.084,0.087,0.097,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.024,0.129,0.098,0.131,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.105,0.102,0.103,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.022,0.081,0.096,0.084,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.062,0.094,0.066,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.024,0.102,0.112,0.092,0,0,1 -0.48,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0001,0.0206,0.119,0.091,0.131,0,0,1 -0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.024,0.13,0.111,0.117,0,0,1 -0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.013,0.128,0.107,0.12,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.027,0.159,0.119,0.134,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.08,0.077,0.104,0,0,1 -0.24,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0033,0.012,0.07,0.087,0.08,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.014,0.115,0.102,0.113,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.099,0.086,0.115,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.111,0.094,0.118,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.129,0.107,0.121,0,0,1 -0.57,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.073,0.097,0.075,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.022,0.15,0.101,0.149,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.074,0.069,0.107,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.031,0.129,0.099,0.13003,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.107,0.094,0.114,0,0,1 -0.31,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00189,0.029,0.159,0.143,0.111,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.095,0.076,0.125,0,0,1 -0.72,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.186,0.124,0.15,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.025,0.109,0.108,0.1,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.014,0.12,0.087,0.138,0,0,1 -0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.039,0.2,0.136,0.147,0,0,1 -0.29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0001,0.031,0.142,0.177,0.08,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.024,0.073,0.097,0.075,0,0,1 -0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.026,0.093,0.088,0.106,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.085,0.089,0.096,0,0,1 -0.32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0.0005,0.03,0.167,0.182,0.092,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.019,0.126,0.076,0.163,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.076,0.081,0.094,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.137,0.098,0.14,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.192,0.102,0.188,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.022,0.085,0.104,0.08,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.004,0.003,0.099,0.003,1,0,0 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.152,0.113,0.135,0,0,1 -0.25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0049,0.0206,0.074,0.092,0.08,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.059,0.05,0.119,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.014,0.139,0.088,0.157,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.023,0.1,0.088,0.113,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.087,0.086,0.101,0,0,1 -0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.016,0.017,0.075,0.1,0.07492,0,1,0 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.077,0.072,0.107,0,0,1 -0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.096,0.104,0.092,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.13,0.116,0.111,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.012,0.061,0.08,0.076,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.076,0.065,0.116,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.149,0.109,0.136,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.085,0.107,0.079,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.093,0.101,0.093,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.113,0.094,0.12,0,0,1 -0.26,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.132,0.124,0.107,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.105,0.09,0.117,0,0,1 -0.92,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0003,0.0206,0.11118,0.099,0.11207,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.097,0.101,0.097,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.094,0.082,0.115,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.017,0.056,0.09,0.062,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.023,0.146,0.1,0.146,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.133,0.116,0.115,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.082,0.088,0.093,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.121,0.08,0.153,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.012,0.105,0.091,0.115,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.029,0.125,0.102,0.122,0,0,1 -0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0003,0.018,0.098,0.093,0.105,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.084,0.09,0.093,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.026,0.108,0.104,0.102,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.117,0.095,0.123,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.135,0.102,0.132,0,0,1 -0.41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0003,0.023,0.111,0.083,0.134,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.093,0.119,0.078,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.019,0.116,0.089,0.13,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.089,0.104,0.086,0,0,1 -0.32,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0003,0.03,0.101,0.114,0.089,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.023,0.12,0.08,0.149,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.119,0.103,0.116,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.02,0.089,0.089,0.099,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.023,0.134,0.082,0.163,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.025,0.205,0.12,0.17,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.096,0.128,0.075,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.129,0.019,0.142,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.138,0.101,0.126,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.018,0.114,0.1,0.114,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01479,0.015,0.061,0.085,0.072,0,1,0 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.082,0.094,0.087,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0206,0.095,0.098,0.098,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.031,0.11118,0.099,0.11207,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.084,0.075,0.113,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.026,0.106,0.104,0.101,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0208,0.123,0.103,0.119,0,0,1 -0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.019,0.066,0.096,0.068,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0018,0.022,0.101,0.113,0.09,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.119,0.092,0.129,0,0,1 -0.6,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0059,0.0206,0.126,0.113,0.111,0,0,1 -0.77,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.131,0.074,0.176,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.091,0.099,0.09173,0,0,1 -0.73,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0008,0.019,0.121,0.101,0.119,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.014,0.111,0.097,0.115,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.108,0.089,0.121,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.102,0.087,0.118,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.144,0.095,0.152,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.024,0.093,0.092,0.101,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.029,0.115,0.107,0.107,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.026,0.11118,0.099,0.11207,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.135,0.107,0.127,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.109,0.111,0.098,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.151,0.104,0.142,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.118,0.095,0.124,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.003,0.006,0.08,0.0076,1,0,0 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.123,0.093,0.132,0,0,1 -0.36,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.018,0.082,0.099,0.08266,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.09,0.09,0.1,0,0,1 -0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.02,0.147,0.099,0.14817,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.027,0.093,0.099,0.094,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.091,0.095,0.096,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.0206,0.084,0.09,0.094,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.129,0.104,0.123,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.104,0.104,0.1,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.0208,0.101,0.084,0.121,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.083,0.104,0.079,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.133,0.098,0.136,0,0,1 -0.38,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.078,0.085,0.092,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.025,0.136,0.089,0.153,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.112,0.089,0.126,0,0,1 -0.37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.027,0.017,0.087,0.099,0.0877,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.019,0.095,0.11,0.087,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.089,0.099,0.08971,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.01,0.068,0.088,0.078,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.097,0.12,0.081,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.133,0.078,0.171,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.013,0.11,0.112,0.098,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.077,0.08,0.097,0,0,1 -0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.026,0.142,0.099,0.14314,0,0,1 -0.27,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.1,0.099,0.1008,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.043,0.187,0.096,0.194,0,0,1 -0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.071,0.087,0.082,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0016,0.018,0.107,0.111,0.097,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.105,0.097,0.108,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.095,0.109,0.087,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.031,0.169,0.149,0.114,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.103,0.103,0.1,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.02,0.073,0.104,0.07,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.152,0.081,0.188,0,0,1 -0.25,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0001,0.017,0.092,0.089,0.103,0,0,1 -0.49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.027,0.141,0.116,0.12,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.097,0.099,0.09778,0,0,1 -0.73,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.105,0.116,0.089,0,0,1 -0.12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.027,0.093,0.099,0.09375,0,0,1 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.117,0.098,0.12,0,0,1 -0.21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.101,0.12,0.084,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.066,0.093,0.071,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.087,0.08,0.109,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.17,0.099,0.171,0,0,1 -0.57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.118,0.102,0.116,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.012,0.078,0.072,0.108,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.015,0.098,0.088,0.112,0,1,0 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.09,0.088,0.102,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.003,0.032,0.052,0.06,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.103,0.109,0.095,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0004,0.034,0.189,0.135,0.14,0,0,1 -0.19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0419,0.128,0.098,0.13,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.031,0.141,0.095,0.149,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.1,0.09,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.026,0.084,0.098,0.086,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.137,0.163,0.084,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.094,0.09,0.105,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.115,0.09,0.128,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.184,0.121,0.153,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.082,0.077,0.107,0,0,1 -0.58,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0005,0.023,0.115,0.1,0.115,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.069,0.096,0.071,0,1,0 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.12,0.098,0.123,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.144,0.1,0.145,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.133,0.116,0.115,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.024,0.077,0.099,0.078,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.074,0.09,0.083,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.101,0.116,0.087,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.012,0.146,0.093,0.157,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.02,0.105,0.104,0.1,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.112,0.103,0.109,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.23,0.104,0.217,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.151,0.121,0.125,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.003,0.073,0.085,0.086,0,0,1 -0.67,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.106,0.092,0.115,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.104,0.099,0.10483,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.018,0.128,0.1,0.128,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.085,0.092,0.092,0,0,1 -0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.012,0.096,0.093,0.103,0,0,1 -0.66,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0001,0.006,0.121,0.085,0.143,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.092,0.092,0.101,0,0,1 -0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.12,0.092,0.13,0,0,1 -0.39,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.004,0.017,0.063,0.099,0.0635,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.028,0.094,0.088,0.106,0,0,1 -0.61,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0004,0.0206,0.113,0.104,0.106,0,0,1 -0.41,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0004,0.0206,0.091,0.096,0.095,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.025,0.098,0.101,0.096,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.019,0.104,0.101,0.104,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0208,0.098,0.099,0.1,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0.002,0.0048,0.09,0.0054,1,0,0 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.082,0.08,0.104,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.142,0.112,0.127,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.034,0.21,0.104,0.199,0,0,1 -0.56,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.019,0.137,0.109,0.126,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5e-05,0.023,0.095,0.089,0.106,0,0,1 -0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.012,0.093,0.079,0.117,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.011,0.095,0.073,0.129,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.026,0.119,0.122,0.097,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0005,0.032,0.137,0.116,0.119,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.077,0.079,0.097,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.011,0.108,0.066,0.165,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.023,0.112,0.1,0.112,0,0,1 -0.54,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,5e-05,0.012,0.112,0.077,0.145,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0206,0.11118,0.099,0.11207,0,0,1 -0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.154,0.097,0.159,0,0,1 -0.28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.029,0.171,0.12,0.143,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.018,0.059,0.096,0.061,1,0,0 -0.57,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.091,0.078,0.116,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.024,0.061,0.082,0.075,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.041,0.158,0.142,0.111,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.027,0.108,0.104,0.103,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.028,0.123,0.123,0.1,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.088,0.096,0.092,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.025,0.088,0.095,0.093,0,0,1 -0.64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.145,0.093,0.155,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.016,0.12,0.091,0.132,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.088,0.086,0.102,0,0,1 -0.69,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0003,0.026,0.089,0.11,0.081,0,0,1 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.017,0.144,0.096,0.15,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.091,0.079,0.115,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.085,0.094,0.09,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.011,0.171,0.109,0.157,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.022,0.138,0.124,0.111,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.196,0.094,0.209,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.024,0.133,0.1,0.132,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.093,0.079,0.117,0,0,1 -0.49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.012,0.089,0.109,0.082,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0006,0.015,0.133,0.119,0.112,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0.051,0.084,0.061,1,0,0 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.008,0.087,0.089,0.098,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.016,0.091,0.104,0.086,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.175,0.112,0.156,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.099,0.112,0.088,0,0,1 -0.4,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.32,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00015,0.024,0.135,0.115,0.118,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.027,0.1,0.104,0.096,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.023,0.081,0.092,0.088,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.02,0.143,0.128,0.112,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.032,0.149,0.116,0.127,0,0,1 -0.68,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.074,0.072,0.103,0,0,1 -0.89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.006,0.101,0.073,0.138,0,0,1 -0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00015,0.03,0.21,0.148,0.142,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.026,0.092,0.09,0.102,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.017,0.107,0.094,0.113,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.113,0.097,0.116,0,0,1 -0.51,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0019,0.022,0.074,0.091,0.081,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.023,0.101,0.099,0.102,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.085,0.113,0.075,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0206,0.117,0.111,0.105,0,0,1 -0.12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.03,0.176,0.089,0.197,0,0,1 -0.15,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.023,0.183,0.089,0.205,0,0,1 -0.58,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0032,0.0208,0.075,0.104,0.072,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.072,0.084,0.086,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0009,0.024,0.123,0.099,0.125,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.009,0.083,0.078,0.106,0,0,1 -0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.105,0.086,0.122,0,1,0 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.016,0.095,0.107,0.089,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0208,0.096,0.101,0.095,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.007,0.069,0.077,0.089,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0003,0.019,0.117,0.108,0.108,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.029,0.152,0.116,0.13,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.107,0.094,0.113,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.022,0.082,0.094,0.087,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.026,0.12,0.124,0.096,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.107,0.104,0.101,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.017,0.081,0.087,0.094,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.123,0.074,0.166,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.018,0.071,0.072,0.099,0,0,1 -0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.0206,0.073,0.103,0.072,0,0,1 -0.68,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.089,0.083,0.105,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.017,0.104,0.101,0.103,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.079,0.079,0.1,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.098,0.092,0.107,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.029,0.087,0.11,0.079,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.022,0.096,0.094,0.102,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.089,0.088,0.102,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.031,0.131,0.123,0.106,0,1,0 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.103,0.114,0.09,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.069,0.081,0.086,0,0,1 -0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.097,0.11,0.09,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.007,0.071,0.074,0.096,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.11,0.098,0.112,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.006,0.113,0.089,0.127,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.025,0.134,0.113,0.119,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.028,0.103,0.11,0.094,0,0,1 -0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.0174,0.077,0.104,0.073,0,1,0 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.022,0.1,0.097,0.104,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.029,0.113,0.113,0.1,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.019,0.099,0.079,0.125,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0208,0.056,0.096,0.058,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0208,0.091,0.098,0.092,0,0,1 -0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.111,0.097,0.115,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.111,0.112,0.099,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.013,0.119,0.09,0.133,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.09,0.097,0.093,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.071,0.093,0.076,0,0,1 -0.75,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.034,0.103,0.132,0.078,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.076,0.08,0.095,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.108,0.088,0.122,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.012,0.084,0.078,0.107,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.026,0.102,0.097,0.106,0,0,1 -0.22,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.023,0.147,0.101,0.145,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0022,0.029,0.085,0.108,0.079,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.258,0.114,0.227,0,0,1 -0.18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00959,0.024,0.22,0.168,0.131,0,0,1 -0.48,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.098,0.019,0.029,0.111,0.026,1,0,0 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.115,0.111,0.104,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.008,0.053,0.086,0.061,1,0,0 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.13,0.086,0.151,0,0,1 -0.26,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0002,0.039,0.122,0.128,0.096,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.023,0.11,0.101,0.109,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.011,0.07,0.092,0.076,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.017,0.076,0.086,0.088,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.024,0.109,0.099,0.10987,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0003,0.018,0.117,0.097,0.121,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.086,0.091,0.094,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.053,0.181,0.104,0.174,0,0,1 -0.39,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.131,0.126,0.104,0,0,1 -0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.019,0.144,0.093,0.156,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.012,0.07,0.071,0.099,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.014,0.083,0.086,0.096,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0003,0.0208,0.1,0.104,0.096,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.09,0.114,0.079,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.072,0.084,0.085,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.022,0.084,0.084,0.1,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.017,0.095,0.095,0.1,0,0,1 -0.59,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0003,0.016,0.112,0.075,0.148,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.099,0.103,0.097,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.093,0.096,0.097,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.022,0.123,0.093,0.132,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.089,0.094,0.095,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.209,0.108,0.194,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.016,0.047,0.097,0.048,1,0,0 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.024,0.117,0.102,0.115,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.083,0.099,0.084,0,0,1 -0.17,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.014,0.111,0.102,0.109,0,0,1 -0.17,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0003,0.015,0.101,0.081,0.125,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.112,0.099,0.1129,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.03,0.143,0.132,0.108,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.021,0.018,0.126,0.116,0.107,0,0,1 -0.34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.103,0.138,0.075,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.082,0.093,0.088,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.187,0.11,0.17,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.023,0.064,0.098,0.065,0,1,0 -0.36,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.11,0.094,0.117,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0206,0.162,0.112,0.146,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.026,0.119,0.12,0.1,0,0,1 -0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.09,0.085,0.106,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0208,0.086,0.081,0.107,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.121,0.101,0.121,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.017,0.065,0.068,0.097,0,1,0 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023,0.005,0.033,0.067,0.049,1,0,0 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.003,0.044,0.056,0.077,0,1,0 -0.85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0073,0.024,0.066,0.109,0.061,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.02,0.098,0.067,0.131,0,0,1 -0.15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.027,0.096,0.104,0.091,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0003,0.02,0.075,0.121,0.062,0,0,1 -0.73,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.028,0.109,0.132,0.083,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.035,0.217,0.098,0.221,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.051,0.167,0.1,0.168,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.149,0.116,0.126,0,0,1 -0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0005,0.022,0.102,0.085,0.119,0,0,1 -0.9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.017,0.118,0.082,0.144,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.043,0.189,0.107,0.176,0,0,1 -0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0206,0.079,0.081,0.097,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.001,0.024,0.121,0.12,0.101,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.02,0.088,0.099,0.0887,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.027,0.119,0.112,0.106,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0025,0.029,0.086,0.119,0.072,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.017,0.094,0.099,0.09475,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.028,0.084,0.099,0.086,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00015,0.016,0.094,0.087,0.108,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.11118,0.099,0.11207,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.086,0.074,0.111,0,0,1 -0.54,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.018,0.1,0.077,0.13,0,0,1 -0.39,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.063,0.087,0.072,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0.007,0.028,0.1,0.028,1,0,0 -0.24,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.027,0.116,0.082,0.143,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.099,0.082,0.12,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.03,0.161,0.093,0.174,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.01,0.0208,0.065,0.1,0.06493,0,1,0 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.109,0.075,0.145,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001,0.023,0.087,0.089,0.098,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.081,0.101,0.08,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.019,0.065,0.1,0.06493,0,1,0 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.028,0.199,0.146,0.137,0,0,1 -0.29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00015,0.036,0.144,0.176,0.082,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.026,0.11118,0.099,0.11207,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.025,0.1,0.098,0.103,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.019,0.114,0.1,0.114,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.075,0.074,0.101,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.074,0.089,0.083,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00015,0.029,0.132,0.114,0.116,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.008,0.09,0.077,0.117,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0206,0.248,0.15,0.165,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.022,0.151,0.091,0.166,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0208,0.105,0.102,0.1,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.043,0.144,0.162,0.089,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.13,0.124,0.105,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.12,0.103,0.117,0,0,1 -0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.138,0.121,0.115,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.067,0.093,0.073,0,0,1 -0.89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.105,0.095,0.11,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.022,0.104,0.102,0.102,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.017,0.162,0.087,0.186,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.019,0.121,0.104,0.116,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0208,0.1,0.104,0.095,0,0,1 -0.3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.018,0.096,0.093,0.103,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.035,0.12,0.122,0.098,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0002,0.027,0.079,0.098,0.081,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.01,0.088,0.094,0.094,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.066,0.071,0.093,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.012,0.022,0.071,0.14,0.051,1,0,0 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.007,0.082,0.088,0.093,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.016,0.134,0.12,0.112,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.072,0.077,0.094,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.14,0.114,0.123,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.007,0.091,0.083,0.11,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.02,0.11,0.116,0.094,0,0,1 -0.21,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0002,0.025,0.108,0.113,0.096,0,0,1 -0.54,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.101,0.064,0.158,0,0,1 -0.21,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.095,0.096,0.099,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0208,0.086,0.092,0.093,0,0,1 -0.66,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0038,0.0208,0.079,0.107,0.074,0,0,1 -0.57,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.141,0.089,0.158,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.121,0.079,0.153,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.026,0.197,0.101,0.195,0,0,1 -0.57,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.104,0.107,0.097,0,0,1 -0.28,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.001,0.023,0.116,0.113,0.103,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.101,0.09,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.012,0.072,0.1,0.07192,0,1,0 -0.43,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0035,0.017,0.099,0.114,0.087,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.019,0.101,0.108,0.094,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.091,0.093,0.098,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.031,0.134,0.1,0.134,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.119,0.111,0.107,0,0,1 -0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0005,0.0206,0.09,0.109,0.083,0,0,1 -0.53,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00025,0.0208,0.145,0.103,0.141,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.017,0.083,0.092,0.09,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.077,0.075,0.103,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.077,0.099,0.07762,0,0,1 -0.34,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00025,0.067,0.23,0.173,0.133,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.134,0.079,0.17,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.004,0.038,0.108,0.035,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.089,0.099,0.08971,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.133,0.098,0.136,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.103,0.09,0.114,0,0,1 -0.34,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.023,0.076,0.104,0.073,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.123,0.115,0.106,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.083,0.097,0.085,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.083,0.087,0.096,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0028,0.02,0.093,0.104,0.089,0,0,1 -0.75,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.013,0.088,0.085,0.103,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.004,0.01,0.1,0.01,1,0,0 -0.54,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.095,0.088,0.109,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.076,0.083,0.092,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.093,0.09,0.103,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035,0.014,0.078,0.098,0.08,0,1,0 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.019,0.094,0.093,0.101,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.12,0.143,0.083,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.134,0.102,0.131,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.012,0.081,0.099,0.082,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.012,0.086,0.085,0.101,0,1,0 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.082,0.073,0.112,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0208,0.078,0.082,0.095,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.087,0.094,0.093,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.115,0.097,0.118,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.106,0.104,0.101,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.09,0.116,0.077,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.116,0.099,0.117,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0206,0.098,0.102,0.096,0,0,1 -0.41,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0002,0.0206,0.43,0.109,0.395,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.015,0.061,0.091,0.067,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.139,0.1,0.139,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.015,0.048,0.071,0.067,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.103,0.108,0.095,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0208,0.102,0.093,0.11,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.018,0.099,0.103,0.096,0,0,1 -0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.014,0.113,0.085,0.132,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0002,0.03,0.135,0.129,0.105,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.089,0.089,0.1,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.094,0.091,0.103,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00015,0.0208,0.097,0.103,0.095,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.018,0.093,0.095,0.098,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.101,0.101,0.1,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.001,0.05,0.031,0.161,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.022,0.072,0.116,0.062,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.109,0.109,0.1,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.101,0.109,0.092,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.103,0.114,0.091,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.113,0.104,0.106,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.083,0.067,0.124,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0208,0.055,0.085,0.065,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.031,0.107,0.104,0.103,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.15,0.142,0.106,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.028,0.138,0.113,0.122,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.02,0.069,0.097,0.071,0,1,0 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.014,0.089,0.099,0.09,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.12,0.103,0.117,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.087,0.079,0.109,0,0,1 -0.73,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.016,0.089,0.094,0.095,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.022,0.098,0.103,0.096,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.01,0.073,0.082,0.089,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.026,0.098,0.095,0.103,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.019,0.106,0.104,0.1,0,0,1 -0.82,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.014,0.133,0.1,0.134,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.073,0.43,0.109,0.395,0,0,1 -0.2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.093,0.1,0.093,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.019,0.069,0.099,0.06955,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0184,0.02,0.105,0.1,0.10489,0,1,0 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.113,0.084,0.134,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.024,0.093,0.104,0.089,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.025,0.087,0.098,0.088,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.025,0.141,0.128,0.11,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.017,0.088,0.089,0.099,0,0,1 -0.87,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0002,0.015,0.132,0.086,0.153,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.094,0.093,0.101,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.07,0.093,0.075,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.007,0.078,0.082,0.095,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.102,0.099,0.103,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00189,0.061,0.214,0.094,0.228,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.072,0.104,0.068,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.031,0.151,0.14,0.108,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.027,0.12,0.097,0.123,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.065,0.093,0.07,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.052,0.104,0.049,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.038,0.253,0.124,0.204,0,0,1 -0.34,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.028,0.16,0.151,0.106,0,0,1 -0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0002,0.011,0.187,0.095,0.197,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0062,0.017,0.072,0.089,0.081,0,1,0 -0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.003,0.0206,0.09,0.114,0.079,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.029,0.09,0.102,0.088,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.099,0.107,0.092,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.08,0.091,0.088,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.012,0.119,0.098,0.121,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.015,0.089,0.112,0.079,0,1,0 -0.56,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0002,0.025,0.138,0.115,0.119,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.031,0.11,0.108,0.102,0,0,1 -0.66,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0002,0.018,0.091,0.112,0.081,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0206,0.127,0.119,0.107,0,0,1 -0.37,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.027,0.009,0.087,0.084,0.105,0,1,0 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.029,0.107,0.101,0.106,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.027,0.109,0.11,0.099,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.017,0.067,0.087,0.077,0,1,0 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.101,0.109,0.092,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.06,0.075,0.08,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.015,0.157,0.091,0.172,0,0,1 -0.26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.151,0.197,0.076,0,0,1 -0.72,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0063,0.015,0.094,0.092,0.102,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.016,0.082,0.108,0.077,0,1,0 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.121,0.104,0.115,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.062,0.077,0.081,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.006,0.023,0.068,0.034,1,0,0 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.023,0.085,0.081,0.105,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.096,0.082,0.117,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.095,0.095,0.1,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.025,0.122,0.104,0.116,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.121,0.081,0.149,0,0,1 -0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.012,0.07,0.104,0.066,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.006,0.11,0.083,0.133,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.064,0.078,0.082,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0009,0.023,0.117,0.095,0.123,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.097,0.095,0.102,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00189,0.016,0.086,0.078,0.111,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.014,0.129,0.107,0.12,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.015,0.133,0.084,0.159,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.022,0.138,0.097,0.143,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.074,0.082,0.09,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.015,0.107,0.079,0.135,0,0,1 -0.75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00025,0.034,0.151,0.113,0.134,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.029,0.101,0.1,0.1,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0023,0.02,0.078,0.104,0.075,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00025,0.008,0.078,0.075,0.104,0,0,1 -0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.07,0.086,0.081,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.69,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.16,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.03,0.012,0.03,0.145,0.021,0,0,1 -0.72,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.075,0.101,0.074,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0208,0.172,0.101,0.171,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0208,0.08,0.102,0.078,0,1,0 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.184,0.086,0.214,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.127,0.092,0.138,0,0,1 -0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.013,0.12,0.084,0.143,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.092,0.092,0.101,0,0,1 -0.36,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.018,0.124,0.075,0.166,0,0,1 -0.23,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.033,0.232,0.134,0.174,0,0,1 -0.34,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0004,0.0206,0.109,0.091,0.12,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.026,0.122,0.116,0.105,0,0,1 -0.71,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0206,0.108,0.104,0.104,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.067,0.093,0.072,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.088,0.084,0.106,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.11,0.096,0.114,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.016,0.086,0.093,0.092,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0.084,0.139,0.06,1,0,0 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0.0004,0.024,0.103,0.091,0.114,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.114,0.085,0.134,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.09,0.097,0.093,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.008,0.08,0.077,0.104,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.004,0.098,0.073,0.133,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.095,0.095,0.101,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.019,0.076,0.088,0.086,0,0,1 -0.5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.018,0.109,0.077,0.141,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.105,0.092,0.114,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0002,0.035,0.172,0.099,0.173,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.118,0.092,0.129,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.016,0.128,0.099,0.129,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0208,0.095,0.089,0.107,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0005,0.022,0.089,0.104,0.084,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.117,0.098,0.114,0,0,1 -0.59,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0003,0.024,0.086,0.09,0.096,0,0,1 -0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0206,0.166,0.159,0.104,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5e-05,0.0419,0.213,0.194,0.11,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.025,0.09,0.104,0.085,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.169,0.121,0.14,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.206,0.159,0.129,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0.002,0.003,0.102,0.003,1,0,0 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.087,0.091,0.095,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.037,0.152,0.093,0.164,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.013,0.101,0.099,0.10181,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.117,0.086,0.136,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.142,0.1,0.142,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.103,0.097,0.107,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.041,0.139,0.165,0.084,0,1,0 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.025,0.131,0.091,0.144,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.029,0.116,0.116,0.099,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.101,0.09,0.112,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.018,0.133,0.102,0.13,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.029,0.1,0.102,0.098,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.03,0.09,0.096,0.094,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.09,0.099,0.091,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.156,0.123,0.126,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.087,0.079,0.109,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.106,0.128,0.084,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.086,0.093,0.092,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0.00025,0.039,0.139,0.127,0.11,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.026,0.089,0.098,0.091,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.135,0.086,0.157,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.026,0.132,0.103,0.128,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.02,0.083,0.114,0.072,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.134,0.084,0.16,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.103,0.091,0.113,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.102,0.103,0.093,0,0,1 -0.6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.04,0.068,0.1,0.067,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.018,0.089,0.089,0.1,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.12,0.098,0.122,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.02,0.114,0.09,0.128,0,0,1 -0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.011,0.132,0.085,0.154,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.118,0.088,0.135,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00859,0.037,0.131,0.165,0.079,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0208,0.093,0.09,0.104,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.02,0.091,0.078,0.117,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.103,0.104,0.098,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.016,0.107,0.104,0.102,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.091,0.103,0.089,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.08,0.085,0.094,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.106,0.102,0.105,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.023,0.1,0.094,0.106,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.121,0.081,0.148,0,0,1 -0.59,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00025,0.024,0.109,0.097,0.113,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.147,0.109,0.135,0,0,1 -0.83,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.009,0.069,0.074,0.093,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0074,0.014,0.108,0.108,0.1,0,1,0 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.013,0.083,0.088,0.095,0,1,0 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.022,0.103,0.095,0.109,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0208,0.11,0.104,0.106,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.006,0.139,0.086,0.161,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.023,0.139,0.104,0.131,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.135,0.066,0.206,0,0,1 -0.28,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.019,0.075,0.112,0.067,0,0,1 -0.21,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.028,0.143,0.125,0.114,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.159,0.104,0.153,0,0,1 -0.36,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0206,0.101,0.086,0.117,0,0,1 -0.26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.0012,0.04,0.168,0.157,0.106,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.023,0.106,0.125,0.085,0,1,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.18,0.13,0.139,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.087,0.087,0.1,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.023,0.084,0.092,0.092,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.097,0.099,0.098,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.025,0.125,0.122,0.102,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.017,0.132,0.093,0.141,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.034,0.091,0.097,0.094,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.1,0.086,0.116,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.022,0.124,0.081,0.152,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.029,0.099,0.114,0.088,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.015,0.146,0.116,0.124,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.137,0.116,0.116,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.017,0.095,0.079,0.121,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0038,0.022,0.076,0.13,0.058,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.016,0.066,0.1,0.065,0,1,0 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.134,0.103,0.131,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.077,0.08,0.096,0,0,1 -0.55,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.052,0.095,0.055,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.045,0.097,0.099,0.09778,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0206,0.116,0.11,0.105,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0062,0.0174,0.086,0.09,0.095,0,1,0 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.093,0.108,0.087,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.018,0.084,0.098,0.086,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.015,0.1,0.12,0.083,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.107,0.095,0.113,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.159,0.107,0.149,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.026,0.092,0.089,0.103,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.119,0.086,0.138,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.091,0.099,0.092,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.01,0.092,0.056,0.164,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.023,0.086,0.108,0.08,0,0,1 -0.51,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.001,0.022,0.069,0.104,0.066,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0005,0.106,0.114,0.093,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00959,0.019,0.079,0.1,0.08,0,1,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.025,0.098,0.104,0.092,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.028,0.141,0.111,0.127,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.032,0.187,0.174,0.107,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.033,0.132,0.121,0.11,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.03,0.125,0.074,0.169,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.009,0.073,0.099,0.07358,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.126,0.013,0.039,0.108,0.037,1,0,0 -0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.024,0.133,0.115,0.116,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.093,0.084,0.111,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.018,0.111,0.097,0.114,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.048,0.104,0.046,0,0,1 -0.56,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0002,0.0208,0.136,0.099,0.13709,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0002,0.045,0.125,0.082,0.152,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.103,0.104,0.098,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.094,0.084,0.111,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.109,0.101,0.108,0,0,1 -0.59,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0002,0.043,0.14,0.168,0.083,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0206,0.088,0.082,0.107,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.027,0.087,0.107,0.081,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.099,0.104,0.095,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.104,0.111,0.094,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.025,0.091,0.116,0.078,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.01,0.046,0.066,0.07,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.012,0.097,0.09,0.107,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.014,0.08,0.088,0.091,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.028,0.087,0.1,0.087,0,0,1 -0.57,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.025,0.099,0.112,0.089,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.025,0.104,0.12,0.086,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0469,0.172,0.183,0.094,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.083,0.089,0.093,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.003,0.073,0.078,0.094,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.029,0.128,0.112,0.114,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.025,0.084,0.104,0.079,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.015,0.063,0.068,0.092,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.07,0.085,0.082,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.091,0.093,0.098,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.007,0.11,0.093,0.118,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.008,0.044,0.084,0.052,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.101,0.116,0.086,0,0,1 -0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.105,0.109,0.097,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.09,0.1,0.09,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.032,0.123,0.129,0.096,0,0,1 -0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0002,0.022,0.106,0.075,0.141,0,0,1 -0.23,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.0206,0.078,0.107,0.073,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.098,0.072,0.136,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.037,0.162,0.147,0.11,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.024,0.086,0.101,0.085,0,0,1 -0.11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.191,0.123,0.156,0,0,1 -0.36,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.187,0.169,0.111,0,0,1 -0.32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0041,0.0206,0.117,0.151,0.078,0,0,1 -0.32,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.017,0.085,0.084,0.101,0,0,1 -0.57,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.091,0.116,0.077,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.07,0.099,0.071,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.023,0.092,0.104,0.088,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.028,0.146,0.11,0.133,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.134,0.103,0.13,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.022,0.105,0.109,0.096,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.143,0.104,0.134,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.034,0.164,0.082,0.2,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.015,0.095,0.09,0.106,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.099,0.121,0.082,0,0,1 -0.61,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0037,0.024,0.077,0.124,0.062,0,0,1 -0.1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.04,0.09,0.111,0.081,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0009,0.028,0.126,0.129,0.098,0,0,1 -0.11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.116,0.104,0.109,0,0,1 -0.34,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0.0002,0.05,0.223,0.169,0.131,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.024,0.126,0.092,0.136,0,0,1 -0.52,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.116,0.094,0.123,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00189,0.028,0.12,0.116,0.102,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.036,0.176,0.143,0.123,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.086,0.098,0.088,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.013,0.077,0.065,0.118,0,0,1 -0.52,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0005,0.016,0.08,0.082,0.098,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.092,0.088,0.105,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.112,0.101,0.111,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.077,0.091,0.084,0,0,1 -0.63,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0008,0.019,0.098,0.089,0.111,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.015,0.092,0.108,0.085,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.078,0.082,0.096,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.003,0.014,0.103,0.01347,1,0,0 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.117,0.099,0.11794,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0.002,0.0058,0.103,0.00558,1,0,0 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.112,0.101,0.111,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.111,0.097,0.114,0,0,1 -0.25,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.034,0.101,0.099,0.10181,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.024,0.102,0.077,0.134,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.011,0.046,0.099,0.104,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.099,0.08,0.124,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.014,0.086,0.075,0.114,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.102,0.1,0.102,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.022,0.075,0.09,0.084,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.062,0.075,0.083,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.102,0.096,0.106,0,0,1 -0.7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0006,0.026,0.144,0.12,0.12,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.018,0.102,0.082,0.124,0,0,1 -0.49,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.081,0.114,0.071,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0097,0.005,0.037,0.072,0.051,1,0,0 -0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.018,0.112,0.104,0.106,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0206,0.104,0.09,0.116,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.028,0.1,0.099,0.1008,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.135,0.11,0.123,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.11118,0.099,0.11207,0,0,1 -0.76,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0008,0.011,0.094,0.093,0.101,0,0,1 -0.64,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.014,0.117,0.097,0.121,0,0,1 -0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.117,0.092,0.126,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.015,0.114,0.099,0.115,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.124,0.116,0.106,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.008,0.103,0.073,0.141,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.014,0.079,0.077,0.103,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.088,0.087,0.101,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.022,0.081,0.09,0.09,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.015,0.085,0.073,0.116,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.088,0.084,0.105,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.1,0.1,0.1,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.027,0.094,0.114,0.082,0,0,1 -0.21,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0.00025,0.013,0.054,0.107,0.051,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.081,0.094,0.086,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.092,0.091,0.101,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.0419,0.164,0.155,0.106,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.093,0.101,0.091,0,0,1 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0006,0.01,0.096,0.093,0.104,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.012,0.113,0.101,0.111,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.114,0.092,0.124,0,0,1 -0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.036,0.112,0.116,0.096,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.03,0.119,0.103,0.115,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.022,0.12,0.085,0.141,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.028,0.082,0.089,0.093,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.027,0.107,0.086,0.125,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.017,0.103,0.096,0.107,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.019,0.099,0.072,0.139,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.031,0.16,0.09,0.177,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.025,0.095,0.1,0.095,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.045,0.161,0.165,0.097,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.024,0.08,0.098,0.081,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.106,0.087,0.121,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.072,0.069,0.104,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.024,0.09,0.092,0.098,0,0,1 -0.73,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.018,0.198,0.1,0.198,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.017,0.072,0.107,0.068,0,1,0 -0.23,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.029,0.136,0.138,0.099,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.027,0.101,0.096,0.105,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.019,0.165,0.095,0.174,0,0,1 -0.52,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.035,0.0208,0.077,0.11,0.07,0,1,0 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.029,0.125,0.096,0.13,0,0,1 -0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.161,0.107,0.151,0,0,1 -0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.017,0.113,0.094,0.12,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.076,0.12,0.104,0.116,0,0,1 -0.76,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0066,0.01,0.091,0.104,0.088,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.037,0.142,0.113,0.126,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.027,0.133,0.104,0.127,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.009,0.092,0.071,0.129,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.098,0.097,0.101,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.003,0.079,0.08,0.098,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.167,0.143,0.117,0,0,1 -0.36,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,4e-05,0.0206,0.149,0.165,0.09,0,0,1 -0.74,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0014,0.0206,0.109,0.096,0.114,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0206,0.124,0.096,0.129,0,0,1 -0.51,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.077,0.077,0.099,0,0,1 -0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.213,0.099,0.216,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.016,0.125,0.102,0.123,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00025,0.023,0.099,0.095,0.104,0,0,1 -0.55,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00859,0.003,0.073,0.076,0.096,0,1,0 -0.41,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.103,0.085,0.12,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.025,0.123,0.115,0.107,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.012,0.103,0.079,0.131,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.06,0.065,0.092,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.124,0.108,0.115,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.136,0.092,0.149,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.097,0.088,0.11,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4e-05,0.029,0.144,0.158,0.091,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.003,0.0095,0.103,0.00914,1,0,0 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.02,0.139,0.102,0.137,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.026,0.086,0.088,0.098,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.022,0.098,0.129,0.076,0,1,0 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.006,0.016,0.099,0.095,0.104,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.097,0.104,0.094,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.031,0.136,0.107,0.127,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.019,0.175,0.099,0.17641,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0208,0.094,0.095,0.099,0,0,1 -0.7,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00208,0.017,0.131,0.1,0.13,0,0,1 -0.7,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0013,0.018,0.094,0.086,0.11,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.009,0.084,0.087,0.096,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.011,0.089,0.075,0.118,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.003,0.046,0.058,0.079,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.119,0.092,0.129,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.016,0.097,0.078,0.125,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.01,0.057,0.089,0.064,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.029,0.096,0.103,0.093,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,2e-05,0.015,0.077,0.094,0.082,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.023,0.102,0.099,0.10282,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.117,0.1,0.118,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0208,0.123,0.091,0.135,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.022,0.076,0.101,0.075,0,1,0 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.022,0.083,0.103,0.081,0,1,0 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.079,0.087,0.091,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.017,0.104,0.076,0.137,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.028,0.131,0.095,0.138,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0208,0.08,0.089,0.091,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0206,0.118,0.094,0.126,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0.04,0.022,0.075,0.101,0.074,0,1,0 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.034,0.183,0.098,0.186,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.024,0.096,0.098,0.099,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.141,0.133,0.106,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.102,0.094,0.109,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0206,0.149,0.104,0.143,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.108,0.103,0.105,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.013,0.091,0.087,0.104,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.136,0.097,0.14,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.032,0.129,0.077,0.168,0,0,1 -0.17,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.028,0.02,0.086,0.099,0.087,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.02,0.098,0.088,0.112,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.111,0.1,0.111,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.097,0.079,0.122,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.092,0.095,0.097,0,0,1 -0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.015,0.135,0.104,0.127,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.023,0.088,0.091,0.097,0,1,0 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0092,0.025,0.106,0.113,0.094,0,1,0 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.141,0.109,0.129,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.08,0.072,0.11,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.113,0.095,0.119,0,0,1 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0206,0.103,0.112,0.093,0,0,1 -0.32,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.037,0.139,0.134,0.104,0,0,1 -0.43,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00095,0.019,0.101,0.081,0.125,0,0,1 -0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00099,0.017,0.114,0.096,0.119,0,0,1 -0.62,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.013,0.011,0.087,0.081,0.107,0,0,1 -0.62,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0065,0.018,0.097,0.129,0.076,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.011,0.069,0.064,0.107,0,0,1 -0.55,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.095,0.104,0.09,0,0,1 -0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.023,0.098,0.103,0.095,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.011,0.095,0.097,0.098,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.014,0.098,0.097,0.11,0,0,1 -0.08,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.031,0.026,0.046,0.1,0.046,1,0,0 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.073,0.077,0.095,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00093,0.028,0.155,0.101,0.153,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0.01,0.032,0.116,0.028,1,0,0 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.016,0.105,0.08,0.131,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.022,0.092,0.096,0.096,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.019,0.113,0.103,0.11,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0208,0.083,0.119,0.069,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.033,0.129,0.123,0.105,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0208,0.159,0.113,0.14,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.018,0.114,0.098,0.12,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.017,0.14,0.096,0.147,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.013,0.092,0.094,0.098,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.029,0.118,0.142,0.083,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.022,0.099,0.116,0.085,0,1,0 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.028,0.141,0.099,0.142,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0.004,0.0058,0.08,0.007,1,0,0 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.098,0.083,0.119,0,0,1 -0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.019,0.104,0.11,0.094,0,0,1 -0.43,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.16,0.103,0.156,0,0,1 -0.76,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00065,0.015,0.111,0.096,0.116,0,0,1 -0.54,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.025,0.128,0.112,0.114,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.017,0.146,0.122,0.119,0,1,0 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.028,0.225,0.168,0.134,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.02,0.035,0.099,0.03528,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.023,0.181,0.111,0.164,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.019,0.153,0.104,0.147,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.025,0.167,0.119,0.14,0,0,1 -0.22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.151,0.104,0.144,0,0,1 -0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.002,0.023,0.102,0.116,0.088,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.104,0.111,0.093,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.109,0.093,0.117,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.161,0.09,0.18,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.101,0.081,0.124,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.03,0.068,0.085,0.08,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.015,0.093,0.087,0.107,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.024,0.127,0.084,0.152,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.018,0.095,0.082,0.116,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0206,0.115,0.12,0.096,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.113,0.098,0.116,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.018,0.098,0.087,0.112,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.015,0.078,0.089,0.088,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.017,0.101,0.093,0.109,0,0,1 -0.46,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0017,0.0206,0.139,0.11,0.127,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00094,0.02,0.102,0.086,0.119,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.025,0.149,0.109,0.137,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00071,0.043,0.129,0.162,0.079,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.06,0.25,0.08,0.312,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.017,0.16,0.111,0.149,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.015,0.11,0.088,0.125,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.068,0.099,0.06854,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.088,0.099,0.0887,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.098,0.099,0.09879,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.121,0.113,0.107,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.023,0.1,0.111,0.09,0,0,1 -0.73,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.008,0.061,0.049,0.124,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00052,0.014,0.129,0.096,0.134,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0.004,0.012,0.126,0.01,1,0,0 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045,0.014,0.039,0.116,0.033,1,0,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.034,0.136,0.073,0.185,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.112,0.097,0.116,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.043,0.25,0.101,0.247,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.173,0.1,0.173,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.094,0.096,0.098,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0.009,0.036,0.09,0.04,1,0,0 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.015,0.096,0.08,0.121,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00042,0.019,0.109,0.077,0.138,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.019,0.092,0.087,0.105,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.102,0.095,0.108,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.069,0.074,0.093,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.01,0.12,0.056,0.213,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.143,0.087,0.164,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.023,0.141,0.114,0.125,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.023,0.1,0.111,0.09,0,0,1 -0.81,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0019,0.015,0.071,0.078,0.091,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0012,0.0206,0.115,0.097,0.114,0,0,1 -0.73,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0039,0.009,0.062,0.054,0.115,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.096,0.095,0.101,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.141,0.115,0.123,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.02,0.067,0.073,0.092,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.02,0.093,0.103,0.09,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.022,0.099,0.104,0.096,0,0,1 -0.67,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00042,0.014,0.14,0.098,0.143,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0206,0.094,0.097,0.097,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.025,0.09159,0.1,0.0915,0,1,0 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.073,0.091,0.081,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.101,0.095,0.106,0,0,1 -0.25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.078,0.088,0.089,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.181,0.121,0.15,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.103,0.099,0.104,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.023,0.136,0.107,0.127,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.111,0.102,0.108,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.008,0.091,0.086,0.106,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.114,0.093,0.123,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.019,0.108,0.104,0.103,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.106,0.1,0.106,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.024,0.106,0.097,0.109,0,0,1 -0.48,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.00077,0.011,0.081,0.086,0.095,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0041,0.04,0.159,0.162,0.098,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.098,0.108,0.09,0,0,1 -0.18,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00083,0.029,0.068,0.116,0.058,0,0,1 -0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00071,0.031,0.125,0.139,0.09,0,0,1 -0.29,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0014,0.034,0.147,0.149,0.099,0,0,1 -0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0033,0.02,0.116,0.104,0.11,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.01,0.089,0.091,0.098,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.004,0.073,0.06,0.122,0,0,1 -0.73,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.069,0.08,0.086,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.026,0.086,0.091,0.094,0,0,1 -0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0206,0.134,0.104,0.128,0,0,1 -0.53,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.0206,0.176,0.102,0.171,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.019,0.135,0.102,0.132,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.111,0.095,0.117,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.118,0.104,0.112,0,0,1 -0.43,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0065,0.018,0.06,0.089,0.067,0,1,0 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.017,0.102,0.076,0.134,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.125,0.104,0.118,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.024,0.094,0.096,0.098,0,0,1 -0.63,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0018,0.02,0.152,0.116,0.129,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.118,0.089,0.132,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.11118,0.099,0.11207,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.002,0.087,0.054,0.161,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.032,0.16,0.153,0.105,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.088,0.08,0.11,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.023,0.125,0.104,0.117,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.027,0.122,0.083,0.147,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0.014,0.014,0.131,0.011,1,0,0 -0.53,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.016,0.115,0.09,0.128,0,0,1 -0.53,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.024,0.124,0.096,0.129,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.017,0.093,0.098,0.094,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.018,0.16,0.11,0.146,0,0,1 -0.61,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.061,0.078,0.081,0,0,1 -0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.142,0.091,0.156,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.022,0.164,0.101,0.162,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.048,0.032,0.099,0.03225,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.028,0.11,0.099,0.111,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.01,0.082,0.086,0.095,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.034,0.133,0.084,0.159,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.08,0.113,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.055,0.219,0.08,0.274,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.116,0.09,0.129,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0206,0.065,0.073,0.09,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.02,0.095,0.108,0.088,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.017,0.132,0.102,0.13,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.107,0.11,0.098,0,0,1 -0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0069,0.0174,0.097,0.087,0.112,0,1,0 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.023,0.099,0.098,0.101,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.023,0.122,0.08,0.152,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.149,0.102,0.147,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.023,0.131,0.115,0.113,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.022,0.074,0.1,0.07392,0,1,0 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.143,0.091,0.157,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.0206,0.076,0.086,0.088,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.105,0.097,0.109,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.019,0.139,0.096,0.145,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0037,0.006,0.065,0.088,0.074,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.34,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1e-05,0.038,0.205,0.184,0.111,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.019,0.118,0.107,0.11,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.0208,0.116,0.114,0.102,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.022,0.172,0.11,0.157,0,0,1 -0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0419,0.214,0.145,0.148,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.029,0.123,0.131,0.094,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00042,0.025,0.093,0.114,0.082,0,0,1 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.142,0.099,0.143,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.033,0.121,0.108,0.112,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.048,0.022,0.099,0.02217,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.031,0.11,0.104,0.104,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.017,0.14,0.077,0.182,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.016,0.083,0.089,0.093,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.124,0.101,0.122,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.014,0.097,0.087,0.111,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.013,0.101,0.093,0.108,0,1,0 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.014,0.107,0.077,0.139,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.011,0.124,0.085,0.145,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.026,0.13,0.113,0.115,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00034,0.0206,0.095,0.099,0.095,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0208,0.098,0.112,0.087,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.031,0.168,0.098,0.171,0,0,1 -0.49,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.0206,0.126,0.083,0.152,0,0,1 -0.29,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.022,0.087,0.095,0.092,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.013,0.157,0.091,0.172,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.156,0.116,0.134,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0029,0.019,0.09,0.097,0.093,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00077,0.028,0.11,0.091,0.121,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.16,0.109,0.147,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.025,0.114,0.109,0.104,0,0,1 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.107,0.099,0.107,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.076,0.079,0.096,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.01,0.101,0.08,0.127,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.017,0.09,0.083,0.109,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.018,0.12,0.085,0.14,0,0,1 -0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.022,0.109,0.091,0.119,0,0,1 -0.49,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.0206,0.137,0.08,0.17,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.019,0.088,0.081,0.109,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.078,0.1,0.07792,0,1,0 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.053,0.129,0.099,0.13003,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.017,0.06,0.077,0.078,0,0,1 -0.21,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0024,0.035,0.171,0.149,0.115,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.018,0.131,0.098,0.133,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.142,0.107,0.133,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00078,0.019,0.085,0.11,0.077,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.02,0.109,0.115,0.094,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.012,0.075,0.088,0.085,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.025,0.089,0.097,0.092,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.018,0.072,0.087,0.082,0,1,0 -0.82,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.014,0.131,0.108,0.121,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.099,0.079,0.126,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.019,0.078,0.085,0.091,0,0,1 -0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.028,0.122,0.113,0.109,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0097,0.011,0.077,0.079,0.097,0,1,0 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.114,0.11,0.104,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.067,0.088,0.076,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.028,0.091,0.099,0.09173,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.024,0.11,0.099,0.111,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.023,0.135,0.107,0.126,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0044,0.026,0.108,0.112,0.096,0,0,1 -0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0033,0.012,0.091,0.092,0.099,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.0208,0.079,0.096,0.083,0,1,0 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.09,0.099,0.091,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.187,0.089,0.21,0,0,1 -0.41,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.025,0.022,0.099,0.02217,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.027,0.099,0.088,0.113,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00064,0.0208,0.092,0.099,0.093,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.013,0.146,0.089,0.165,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.119,0.095,0.125,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0208,0.084,0.086,0.098,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.022,0.088,0.09,0.098,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.022,0.128,0.075,0.172,0,0,1 -0.25,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0007,0.0206,0.183,0.141,0.13,0,0,1 -0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.103,0.095,0.109,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.0206,0.172,0.115,0.15,0,0,1 -0.65,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0.0013,0.0208,0.162,0.119,0.137,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0206,0.098,0.103,0.095,0,0,1 -0.71,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00016,0.024,0.165,0.135,0.123,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.025,0.087,0.111,0.078,0,0,1 -0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00064,0.017,0.113,0.099,0.115,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.093,0.082,0.113,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.0208,0.154,0.099,0.156,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.02,0.141,0.104,0.134,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.121,0.096,0.127,0,0,1 -0.7,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.00015,0.015,0.085,0.091,0.094,0,0,1 -0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.124,0.131,0.095,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.133,0.11,0.121,0,0,1 -0.53,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.078,0.0206,0.078,0.116,0.067,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.023,0.15,0.125,0.12,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0208,0.084,0.087,0.096,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.142,0.104,0.135,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.106,0.091,0.117,0,0,1 -0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00082,0.015,0.083,0.076,0.117,0,0,1 -0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0032,0.014,0.076,0.086,0.088,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.0208,0.089,0.114,0.078,0,1,0 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.158,0.087,0.183,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.0206,0.104,0.097,0.107,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.006,0.015,0.089,0.017,1,0,0 -0.68,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00096,0.0206,0.104,0.1,0.104,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.147,0.111,0.132,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.008,0.051,0.088,0.058,1,0,0 -0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0064,0.024,0.141,0.126,0.112,0,1,0 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.012,0.103,0.088,0.118,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.095,0.085,0.111,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.111,0.092,0.121,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.12,0.102,0.118,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.098,0.084,0.117,0,0,1 -0.63,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.09,0.091,0.1,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.094,0.076,0.124,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.088,0.086,0.102,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.022,0.12,0.096,0.126,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.144,0.094,0.153,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.014,0.091,0.097,0.094,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.016,0.1,0.088,0.113,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.093,0.097,0.096,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.114,0.111,0.103,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.018,0.128,0.114,0.112,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.022,0.078,0.077,0.102,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.103,0.089,0.115,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.032,0.084,0.084,0.1,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.025,0.097,0.091,0.107,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.132,0.113,0.116,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.022,0.1,0.098,0.102,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.025,0.105,0.101,0.104,0,0,1 -0.28,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0024,0.0208,0.125,0.099,0.126,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.1,0.081,0.123,0,0,1 -0.56,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.018,0.104,0.099,0.10483,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.011,0.122,0.113,0.108,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.023,0.135,0.097,0.14,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.023,0.132,0.094,0.14,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.029,0.136,0.144,0.094,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0.014,0.042,0.104,0.039,1,0,0 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.11118,0.099,0.11207,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.012,0.087,0.072,0.121,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.032,0.108,0.107,0.1,0,0,1 -0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.015,0.083,0.086,0.097,0,0,1 -0.54,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00046,0.03,0.116,0.104,0.11,0,0,1 -0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0054,0.018,0.087,0.091,0.095,0,0,1 -0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.013,0.077,0.099,0.07762,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00809,0.025,0.09,0.095,0.095,0,1,0 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.096,0.078,0.124,0,0,1 -0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.03,0.174,0.135,0.129,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.04,0.204,0.084,0.242,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.027,0.113,0.11,0.102,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.024,0.084,0.124,0.068,0,1,0 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.034,0.091,0.11,0.083,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.02,0.125,0.101,0.124,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.009,0.082,0.062,0.133,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.03,0.117,0.097,0.12,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0174,0.101,0.108,0.094,0,1,0 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.022,0.178,0.126,0.142,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.151,0.104,0.144,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00078,0.025,0.148,0.123,0.12,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.0206,0.127,0.104,0.121,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00829,0.0208,0.104,0.104,0.097,0,1,0 -0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.472,0.017,0.034,0.116,0.029,1,0,0 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.007,0.054,0.085,0.063,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.088,0.094,0.094,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.095,0.1,0.095,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.008,0.093,0.058,0.16,0,0,1 -0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00074,0.0206,0.074,0.077,0.097,0,0,1 -0.5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.126,0.107,0.117,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.009,0.093,0.097,0.097,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.024,0.123,0.114,0.108,0,0,1 -0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.023,0.111,0.104,0.105,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.014,0.089,0.099,0.089,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0206,0.09,0.081,0.111,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.119,0.099,0.12,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.016,0.082,0.082,0.1,0,1,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.165,0.089,0.186,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.024,0.122,0.112,0.109,0,0,1 -0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00889,0.0174,0.075,0.097,0.077,0,1,0 -0.53,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0039,0.0206,0.114,0.116,0.097,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.026,0.125,0.099,0.126,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.103,0.073,0.142,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.016,0.083,0.07,0.118,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.094,0.08,0.119,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0029,0.025,0.074,0.099,0.075,0,0,1 -0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00084,0.033,0.222,0.182,0.122,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.071,0.072,0.099,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.022,0.086,0.109,0.079,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.027,0.084,0.103,0.081,0,0,1 -0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.109,0.084,0.13,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0208,0.129,0.108,0.12,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.019,0.14,0.096,0.145,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.105,0.092,0.114,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.012,0.089,0.074,0.121,0,1,0 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.027,0.136,0.127,0.107,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.071,0.223,0.1,0.222,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.016,0.075,0.093,0.08,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.022,0.121,0.102,0.118,0,0,1 -0.59,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.004,0.013,0.12,0.094,0.128,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.01,0.097,0.065,0.15,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.019,0.092,0.093,0.098,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.025,0.165,0.09,0.184,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.095,0.09,0.106,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.0206,0.111,0.1,0.112,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.103,0.09,0.114,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.14,0.104,0.132,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.023,0.09,0.081,0.112,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.063,0.066,0.096,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.009,0.087,0.078,0.112,0,0,1 -0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.028,0.237,0.116,0.203,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.082,0.088,0.093,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0078,0.02,0.095,0.099,0.096,0,1,0 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.026,0.098,0.093,0.105,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.113,0.103,0.11,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.013,0.138,0.083,0.166,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.02,0.087,0.061,0.143,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.026,0.151,0.116,0.13,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.076,0.081,0.093,0,0,1 -0.54,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.0206,0.12,0.101,0.118,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.026,0.091,0.1,0.0909,0,1,0 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.019,0.089,0.085,0.104,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.016,0.09,0.089,0.101,0,1,0 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.023,0.083,0.089,0.094,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.024,0.081,0.075,0.109,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.07,0.086,0.081,0,0,1 -0.23,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0041,0.019,0.066,0.085,0.077,0,0,1 -0.5,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.018,0.113,0.101,0.112,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0206,0.112,0.092,0.121,0,0,1 -0.7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0023,0.027,0.095,0.107,0.088,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.231,0.092,0.251,0,0,1 -0.62,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0208,0.13,0.099,0.131,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.019,0.115,0.098,0.118,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.086,0.088,0.099,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.113,0.11,0.103,0,0,1 -0.47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.111,0.093,0.119,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0025,0.023,0.09,0.091,0.099,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.063,0.081,0.078,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.028,0.109,0.09,0.121,0,0,1 -0.51,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.058,0.0174,0.077,0.111,0.069,0,1,0 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.088,0.095,0.092,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.093,0.091,0.102,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.082,0.099,0.08266,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0018,0.018,0.092,0.099,0.09274,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.018,0.124,0.099,0.125,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.023,0.118,0.13,0.091,0,1,0 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.025,0.089,0.099,0.089,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.087,0.084,0.103,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.09,0.085,0.106,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.085,0.079,0.107,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.074,0.116,0.063,0,0,1 -0.25,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0011,0.026,0.212,0.175,0.121,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.027,0.099,0.1,0.099,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.102,0.107,0.096,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.111,0.098,0.114,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.014,0.117,0.102,0.114,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.006,0.082,0.074,0.11,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.23,0.015,0.036,0.134,0.027,1,0,0 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.089,0.101,0,0,1 -0.02,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.145,0.093,0.155,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0206,0.073,0.093,0.079,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.088,0.087,0.1,0,0,1 -0.69,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00071,0.0206,0.091,0.094,0.098,0,0,1 -0.59,1,1,0,1,0,0,0,1,0,1,0,0,0,0,0,8e-05,0.0206,0.125,0.078,0.161,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.0174,0.095,0.087,0.11,0,1,0 -0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.126,0.124,0.101,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.025,0.147,0.113,0.129,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.0208,0.103,0.092,0.112,0,0,1 -0.51,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.002,0.0206,0.109,0.091,0.12,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0206,0.097,0.069,0.141,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.002,0.004,0.101,0.004,1,0,0 -0.59,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0097,0.0174,0.081,0.096,0.084,0,1,0 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0206,0.098,0.085,0.114,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.02,0.123,0.115,0.107,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.182,0.137,0.133,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.012,0.061,0.087,0.07,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.019,0.109,0.078,0.139,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.105,0.087,0.12,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.138,0.158,0.088,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.015,0.14,0.089,0.157,0,0,1 -0.12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.152,0.08,0.19,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.097,0.088,0.11,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0206,0.142,0.093,0.153,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.016,0.182,0.099,0.18346,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.111,0.108,0.102,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.025,0.114,0.107,0.106,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.013,0.156,0.139,0.112,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.017,0.076,0.099,0.07661,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.023,0.103,0.102,0.1,0,0,1 -0.68,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0026,0.02,0.152,0.141,0.108,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.025,0.113,0.076,0.149,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.019,0.067,0.095,0.072,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.015,0.102,0.096,0.106,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0208,0.127,0.124,0.102,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.013,0.119,0.088,0.135,0,0,1 -0.29,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.024,0.0096,0.063,0.12,0.053,1,0,0 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.124,0.086,0.144,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.013,0.111,0.092,0.12,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.165,0.139,0.118,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.085,0.084,0.102,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0208,0.113,0.102,0.111,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.027,0.102,0.094,0.109,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.02,0.124,0.096,0.13,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.025,0.09,0.103,0.088,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.024,0.11118,0.099,0.11207,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.022,0.11118,0.099,0.11207,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.015,0.11118,0.099,0.11207,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.015,0.11118,0.099,0.11207,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.017,0.074,0.107,0.069,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.028,0.099,0.083,0.119,0,0,1 -0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.02,0.107,0.104,0.104,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01209,0.034,0.094,0.092,0.102,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.143,0.09,0.159,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.068,0.087,0.078,0,0,1 -0.2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.106,0.091,0.116,0,0,1 -0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.212,0.116,0.181,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.105,0.083,0.125,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.013,0.07,0.093,0.075,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.018,0.102,0.092,0.111,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.104,0.104,0.098,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.012,0.109,0.078,0.14,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.016,0.107,0.115,0.093,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.143,0.131,0.109,0,0,1 -0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0005,0.024,0.1,0.107,0.093,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0208,0.073,0.074,0.098,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.084,0.099,0.08467,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.024,0.106,0.1,0.106,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.022,0.083,0.099,0.08366,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.019,0.083,0.108,0.077,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.034,0.165,0.152,0.108,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.014,0.11118,0.099,0.11207,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.141,0.116,0.12,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.017,0.081,0.099,0.08165,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.019,0.123,0.116,0.106,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.015,0.083,0.078,0.106,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.025,0.157,0.107,0.147,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.0206,0.131,0.091,0.144,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.017,0.075,0.081,0.093,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11,0.096,0.114,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0208,0.107,0.099,0.108,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.007,0.014,0.111,0.013,1,0,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.002,0.002,0.084,0.002,1,0,0 -0.52,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00093,0.013,0.086,0.064,0.134,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.019,0.061,0.082,0.074,0,1,0 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.02,0.092,0.095,0.097,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.019,0.083,0.09,0.092,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.142,0.099,0.144,0,0,1 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0208,0.087,0.095,0.091,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.022,0.079,0.08,0.099,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.018,0.143,0.087,0.164,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.012,0.095,0.08,0.119,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0014,0.025,0.101,0.103,0.096,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.00208,0.031,0.116,0.12,0.096,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.169,0.099,0.17036,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0208,0.087,0.075,0.115,0,0,1 -0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.016,0.098,0.075,0.131,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.167,0.088,0.189,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.112,0.096,0.117,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.095,0.078,0.122,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.004,0.052,0.075,0.069,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0028,0.024,0.111,0.08,0.139,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.02,0.117,0.08,0.145,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.023,0.111,0.099,0.112,0,1,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.019,0.09,0.098,0.092,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.002,0.099,0.072,0.138,0,0,1 -0.33,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0018,0.024,0.12,0.099,0.121,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.029,0.164,0.138,0.119,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.054,0.148,0.148,0.1,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.098,0.083,0.118,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.023,0.121,0.101,0.12,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.138,0.09,0.154,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.005,0.095,0.083,0.114,0,1,0 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.14,0.11,0.127,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.019,0.108,0.093,0.116,0,0,1 -0.26,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0092,0.016,0.104,0.112,0.093,0,1,0 -0.79,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.0206,0.11118,0.099,0.11207,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,6e-05,0.0469,0.157,0.168,0.094,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.029,0.092,0.093,0.1,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.085,0.244,0.098,0.249,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.029,0.135,0.081,0.167,0,0,1 -0.27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.00189,0.04,0.187,0.188,0.1,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0025,0.0206,0.118,0.1,0.118,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.022,0.122,0.11,0.111,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.022,0.099,0.104,0.096,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.02,0.141,0.113,0.125,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.112,0.09,0.124,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.11118,0.099,0.11207,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.121,0.109,0.111,0,0,1 -0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.113,0.083,0.136,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.015,0.093,0.071,0.132,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.024,0.118,0.091,0.13,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.096,0.086,0.112,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.121,0.107,0.114,0,0,1 -0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0174,0.137,0.103,0.133,0,1,0 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.137,0.104,0.129,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.134,0.116,0.114,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.113,0.099,0.114,0,0,1 -0.56,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0011,0.022,0.103,0.09,0.114,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.027,0.08,0.083,0.097,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.008,0.121,0.095,0.127,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.102,0.097,0.105,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.019,0.138,0.091,0.155,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.013,0.153,0.1,0.152,0,0,1 -0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.019,0.0174,0.093,0.12,0.077,0,1,0 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.099,0.099,0.09979,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.017,0.083,0.097,0.086,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.019,0.109,0.104,0.104,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0022,0.017,0.115,0.098,0.118,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.012,0.044,0.087,0.051,1,0,0 -0.42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0072,0.013,0.093,0.09,0.104,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.139,0.104,0.134,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.008,0.105,0.082,0.127,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00101,0.018,0.109,0.1,0.109,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.009,0.096,0.075,0.127,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.049,0.192,0.109,0.176,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.026,0.111,0.1,0.111,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.014,0.103,0.088,0.118,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.099,0.102,0.097,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.015,0.053,0.076,0.07,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.0206,0.124,0.102,0.122,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.023,0.152,0.096,0.158,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108,0.004,0.014,0.098,0.014,1,0,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.032,0.11118,0.099,0.11207,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.162,0.081,0.2,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.155,0.101,0.154,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.128,0.102,0.126,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.12,0.098,0.122,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.088,0.114,0.076,0,0,1 -0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.012,0.097,0.093,0.104,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00089,0.018,0.103,0.098,0.105,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.109,0.091,0.12,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.116,0.104,0.109,0,0,1 -0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.134,0.096,0.14,0,0,1 -0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.02,0.093,0.084,0.11,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.121,0.129,0.094,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0092,0.018,0.087,0.104,0.084,0,1,0 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.121,0.123,0.098,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.139,0.115,0.121,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.076,0.103,0.073,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.188,0.013,0.063,0.119,0.053,1,0,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.018,0.087,0.089,0.098,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.138,0.083,0.166,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.016,0.075,0.076,0.099,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.07,0.077,0.091,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.02,0.109,0.085,0.129,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.017,0.121,0.112,0.108,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.101,0.094,0.107,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.09,0.098,0.092,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.024,0.11,0.092,0.119,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0206,0.125,0.084,0.149,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.084,0.091,0.092,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.07,0.058,0.122,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.02,0.09,0.092,0.098,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0144,0.011,0.051,0.068,0.075,0,1,0 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.094,0.1,0.094,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.016,0.072,0.085,0.085,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.109,0.095,0.116,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.02,0.113,0.103,0.11,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.1,0.079,0.127,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.019,0.092,0.104,0.088,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.076,0.094,0.081,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.11,0.112,0.098,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.0174,0.066,0.066,0.1,0,1,0 -0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.016,0.064,0.097,0.066,0,1,0 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.025,0.161,0.083,0.195,0,0,1 -0.6,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0305,0.01,0.032,0.063,0.051,1,0,0 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0208,0.11,0.095,0.116,0,0,1 -0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.038,0.131,0.104,0.125,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.106,0.092,0.115,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0206,0.103,0.116,0.088,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.097,0.089,0.109,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0208,0.082,0.076,0.108,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.091,0.102,0.09,0,0,1 -0.61,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.014,0.11,0.099,0.11088,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0206,0.09,0.092,0.098,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.088,0.104,0.084,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.023,0.068,0.094,0.072,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.118,0.102,0.115,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.127,0.101,0.126,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.14,0.163,0.086,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.123,0.091,0.135,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046,0.01,0.048,0.098,0.049,1,0,0 -0.6,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0027,0.0206,0.088,0.107,0.082,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.102,0.099,0.10282,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.015,0.12,0.094,0.127,0,0,1 -0.73,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0022,0.025,0.11,0.128,0.085,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0003,0.02,0.093,0.099,0.093,0,0,1 -0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.11,0.102,0.108,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.028,0.096,0.094,0.103,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.0206,0.176,0.111,0.158,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.118,0.111,0.107,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.028,0.11,0.11,0.1,0,0,1 -0.31,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.027,0.163,0.094,0.172,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00208,0.0206,0.101,0.1,0.101,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.139,0.107,0.129,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.0096,0.035,0.083,0.042,1,0,0 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.026,0.143,0.107,0.134,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.14,0.141,0.099,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.083,0.131,0.063,0,0,1 -0.87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.012,0.103,0.087,0.118,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.016,0.071,0.104,0.067,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.014,0.091,0.085,0.108,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.035,0.166,0.135,0.123,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.025,0.08,0.088,0.091,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0007,0.014,0.11,0.088,0.124,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.099,0.104,0.091,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0206,0.114,0.098,0.117,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.015,0.075,0.09,0.083,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.012,0.067,0.096,0.069,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.1059,0.226,0.065,0.349,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.468,0.007,0.021,0.11,0.019,1,0,0 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.028,0.144,0.116,0.123,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.024,0.134,0.092,0.145,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0022,0.023,0.099,0.079,0.125,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.027,0.15,0.122,0.124,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.025,0.134,0.112,0.12,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.103,0.092,0.112,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0206,0.093,0.084,0.11,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.15,0.099,0.151,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.017,0.126,0.124,0.101,0,0,1 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.124,0.089,0.139,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.096,0.076,0.127,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.119,0.09,0.131,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.097,0.087,0.111,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.018,0.062,0.085,0.073,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.12,0.096,0.126,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0114,0.0174,0.099,0.097,0.102,0,1,0 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0206,0.077,0.074,0.104,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.026,0.105,0.102,0.103,0,0,1 -0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.073,0.107,0.069,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.131,0.116,0.111,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.029,0.198,0.091,0.217,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.028,0.143,0.13,0.11,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.016,0.103,0.113,0.091,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103,0.013,0.031,0.103,0.02983,1,0,0 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.079,0.095,0.083,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0206,0.092,0.087,0.106,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00051,0.0206,0.118,0.115,0.103,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.034,0.105,0.099,0.10584,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.008,0.099,0.097,0.102,0,1,0 -0.04,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.032,0.246,0.104,0.232,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.107,0.094,0.114,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.022,0.101,0.103,0.097,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0096,0.075,0.135,0.055,1,0,0 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.017,0.087,0.087,0.1,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0206,0.133,0.084,0.158,0,0,1 -0.72,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.113,0.085,0.132,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.107,0.085,0.126,0,0,1 -0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.117,0.074,0.157,0,0,1 -0.75,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00083,0.019,0.116,0.099,0.117,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.111,0.077,0.145,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.092,0.098,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.0206,0.111,0.112,0.099,0,0,1 -0.75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00031,0.022,0.085,0.119,0.071,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.018,0.104,0.089,0.117,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.131,0.095,0.138,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.079,0.078,0.101,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.0206,0.075,0.06,0.124,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.027,0.113,0.104,0.107,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.11118,0.099,0.11207,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.163,0.095,0.172,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0092,0.022,0.072,0.108,0.066,0,1,0 -0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.053,0.233,0.092,0.253,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.117,0.108,0.108,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.128,0.111,0.115,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0.012,0.065,0.092,0.071,0,1,0 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.026,0.094,0.094,0.1,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0049,0.018,0.143,0.097,0.148,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.0208,0.092,0.104,0.088,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0174,0.087,0.092,0.094,0,1,0 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.0206,0.083,0.104,0.08,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.1,0.104,0.093,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.005,0.085,0.077,0.11,0,0,1 -0.68,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0067,0.014,0.101,0.1,0.10089,0,1,0 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.098,0.082,0.119,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0008,0.022,0.097,0.11,0.088,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.009,0.061,0.099,0.061,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.013,0.107,0.112,0.095,0,0,1 -0.68,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0026,0.018,0.104,0.11,0.095,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.0206,0.118,0.083,0.142,0,0,1 -0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0015,0.028,0.099,0.095,0.104,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.106,0.14,0.076,0,0,1 -0.42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4e-05,0.019,0.117,0.077,0.153,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0206,0.11,0.102,0.108,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.093,0.094,0.098,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.015,0.119,0.09,0.132,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.088,0.081,0.109,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.041,0.191,0.1,0.191,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.016,0.1,0.101,0.099,0,0,1 -0.26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.083,0.07,0.117,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.0206,0.135,0.082,0.166,0,0,1 -0.37,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.025,0.0174,0.071,0.104,0.068,0,1,0 -0.29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0051,0.0206,0.072,0.08,0.09,0,0,1 -0.91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.112,0.099,0.113,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.011,0.062,0.07,0.089,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.087,0.092,0.095,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.017,0.085,0.099,0.08568,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.093,0.084,0.111,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.014,0.09,0.097,0.092,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.014,0.084,0.096,0.088,0,0,1 -0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00036,0.024,0.128,0.101,0.127,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.116,0.107,0.108,0,0,1 -0.5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.003,0.0206,0.106,0.107,0.099,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.018,0.103,0.084,0.124,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.018,0.093,0.099,0.09375,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,0,0,1 -0.08,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.077,0.085,0.091,0,0,1 -0.42,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.0206,0.141,0.108,0.131,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.113,0.082,0.138,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.128,0.113,0.114,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.056,0.112,0.05,0,0,1 -0.41,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00039,0.019,0.12,0.103,0.117,0,0,1 -0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00939,0.014,0.077,0.089,0.087,0,1,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.127,0.092,0.138,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.016,0.015,0.06,0.078,0.077,0,1,0 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0033,0.007,0.076,0.072,0.105,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0001,0.0206,0.113,0.091,0.125,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.023,0.116,0.108,0.107,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.106,0.091,0.117,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.112,0.095,0.117,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.017,0.092,0.099,0.09274,0,0,1 -0.27,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0206,0.07,0.048,0.146,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0206,0.082,0.081,0.101,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.109,0.104,0.105,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0206,0.092,0.093,0.099,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0206,0.088,0.072,0.122,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.014,0.111,0.078,0.142,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.007,0.041,0.06,0.069,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.11118,0.072,0.118,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.105,0.116,0.091,0,0,1 -0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.0174,0.099,0.114,0.087,0,1,0 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.107,0.092,0.116,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.088,0.093,0.095,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.031,0.112,0.104,0.106,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.089,0.086,0.104,0,0,1 -0.27,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00189,0.019,0.11118,0.099,0.11207,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.124,0.099,0.125,0,0,1 -0.31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.12,0.122,0.099,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0024,0.032,0.137,0.171,0.08,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.178,0.1,0.178,0,0,1 -0.42,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.079,0.088,0.09,0,0,1 -0.21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.17,0.101,0.167,0,0,1 -0.39,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.019,0.098,0.088,0.11,0,0,1 -0.7,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.015,0.16,0.094,0.171,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.01,0.145,0.099,0.14616,0,0,1 -0.83,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.118,0.097,0.121,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.124,0.115,0.108,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.109,0.104,0.104,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00024,0.024,0.119,0.11,0.109,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.009,0.082,0.11,0.075,0,0,1 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.122,0.125,0.098,0,0,1 -0.69,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.0206,0.093,0.11,0.085,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.135,0.096,0.141,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.0206,0.116,0.078,0.149,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.085,0.065,0.131,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.079,0.095,0.083,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.138,0.103,0.134,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.151,0.094,0.161,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.0206,0.045,0.047,0.096,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.09,0.107,0.084,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.0206,0.096,0.088,0.109,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.0206,0.133,0.099,0.135,0,0,1 -0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.093,0.104,0.089,0,0,1 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.095,0.093,0.102,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0264,0.023,0.073,0.109,0.067,0,1,0 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.019,0.089,0.099,0.08971,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0174,0.071,0.078,0.09,0,1,0 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.12,0.129,0.092,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.091,0.081,0.113,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.095,0.086,0.111,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.0174,0.148,0.111,0.134,0,1,0 -0.47,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.094,0.097,0.097,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.112,0.098,0.114,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.01,0.103,0.099,0.10383,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.11118,0.099,0.11207,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0005,0.0208,0.138,0.092,0.15,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00065,0.013,0.136,0.119,0.115,0,0,1 -0.8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.02,0.086,0.102,0.083,0,0,1 -0.44,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.021,0.0206,0.076,0.09,0.084,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0208,0.111,0.099,0.112,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.084,0.085,0.099,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.017,0.096,0.089,0.108,0,1,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.022,0.161,0.104,0.153,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.11,0.073,0.15,0,0,1 -0.44,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.0206,0.127,0.103,0.124,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.0206,0.156,0.084,0.187,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.122,0.094,0.122,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.105,0.103,0.101,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.002,0.08,0.08,0.099,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.025,0.103,0.102,0.101,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.026,0.079,0.084,0.093,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.094,0.089,0.106,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0206,0.131,0.05,0.265,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.017,0.071,0.092,0.077,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.066,0.248,0.089,0.28,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.131,0.083,0.158,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.028,0.107,0.109,0.099,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.12,0.082,0.146,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.024,0.118,0.112,0.106,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.007,0.015,0.108,0.014,1,0,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.166,0.146,0.115,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.018,0.135,0.1,0.134,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.098,0.099,0.099,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.088,0.104,0.083,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.02,0.134,0.116,0.115,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.016,0.089,0.096,0.093,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.012,0.077,0.085,0.091,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00032,0.027,0.096,0.14,0.069,0,0,1 -0.36,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.022,0.162,0.115,0.14,0,0,1 -0.47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.091,0.096,0.094,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.027,0.124,0.12,0.104,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.019,0.094,0.104,0.089,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0045,0.017,0.091,0.109,0.084,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.143,0.102,0.141,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00066,0.023,0.114,0.088,0.129,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.019,0.118,0.09,0.131,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.125,0.111,0.113,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.198,0.123,0.16,0,0,1 -0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.0206,0.126,0.086,0.146,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.025,0.08,0.089,0.09,0,0,1 -0.31,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0.00044,0.015,0.075,0.092,0.081,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.014,0.137,0.112,0.123,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.011,0.102,0.081,0.125,0,0,1 -0.32,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5e-05,0.039,0.289,0.175,0.165,0,0,1 -0.22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.118,0.096,0.123,0,0,1 -0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.203,0.101,0.2,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.112,0.115,0.097,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.01,0.092,0.099,0.093,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.012,0.0208,0.081,0.109,0.074,0,1,0 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0206,0.074,0.087,0.085,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.175,0.104,0.168,0,0,1 -0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.024,0.148,0.107,0.138,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.02,0.102,0.093,0.11,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.019,0.112,0.094,0.119,0,0,1 -0.52,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.098,0.071,0.138,0,0,1 -0.53,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,8e-05,0.0206,0.127,0.09,0.141,0,0,1 -0.47,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.012,0.072,0.082,0.088,0,0,1 -0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.082,0.088,0.093,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.018,0.148,0.119,0.125,0,0,1 -0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0054,0.014,0.109,0.083,0.131,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.095,0.098,0.096,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.016,0.126,0.093,0.135,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.101,0.079,0.129,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0174,0.112,0.108,0.103,0,1,0 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.024,0.157,0.12,0.131,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00036,0.03,0.131,0.104,0.126,0,0,1 -0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00082,0.0206,0.125,0.101,0.124,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0206,0.075,0.084,0.089,0,0,1 -0.52,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.02,0.102,0.099,0.10282,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.087,0.12,0.073,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.014,0.112,0.086,0.13,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.01,0.06,0.088,0.068,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.019,0.101,0.099,0.102,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.016,0.094,0.092,0.102,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.151,0.098,0.154,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.012,0.071,0.111,0.064,1,0,0 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.037,0.169,0.114,0.148,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.142,0.12,0.118,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.02,0.087,0.095,0.091,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.113,0.085,0.133,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.236,0.002,0.016,0.094,0.017,1,0,0 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.048,0.257,0.12,0.214,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.11118,0.099,0.095,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.043,0.184,0.119,0.155,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.015,0.128,0.1,0.12787,0,1,0 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.101,0.109,0.093,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.094,0.1,0.094,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.034,0.129,0.153,0.084,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.063,0.088,0.072,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.006,0.079,0.091,0.087,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.017,0.078,0.09,0.087,0,1,0 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.099,0.099,0.1,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.155,0.072,0.216,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.0208,0.16,0.121,0.132,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.027,0.12,0.127,0.095,0,0,1 -0.55,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00099,0.013,0.093,0.086,0.108,0,0,1 -0.12,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.166,0.12,0.138,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.101,0.09,0.113,0,0,1 -0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0206,0.117,0.102,0.115,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.022,0.136,0.124,0.11,0,1,0 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.023,0.16,0.104,0.151,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.005,0.078,0.095,0.082,0,0,1 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.166,0.097,0.17,0,0,1 -0.34,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.027,0.044,0.273,0.122,0.222,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.117,0.086,0.136,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0206,0.175,0.115,0.153,0,0,1 -0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.015,0.106,0.094,0.113,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0206,0.171,0.104,0.162,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.097,0.091,0.107,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.012,0.101,0.09,0.112,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.01,0.154,0.103,0.149,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.076,0.083,0.091,0,0,1 -0.79,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.024,0.099,0.073,0.135,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.0174,0.144,0.129,0.111,0,1,0 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.143,0.007,0.073,0.101,0.072,0,1,0 -0.25,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00189,0.022,0.113,0.108,0.105,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00075,0.023,0.119,0.094,0.126,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.027,0.155,0.143,0.109,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0.0079,0.022,0.104,0.107,0.097,0,1,0 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.122,0.11,0.111,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.131,0.095,0.137,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0022,0.02,0.108,0.108,0.1,0,0,1 -0.44,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.136,0.094,0.145,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0208,0.086,0.099,0.086,0,0,1 -0.31,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0016,0.0206,0.111,0.1,0.111,0,0,1 -0.75,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.15,0.088,0.171,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0208,0.098,0.09,0.109,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.023,0.139,0.111,0.125,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.053,0.272,0.097,0.281,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.018,0.104,0.104,0.1,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.098,0.114,0.086,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.045,0.156,0.076,0.205,0,0,1 -0.42,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00067,0.019,0.074,0.079,0.093,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.013,0.013,0.086,0.087,0.099,0,1,0 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.094,0.104,0.089,0,0,1 -0.19,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.147,0.09,0.163,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.0206,0.145,0.096,0.152,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.015,0.083,0.099,0.08366,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.086,0.099,0.08669,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0206,0.192,0.144,0.134,0,0,1 -0.19,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0037,0.011,0.126,0.091,0.138,0,0,1 -0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.138,0.115,0.12,0,0,1 -0.53,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.037,0.172,0.167,0.103,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.177,0.151,0.117,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.082,0.088,0.092,0,0,1 -0.21,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.016,0.099,0.087,0.114,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.139,0.113,0.123,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.113,0.088,0.128,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.008,0.086,0.066,0.13,0,1,0 -0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.005,0.057,0.099,0.05745,0,0,1 -0.76,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0208,0.081,0.094,0.086,0,0,1 -0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478,0.0096,0.045,0.13,0.034,1,0,0 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.033,0.2,0.1,0.2,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.098,0.104,0.095,0,0,1 -0.36,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.0206,0.125,0.093,0.135,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0046,0.0206,0.157,0.171,0.092,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0206,0.129,0.114,0.114,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.024,0.099,0.107,0.093,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.019,0.085,0.107,0.08,0,1,0 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0208,0.121,0.112,0.108,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0016,0.018,0.089,0.08,0.112,0,0,1 -0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.086,0.104,0.083,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0206,0.096,0.069,0.14,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.094,0.115,0.082,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.028,0.096,0.082,0.118,0,0,1 -0.75,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.02,0.102,0.083,0.124,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.087,0.113,0.078,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.019,0.114,0.099,0.11491,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.059,0.058,0.099,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.017,0.101,0.099,0.10181,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.023,0.114,0.099,0.11491,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0206,0.147,0.107,0.138,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.024,0.08,0.104,0.076,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.025,0.109,0.103,0.105,0,0,1 -0.41,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0206,0.149,0.1,0.148,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0206,0.103,0.108,0.095,0,0,1 -0.52,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.099,0.092,0.107,0,0,1 -0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.0206,0.123,0.157,0.079,0,0,1 -0.63,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.042,0.016,0.06,0.093,0.064,1,0,0 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.078,0.078,0.1,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.017,0.107,0.081,0.132,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.095,0.091,0.104,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.0174,0.085,0.089,0.095,0,1,0 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.018,0.12,0.109,0.11,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.02,0.102,0.097,0.106,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.0206,0.18,0.104,0.172,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.103,0.089,0.116,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00098,0.025,0.12,0.104,0.113,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.11,0.085,0.129,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.016,0.09,0.079,0.114,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.025,0.066,0.089,0.075,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.134,0.098,0.137,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.154,0.134,0.115,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.011,0.052,0.036,0.145,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.03,0.128,0.111,0.116,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.025,0.085,0.081,0.105,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.02,0.073,0.074,0.099,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.017,0.114,0.089,0.128,0,0,1 -0.61,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.063,0.071,0.089,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00082,0.014,0.129,0.088,0.147,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0206,0.098,0.079,0.125,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0208,0.098,0.09,0.108,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.03,0.106,0.112,0.096,0,0,1 -0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.007,0.086,0.072,0.12,0,1,0 -0.74,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0.0052,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.139,0.084,0.165,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.145,0.104,0.14,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00088,0.016,0.108,0.085,0.127,0,0,1 -0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0206,0.157,0.102,0.154,0,0,1 -0.5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.034,0.131,0.102,0.129,0,0,1 -0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.183,0.13,0.141,0,0,1 -0.18,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0.025,0.011,0.136,0.096,0.143,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0023,0.036,0.148,0.142,0.104,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.054,0.162,0.073,0.222,0,0,1 -0.38,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.093,0.115,0.081,0,0,1 -0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.019,0.101,0.099,0.10181,0,0,1 -0.29,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.019,0.1,0.093,0.107,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0004,0.0206,0.135,0.084,0.16,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0206,0.093,0.075,0.125,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0039,0.015,0.058,0.058,0.099,0,0,1 -0.73,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3e-05,0.017,0.127,0.089,0.143,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.055,0.199,0.104,0.19,0,0,1 -0.41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0051,0.018,0.091,0.112,0.082,0,0,1 -0.64,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.00073,0.02,0.152,0.115,0.131,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.152,0.099,0.153,0,0,1 -0.29,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.022,0.142,0.093,0.153,0,0,1 -0.35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00014,0.019,0.073,0.116,0.063,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.078,0.102,0.077,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.097,0.086,0.112,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.13,0.104,0.123,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.1,0.1,0.1,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0013,0.0208,0.081,0.09,0.09,0,0,1 -0.57,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.015,0.074,0.078,0.096,0,0,1 -0.54,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.026,0.1,0.101,0.099,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0058,0.0206,0.261,0.232,0.113,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.014,0.1,0.08,0.124,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.009,0.056,0.067,0.084,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.009,0.122,0.099,0.12298,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.0206,0.115,0.107,0.107,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.108,0.102,0.106,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.017,0.059,0.104,0.057,1,0,0 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.016,0.131,0.13,0.101,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.109,0.102,0.107,0,0,1 -0.37,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.022,0.104,0.099,0.105,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.104,0.096,0.108,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.028,0.11118,0.099,0.11207,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0206,0.105,0.09,0.116,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.095,0.102,0.093,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.0206,0.146,0.104,0.141,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.024,0.13,0.124,0.105,0,0,1 -0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.099,0.108,0.092,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.116,0.099,0.11693,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.096,0.099,0.09677,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.011,0.096,0.087,0.111,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0206,0.088,0.095,0.092,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.1,0.082,0.122,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.017,0.084,0.099,0.085,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.078,0.087,0.09,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.014,0.108,0.102,0.105,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.116,0.104,0.11,0,0,1 -0.02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00419,0.0208,0.152,0.093,0.163,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.017,0.066,0.075,0.088,0,0,1 -0.21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0.0013,0.019,0.112,0.104,0.106,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.031,0.164,0.081,0.201,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.098,0.092,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.018,0.163,0.104,0.155,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.0206,0.077,0.067,0.115,0,0,1 -0.37,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0.00057,0.026,0.159,0.139,0.114,0,0,1 -0.66,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.003,0.072,0.061,0.119,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0174,0.068,0.062,0.111,0,1,0 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.1,0.083,0.121,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.0174,0.074,0.09,0.082,0,1,0 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.124,0.104,0.119,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.013,0.08,0.102,0.079,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.031,0.119,0.108,0.109,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.076,0.103,0.073,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0206,0.087,0.089,0.098,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.016,0.075,0.076,0.099,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.099,0.096,0.104,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.02,0.089,0.15,0.059,1,0,0 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.017,0.12,0.098,0.122,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0206,0.109,0.085,0.128,0,0,1 -0.3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.017,0.082,0.103,0.079,0,0,1 -0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.112,0.083,0.134,0,0,1 -0.62,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0.013,0.008,0.083,0.081,0.103,0,1,0 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.044,0.195,0.082,0.237,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0206,0.105,0.085,0.124,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.068,0.064,0.106,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.096,0.088,0.109,0,0,1 -0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.131,0.101,0.131,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.081,0.085,0.095,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0058,0.014,0.107,0.107,0.1,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.113,0.097,0.117,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.071,0.128,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0206,0.127,0.097,0.131,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.0096,0.063,0.119,0.053,1,0,0 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.057,0.085,0.065,0,0,1 -0.19,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00045,0.032,0.13,0.183,0.071,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.022,0.115,0.102,0.114,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.0208,0.107,0.09,0.119,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.11118,0.099,0.11207,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0208,0.188,0.097,0.194,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.123,0.116,0.107,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.015,0.116,0.093,0.124,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.113,0.085,0.132,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.022,0.129,0.097,0.133,0,0,1 -0.78,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.0208,0.214,0.087,0.245,0,0,1 -0.77,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0035,0.008,0.068,0.097,0.07,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.023,0.138,0.104,0.133,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.013,0.105,0.094,0.112,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00089,0.0206,0.04,0.096,0.042,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.103,0.12,0.086,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.0206,0.117,0.109,0.107,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.009,0.045,0.104,0.043,1,0,0 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00057,0.014,0.075,0.072,0.104,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.019,0.115,0.077,0.149,0,0,1 -0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.00058,0.0206,0.118,0.103,0.114,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00189,0.0206,0.089,0.096,0.093,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.128,0.098,0.131,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.02,0.093,0.097,0.096,0,0,1 -0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.025,0.066,0.122,0.054,1,0,0 -0.83,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0144,0.123,0.099,0.124,0,0,1 -0.7,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0023,0.012,0.107,0.101,0.105,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.015,0.084,0.099,0.085,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.015,0.1,0.074,0.135,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.018,0.12,0.094,0.128,0,0,1 -0.65,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.099,0.052,0.188,0,0,1 -0.52,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0012,0.017,0.092,0.076,0.121,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.02,0.104,0.087,0.12,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.018,0.094,0.086,0.11,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.019,0.115,0.107,0.107,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.05,0.244,0.067,0.362,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.012,0.174,0.099,0.1754,0,0,1 -0.65,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.012,0.118,0.09,0.13,0,0,1 -0.78,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0206,0.11118,0.099,0.11207,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0206,0.11118,0.099,0.11207,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.13,0.086,0.151,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.114,0.092,0.125,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.019,0.083,0.103,0.081,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.011,0.128,0.08,0.16,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.019,0.119,0.1,0.119,0,0,1 -0.515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.118,0.113,0.104,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.101,0.104,0.097,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.02,0.102,0.116,0.089,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.097,0.104,0.093,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.073,0.099,0.074,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.019,0.17,0.123,0.138,0,0,1 -0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00041,0.012,0.116,0.087,0.134,0,0,1 -0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.022,0.164,0.109,0.151,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.078,0.09,0.087,0,0,1 -0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.036,0.0174,0.082,0.102,0.081,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6e-05,0.0419,0.235,0.11,0.214,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.02,0.153,0.099,0.154,0,0,1 -0.63,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0029,0.016,0.101,0.099,0.10181,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.025,0.105,0.101,0.103,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.034,0.129,0.095,0.136,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.03,0.092,0.095,0.092,0,0,1 -0.56,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0.0052,0.0206,0.137,0.128,0.107,0,0,1 -0.39,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0.0036,0.0206,0.092,0.109,0.084,0,0,1 -0.85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.008,0.011,0.125,0.089,0.142,0,1,0 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.153,0.119,0.129,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.026,0.117,0.102,0.114,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.093,0.087,0.107,0,0,1 -0.7,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.009,0.104,0.083,0.124,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.055,0.161,0.161,0.1,0,0,1 -0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.101,0.1,0.101,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.025,0.084,0.104,0.08,0,0,1 -0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00078,0.019,0.136,0.09,0.152,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.025,0.13,0.108,0.121,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.135,0.121,0.111,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.035,0.194,0.09,0.215,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.102,0.092,0.111,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.028,0.11,0.114,0.097,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.017,0.064,0.069,0.093,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.027,0.11,0.109,0.101,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.018,0.091,0.09,0.101,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.012,0.09,0.082,0.11,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.067,0.09,0.075,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.028,0.106,0.132,0.081,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.111,0.104,0.105,0,0,1 -0.72,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.082,0.089,0.093,0,0,1 -0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.183,0.011,0.045,0.097,0.046,1,0,0 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.018,0.096,0.103,0.094,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0206,0.11118,0.099,0.11207,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.077,0.104,0.074,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.03,0.145,0.123,0.117,0,0,1 -0.64,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.101,0.094,0.107,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0208,0.112,0.111,0.101,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.084,0.091,0.093,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.02,0.072,0.09,0.08,0,1,0 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.025,0.169,0.114,0.149,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.026,0.18,0.142,0.126,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.088,0.098,0.09,0,1,0 -0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00889,0.012,0.067,0.075,0.089,0,1,0 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.03,0.114,0.093,0.122,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.013,0.025,0.096,0.133,0.073,0,1,0 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.092,0.104,0.087,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.024,0.1,0.099,0.1008,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.019,0.116,0.099,0.11693,0,0,1 -0.67,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0013,0.022,0.104,0.092,0.114,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.018,0.098,0.099,0.099,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.018,0.094,0.088,0.107,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.109,0.091,0.119,0,0,1 -0.4,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00047,0.0206,0.089,0.089,0.1,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0206,0.102,0.084,0.121,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.105,0.09,0.116,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.098,0.085,0.115,0,0,1 -0.18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0206,0.116,0.104,0.111,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.025,0.119,0.104,0.114,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.016,0.126,0.102,0.123,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.075,0.085,0.088,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.14,0.101,0.138,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.106,0.099,0.10685,0,0,1 -0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.08,0.084,0.095,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.073,0.089,0.082,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.025,0.108,0.096,0.113,0,0,1 -0.93,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0027,0.004,0.077,0.086,0.09,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.113,0.096,0.118,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.015,0.113,0.074,0.153,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.074,0.099,0.07458,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00043,0.041,0.123,0.148,0.083,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.023,0.15,0.12,0.125,0,0,1 -0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.016,0.108,0.092,0.118,0,0,1 -0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.022,0.105,0.094,0.112,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.027,0.094,0.099,0.09475,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.1,0.086,0.117,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.003,0.061,0.054,0.113,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.086,0.08,0.107,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.026,0.095,0.101,0.095,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.081,0.091,0.089,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.087,0.085,0.102,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.038,0.263,0.17,0.155,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0208,0.066,0.066,0.099,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0.02,0.01,0.112,0.0085,1,0,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.087,0.116,0.075,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.003,0.044,0.038,0.118,0,0,1 -0.88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.022,0.101,0.1,0.101,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.024,0.081,0.097,0.084,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.016,0.162,0.094,0.173,0,0,1 -0.34,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.027,0.104,0.101,0.103,0,0,1 -0.52,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1e-05,0.024,0.108,0.07,0.154,0,0,1 -0.17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.145,0.012,0.036,0.15,0.024,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.024,0.096,0.104,0.09,0,1,0 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.023,0.149,0.088,0.169,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.045,0.171,0.116,0.148,0,0,1 -0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.018,0.0208,0.068,0.108,0.063,1,0,0 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0208,0.1,0.099,0.1008,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.026,0.087,0.099,0.0877,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.026,0.129,0.116,0.109,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.137,0.135,0.101,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.002,0.059,0.073,0.082,0,0,1 -0.67,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.079,0.077,0.102,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.097,0.1,0.085,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.015,0.089,0.094,0.095,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.087,0.093,0.094,0,0,1 -0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0419,0.188,0.139,0.135,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.138,0.134,0.103,0,0,1 -0.53,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3e-05,0.0206,0.052,0.109,0.14,0,0,1 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.088,0.101,0.087,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.129,0.129,0.1,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.02,0.082,0.099,0.08266,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.027,0.137,0.119,0.115,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.083,0.119,0.069,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.012,0.124,0.112,0.111,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.078,0.084,0.093,0,0,1 -0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.018,0.163,0.109,0.149,0,0,1 -0.69,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.017,0.116,0.095,0.122,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.016,0.109,0.104,0.105,0,0,1 -0.31,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.101,0.089,0.113,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0208,0.119,0.108,0.11,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.023,0.129,0.124,0.103,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.024,0.061,0.099,0.06149,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.018,0.093,0.104,0.089,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.068,0.079,0.086,0,0,1 -0.18,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.016,0.013,0.075,0.111,0.068,0,0,1 -0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00065,0.0206,0.126,0.131,0.096,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.001,0.065,0.048,0.137,0,0,1 -0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.005,0.043,0.041,0.105,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.016,0.106,0.088,0.12,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.026,0.093,0.116,0.079,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.024,0.099,0.113,0.088,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.116,0.095,0.122,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.02,0.09159,0.1,0.0915,0,1,0 -0.53,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00062,0.017,0.116,0.1,0.116,0,0,1 -0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.099,0.091,0.108,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.004,0.058,0.068,0.085,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.027,0.119,0.136,0.088,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.028,0.11118,0.099,0.11207,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.022,0.113,0.116,0.097,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.013,0.066,0.116,0.056,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.076,0.102,0.075,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.081,0.083,0.098,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.022,0.103,0.11,0.093,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.028,0.0206,0.074,0.103,0.072,0,0,1 -0.57,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1e-05,0.029,0.098,0.087,0.113,0,0,1 -0.41,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.027,0.101,0.084,0.121,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.029,0.1,0.104,0.095,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00859,0.011,0.084,0.074,0.114,0,1,0 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.014,0.085,0.112,0.077,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.124,0.125,0.099,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.018,0.109,0.092,0.118,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.141,0.085,0.167,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.105,0.101,0.105,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.062,0.072,0.085,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.015,0.117,0.094,0.125,0,0,1 -0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.054,0.086,0.063,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.024,0.112,0.099,0.1129,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.031,0.135,0.099,0.13608,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.016,0.116,0.093,0.125,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.01,0.099,0.07,0.142,0,0,1 -0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.0208,0.104,0.113,0.092,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.014,0.096,0.088,0.109,0,0,1 -0.41,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.064,0.094,0.069,0,0,1 -0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.132,0.095,0.139,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0208,0.083,0.124,0.067,0,1,0 -0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.0096,0.03375,0.103,0.03249,1,0,0 -0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.114,0.093,0.122,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.096,0.083,0.116,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.082,0.1,0.081,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.11,0.102,0.108,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.011,0.066,0.071,0.093,0,0,1 -0.83,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0022,0.007,0.071,0.076,0.093,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.11,0.08,0.137,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.019,0.096,0.112,0.085,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.024,0.113,0.134,0.084,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.019,0.101,0.099,0.10181,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.096,0.079,0.122,0,0,1 -0.36,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0206,0.108,0.11,0.099,0,0,1 -0.48,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.178,0.01,0.063,0.108,0.059,1,0,0 -0.42,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.04,0.2,0.156,0.128,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.023,0.122,0.166,0.073,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.12,0.101,0.119,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.109,0.099,0.10987,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.115,0.097,0.119,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.101,0.093,0.109,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.109,0.089,0.122,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.014,0.144,0.099,0.14516,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.117,0.109,0.107,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.101,0.094,0.108,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.024,0.125,0.109,0.115,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.03,0.123,0.122,0.101,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.111,0.114,0.097,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.023,0.128,0.114,0.112,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.01,0.101,0.082,0.123,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.152,0.078,0.196,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.005,0.13,0.085,0.153,0,1,0 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.164,0.114,0.145,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.113,0.099,0.11391,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.157,0.116,0.135,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.165,0.004,0.017,0.119,0.014,1,0,0 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.15,0.104,0.145,0,0,1 -0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.012,0.146,0.121,0.121,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0.0208,0.05,0.11,0.046,1,0,0 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.064,0.079,0.081,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.009,0.106,0.092,0.115,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.01,0.102,0.091,0.112,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.014,0.101,0.098,0.103,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.011,0.24,0.107,0.223,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.016,0.103,0.093,0.111,0,0,1 -0.61,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0.0018,0.019,0.102,0.104,0.097,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.016,0.097,0.112,0.087,0,0,1 -0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.015,0.112,0.099,0.114,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0208,0.08,0.101,0.079,0,1,0 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.106,0.092,0.115,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.018,0.089,0.104,0.085,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.026,0.118,0.11,0.107,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.035,0.023,0.042,0.101,0.041,1,0,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.102,0.108,0.095,0,0,1 -0.64,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00085,0.011,0.099,0.111,0.09,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.116,0.096,0.121,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.013,0.091,0.102,0.089,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.033,0.116,0.099,0.11693,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.014,0.058,0.083,0.069,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.018,0.119,0.091,0.13,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.022,0.132,0.099,0.133,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.014,0.152,0.104,0.145,0,0,1 -0.71,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0016,0.018,0.136,0.116,0.117,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0005,0.038,0.052,0.073,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3e-05,0.026,0.128,0.103,0.124,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.119,0.104,0.113,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.01,0.143,0.083,0.173,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.016,0.12,0.111,0.108,0,0,1 -0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.036,0.115,0.123,0.093,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.01,0.103,0.085,0.122,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.031,0.142,0.147,0.097,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.141,0.125,0.113,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.13,0.101,0.129,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.024,0.095,0.121,0.078,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0071,0.019,0.098,0.111,0.088,0,1,0 -0.22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.017,0.103,0.1,0.103,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.012,0.107,0.11,0.097,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.016,0.164,0.111,0.148,0,0,1 -0.25,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.022,0.152,0.136,0.112,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.167,0.121,0.137,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.1,0.111,0.09,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.124,0.09,0.138,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.097,0.099,0.099,0,0,1 -0.69,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.082,0.066,0.124,0,0,1 -0.71,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.014,0.111,0.096,0.116,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.02,0.098,0.101,0.097,0,0,1 -0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0041,0.019,0.116,0.104,0.11,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.171,0.112,0.153,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.126,0.086,0.147,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.007,0.05,0.025,0.205,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.018,0.124,0.111,0.112,0,1,0 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.022,0.109,0.097,0.113,0,1,0 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.106,0.104,0.1,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00989,0.007,0.111,0.092,0.12,0,1,0 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.022,0.145,0.134,0.108,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.087,0.099,0.0877,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.014,0.076,0.057,0.132,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.017,0.094,0.097,0.097,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.101,0.116,0.086,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00042,0.01,0.115,0.111,0.104,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.015,0.094,0.102,0.092,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00028,0.009,0.079,0.07,0.112,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.007,0.134,0.112,0.12,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.004,0.011,0.124,0.00889,1,0,0 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.003,0.01,0.116,0.00839,1,0,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.045,0.204,0.203,0.1,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0208,0.108,0.104,0.105,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.038,0.193,0.193,0.1,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.016,0.105,0.099,0.10584,0,0,1 -0.69,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.02,0.121,0.107,0.113,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.027,0.156,0.125,0.125,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.016,0.113,0.099,0.114,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.011,0.121,0.111,0.109,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.025,0.096,0.091,0.105,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.019,0.133,0.099,0.134,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.091,0.084,0.108,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.141,0.12,0.117,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.162,0.121,0.134,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0015,0.018,0.11118,0.093,0.112,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0208,0.109,0.099,0.10987,0,0,1 -0.67,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0206,0.082,0.089,0.092,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.106,0.101,0.105,0,0,1 -0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.012,0.132,0.092,0.145,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.019,0.09,0.087,0.104,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.129,0.122,0.106,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.008,0.101,0.099,0.103,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.026,0.121,0.094,0.13,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.014,0.159,0.095,0.166,0,0,1 -0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.0096,0.03375,0.103,0.03249,1,0,0 -0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.018,0.119,0.104,0.113,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.01,0.13,0.088,0.148,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.008,0.105,0.088,0.12,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.13,0.12,0.109,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.02,0.121,0.119,0.102,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.017,0.092,0.098,0.094,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.094,0.094,0.1,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.078,0.094,0.087,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.096,0.093,0.103,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.009,0.14,0.099,0.14112,0,0,1 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.099,0.092,0.108,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.106,0.101,0.104,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.097,0.094,0.104,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.201,0.108,0.186,0,0,1 -0.53,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.13,0.101,0.128,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.004,0.011,0.115,0.09,0.128,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.076,0.081,0.093,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.094,0.085,0.11,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.02,0.126,0.126,0.1,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.089,0.122,0.072,0,0,1 -0.34,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.026,0.037,0.107,0.121,0.088,0,0,1 -0.55,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.016,0.115,0.084,0.138,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0007,0.02,0.095,0.099,0.096,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.127,0.104,0.121,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.025,0.07,0.093,0.075,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.007,0.082,0.099,0.08266,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0.0017,0.011,0.094,0.091,0.103,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.092,0.099,0.09274,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.108,0.083,0.13,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.123,0.098,0.125,0,0,1 -0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0206,0.103,0.107,0.097,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.017,0.086,0.091,0.095,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.018,0.107,0.104,0.101,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.088,0.085,0.104,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0208,0.088,0.07,0.125,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.014,0.14,0.113,0.124,0,0,1 -0.7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0012,0.0206,0.109,0.108,0.1,0,0,1 -0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0206,0.119,0.093,0.127,0,0,1 -0.61,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.023,0.11,0.101,0.109,0,0,1 -0.46,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.005,0.02,0.107,0.114,0.094,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.028,0.183,0.123,0.149,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.104,0.113,0.092,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.031,0.097,0.11,0.086,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.013,0.105,0.104,0.101,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0.005,0.024,0.132,0.018,1,0,0 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.101,0.093,0.108,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.077,0.087,0.089,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.103,0.092,0.112,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.02,0.101,0.104,0.097,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.0206,0.11118,0.099,0.11207,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.018,0.12,0.091,0.132,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.016,0.102,0.082,0.128,0,0,1 -0.77,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00189,0.018,0.111,0.096,0.115,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.013,0.097,0.09,0.108,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.037,0.184,0.18,0.102,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.109,0.1,0.109,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.087,0.116,0.074,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.018,0.162,0.099,0.164,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.142,0.113,0.125,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.132,0.116,0.114,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.126,0.087,0.145,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.015,0.14,0.088,0.16,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.114,0.133,0.086,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.08,0.086,0.093,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.116,0.097,0.119,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.117,0.111,0.105,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0208,0.116,0.099,0.11693,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.004,0.092,0.075,0.123,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.02,0.071,0.089,0.08,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.005,0.105,0.082,0.129,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.098,0.114,0.085,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.019,0.09,0.088,0.102,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.14,0.095,0.148,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.011,0.063,0.08,0.078,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.007,0.116,0.085,0.137,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.009,0.137,0.095,0.144,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.113,0.103,0.11,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.017,0.112,0.104,0.107,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.003,0.102,0.096,0.106,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.088,0.099,0.0887,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.024,0.132,0.128,0.103,0,1,0 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.105,0.099,0.10584,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.084,0.09,0.093,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.009,0.105,0.082,0.129,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.029,0.151,0.135,0.111,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.127,0.113,0.113,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.072,0.09,0.08,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.023,0.192,0.147,0.13,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.111,0.091,0.123,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.081,0.091,0.088,0,0,1 -0.28,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0032,0.013,0.096,0.09,0.107,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.116,0.103,0.112,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.02,0.104,0.104,0.098,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.016,0.088,0.089,0.1,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.093,0.099,0.095,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0206,0.162,0.107,0.152,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.011,0.112,0.082,0.137,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.103,0.095,0.109,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.108,0.081,0.133,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.023,0.197,0.092,0.213,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.094,0.099,0.09475,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.0208,0.089,0.086,0.103,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.017,0.102,0.112,0.092,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.013,0.138,0.107,0.129,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.16,0.088,0.18,0,0,1 -0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.017,0.071,0.108,0.066,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.003,0.064,0.066,0.096,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.103,0.103,0.1,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.02,0.119,0.104,0.114,0,1,0 -0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.087,0.1,0.087,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.085,0.095,0.09,0,0,1 -0.33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.0039,0.022,0.12,0.141,0.085,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00072,0.038,0.14,0.116,0.121,0,0,1 -0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.147,0.104,0.138,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.124,0.108,0.114,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.022,0.103,0.135,0.076,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0208,0.094,0.079,0.119,0,0,1 -0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.008,0.151,0.101,0.15,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.017,0.146,0.089,0.165,0,0,1 -0.19,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.009,0.022,0.117,0.1,0.11688,0,1,0 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0044,0.027,0.131,0.173,0.076,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.018,0.078,0.104,0.076,0,0,1 -0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.01,0.112,0.102,0.11,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.113,0.114,0.099,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.017,0.067,0.115,0.059,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.02,0.054,0.166,0.033,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.016,0.061,0.109,0.056,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.039,0.095,0.041,0,0,1 -0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.013,0.093,0.086,0.108,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.002,0.078,0.056,0.139,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.104,0.099,0.10483,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.01,0.068,0.077,0.088,0,0,1 -0.47,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.098,0.086,0.113,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.019,0.081,0.1,0.082,0,0,1 -0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0034,0.013,0.092,0.089,0.104,0,0,1 -0.8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.083,0.111,0.076,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.087,0.094,0.093,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.076,0.085,0.089,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.016,0.096,0.099,0.09677,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.014,0.071,0.072,0.099,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0045,0.013,0.089,0.073,0.121,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.005,0.083,0.077,0.108,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.002,0.115,0.092,0.126,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.024,0.129,0.116,0.109,0,0,1 -0.37,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.011,0.012,0.074,0.077,0.096,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.092,0.092,0.1,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00094,0.013,0.078,0.112,0.07,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.12,0.097,0.124,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.006,0.08,0.072,0.11,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.106,0.092,0.115,0,1,0 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.012,0.117,0.096,0.121,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.006,0.049,0.054,0.09,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.095,0.079,0.12,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.1,0.101,0.099,0,0,1 -0.27,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0.025,0.145,0.145,0.1,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.01,0.072,0.07,0.103,0,0,1 -0.65,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,3e-05,0.019,0.151,0.089,0.169,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.016,0.114,0.102,0.112,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.033,0.122,0.146,0.083,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.018,0.114,0.102,0.112,0,0,1 -0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00859,0.0174,0.086,0.084,0.101,0,1,0 -0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.0206,0.121,0.1,0.121,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.025,0.17,0.14,0.121,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.012,0.105,0.084,0.125,0,1,0 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.091,0.092,0.099,0,0,1 -0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.122,0.107,0.114,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.126,0.085,0.148,0,0,1 -0.71,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,3e-05,0.038,0.171,0.113,0.151,0,0,1 -0.66,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.0017,0.014,0.089,0.087,0.103,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.081,0.099,0.08165,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.015,0.145,0.088,0.165,0,0,1 -0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.045,0.239,0.21,0.113,0,0,1 -0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.013,0.093,0.084,0.111,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.017,0.104,0.104,0.1,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.0208,0.13,0.099,0.131,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.11118,0.099,0.11207,0,0,1 -0.35,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.017,0.114,0.098,0.115,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.65,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.128,0.122,0.105,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.103,0.092,0.111,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.018,0.122,0.092,0.113,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.02,0.019,0.112,0.017,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.016,0.108,0.114,0.095,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0092,0.015,0.113,0.103,0.109,0,1,0 -0.71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3e-05,0.015,0.104,0.104,0.1,0,0,1 -0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.016,0.151,0.139,0.109,0,0,1 -0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.124,0.099,0.13,0,0,1 -0.41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0032,0.013,0.078,0.097,0.08,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.01,0.054,0.078,0.07,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.014,0.085,0.093,0.092,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.016,0.096,0.097,0.099,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.013,0.102,0.095,0.108,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0068,0.007,0.084,0.078,0.107,0,1,0 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.005,0.011,0.119,0.00909,1,0,0 -0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.0206,0.085,0.094,0.091,0,0,1 -0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.1,0.109,0.091,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0028,0.013,0.086,0.089,0.096,0,0,1 -0.28,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.103,0.0208,0.065,0.116,0.056,1,0,0 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.0208,0.091,0.116,0.079,0,1,0 -0.2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.027,0.107,0.107,0.1,0,0,1 -0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.002,0.038,0.076,0.05,0,0,1 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0074,0.02,0.12,0.102,0.117,0,1,0 -0.67,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.101,0.101,0.1,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.016,0.1,0.093,0.107,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.104,0.099,0.10483,0,0,1 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.023,0.002,0.05,0.085,0.058,1,0,0 -0.38,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.102,0.097,0.105,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0022,0.02,0.102,0.086,0.119,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.084,0.1,0.083,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.107,0.109,0.099,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.146,0.134,0.108,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.092,0.1,0.092,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.017,0.129,0.11,0.116,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.083,0.119,0.069,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.097,0.103,0.094,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.137,0.091,0.151,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.104,0.108,0.096,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.121,0.094,0.129,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.127,0.1,0.127,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.019,0.122,0.095,0.129,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.014,0.074,0.052,0.143,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.016,0.101,0.11,0.092,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.041,0.16,0.078,0.204,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.02,0.164,0.092,0.178,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0206,0.075,0.087,0.086,0,0,1 -0.54,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00086,0.017,0.098,0.096,0.102,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00573,0.018,0.109,0.104,0.104,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,3e-05,0.025,0.119,0.155,0.076,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.09,0.093,0.097,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.118,0.099,0.119,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.011,0.137,0.086,0.16,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.084,0.063,0.133,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.116,0.114,0.102,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.017,0.098,0.074,0.132,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,8e-05,0.0206,0.126,0.1,0.126,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.015,0.097,0.088,0.11,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.022,0.118,0.101,0.117,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.091,0.098,0.093,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.108,0.104,0.102,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.08,0.088,0.091,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.092,0.1,0.092,0,0,1 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.091,0.068,0.133,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.026,0.113,0.109,0.104,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.114,0.093,0.123,0,0,1 -0.48,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0015,0.025,0.101,0.097,0.104,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.031,0.099,0.101,0.098,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.026,0.117,0.131,0.09,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.0208,0.123,0.116,0.104,0,1,0 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.01,0.061,0.077,0.08,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.092,0.089,0.103,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.015,0.125,0.077,0.163,0,0,1 -0.33,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0082,0.015,0.074,0.09,0.083,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.107,0.11,0.092,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.098,0.108,0.091,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.139,0.102,0.136,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.091,0.093,0.098,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.019,0.094,0.107,0.088,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.022,0.09,0.104,0.087,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.123,0.109,0.113,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.015,0.076,0.088,0.086,0,0,1 -0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.01029,0.02,0.068,0.115,0.059,1,0,0 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.026,0.118,0.119,0.099,0,0,1 -0.33,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.003,0.025,0.121,0.138,0.088,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.024,0.136,0.092,0.148,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01109,0.013,0.088,0.104,0.083,0,1,0 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.17,0.11,0.155,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.018,0.115,0.094,0.123,0,0,1 -0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00989,0.0206,0.121,0.102,0.118,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0208,0.083,0.082,0.101,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.02,0.159,0.151,0.105,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.016,0.085,0.087,0.098,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.015,0.133,0.108,0.124,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.025,0.106,0.081,0.13,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.017,0.101,0.085,0.119,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.02,0.088,0.104,0.085,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.023,0.093,0.086,0.108,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.105,0.083,0.127,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.012,0.122,0.094,0.131,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.026,0.166,0.08,0.207,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.079,0.079,0.101,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.102,0.112,0.091,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.023,0.098,0.107,0.092,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.014,0.086,0.098,0.088,0,0,1 -0.15,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0034,0.0206,0.112,0.13,0.086,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.013,0.121,0.078,0.155,0,0,1 -0.26,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.016,0.097,0.1,0.095,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0019,0.0208,0.118,0.12,0.098,0,0,1 -0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0206,0.132,0.087,0.152,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.015,0.16,0.087,0.185,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.089,0.09,0.098,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.014,0.111,0.12,0.093,0,1,0 -0.68,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00097,0.013,0.085,0.087,0.098,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.126,0.096,0.131,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.009,0.086,0.085,0.102,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.101,0.086,0.117,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.015,0.097,0.098,0.099,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00095,0.026,0.152,0.14,0.11,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0095,0.0206,0.115,0.131,0.088,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0206,0.107,0.091,0.118,0,0,1 -0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.013,0.126,0.096,0.132,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.025,0.11,0.116,0.094,0,1,0 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.093,0.096,0.098,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00037,0.022,0.086,0.075,0.115,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.094,0.104,0.09,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.063,0.1,0.063,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.013,0.09,0.104,0.086,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.024,0.115,0.114,0.1,0,0,1 -0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.096,0.09,0.107,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.012,0.083,0.082,0.101,0,1,0 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.093,0.081,0.114,0,0,1 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.083,0.083,0.101,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0038,0.025,0.105,0.104,0.101,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.111,0.104,0.107,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.017,0.105,0.099,0.10584,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.024,0.105,0.116,0.088,0,0,1 -0.36,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2e-05,0.029,0.194,0.163,0.119,0,0,1 -0.63,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00809,0.0206,0.082,0.069,0.119,0,0,1 -0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.0206,0.11118,0.099,0.11207,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.096,0.098,0.098,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.054,0.152,0.15,0.102,0,0,1 -0.25,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.036,0.045,0.162,0.115,0.142,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.023,0.092,0.08,0.114,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.03,0.125,0.113,0.111,0,0,1 -0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.034,0.115,0.096,0.12,0,0,1 -0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.015,0.135,0.099,0.13608,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.019,0.089,0.104,0.085,0,1,0 -0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.039,0.181,0.096,0.188,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.069,0.082,0.083,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086,0.005,0.027,0.084,0.032,1,0,0 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.08,0.112,0.071,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.104,0.104,0.099,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.11,0.108,0.102,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.008,0.161,0.097,0.166,0,0,1 -0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.005,0.054,0.086,0.062,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.025,0.094,0.115,0.082,0,0,1 -0.93,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.009,0.092,0.081,0.112,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.017,0.131,0.149,0.088,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6e-05,0.025,0.121,0.125,0.097,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.119,0.099,0.11995,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0048,0.029,0.132,0.127,0.104,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.105,0.128,0.083,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.133,0.108,0.123,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.116,0.126,0.092,0,0,1 -0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.027,0.121,0.116,0.104,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.12,0.12,0.1,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.031,0.133,0.153,0.087,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.112,0.113,0.1,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.022,0.091,0.111,0.082,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.016,0.068,0.102,0.066,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.092,0.101,0.091,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.035,0.126,0.138,0.092,0,1,0 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.112,0.125,0.09,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.111,0.102,0.109,0,0,1 -0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.019,0.132,0.115,0.114,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.128,0.094,0.136,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.102,0.097,0.106,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.02,0.115,0.11,0.104,0,0,1 -0.53,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0007,0.0206,0.046,0.087,0.052,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.091,0.099,0.091,0,0,1 -0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.02,0.11,0.099,0.111,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.139,0.112,0.124,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.134,0.12,0.112,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.111,0.152,0.073,0,0,1 -0.64,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.026,0.118,0.111,0.106,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00085,0.02,0.103,0.093,0.111,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.014,0.103,0.11,0.094,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.0206,0.087,0.1,0.088,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.026,0.117,0.124,0.094,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.012,0.091,0.095,0.096,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.112,0.099,0.1129,0,0,1 -0.67,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00081,0.0206,0.084,0.083,0.101,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2e-05,0.022,0.108,0.085,0.126,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.027,0.091,0.092,0.098,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.035,0.158,0.159,0.1,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.023,0.098,0.108,0.091,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.057,0.372,0.127,0.291,0,0,1 -0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.008,0.09,0.08,0.112,0,0,1 -0.72,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.013,0.106,0.131,0.082,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.013,0.118,0.087,0.136,0,0,1 -0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00068,0.014,0.092,0.081,0.114,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.011,0.13,0.103,0.127,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.004,0.056,0.068,0.083,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.092,0.099,0.09274,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.087,0.096,0.09,0,0,1 -0.7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2e-05,0.017,0.141,0.088,0.16,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.012,0.095,0.111,0.085,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.102,0.113,0.091,0,0,1 -0.48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.01,0.071,0.081,0.088,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.023,0.107,0.104,0.101,0,0,1 -0.34,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2e-05,0.037,0.182,0.175,0.104,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.025,0.099,0.104,0.096,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.099,0.098,0.101,0,0,1 -0.9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.016,0.089,0.091,0.098,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.107,0.097,0.11,0,0,1 -0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.02,0.103,0.099,0.10383,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.024,0.138,0.116,0.118,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.103,0.109,0.095,0,0,1 -0.5,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.02,0.071,0.108,0.066,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.018,0.097,0.097,0.101,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.016,0.082,0.088,0.093,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0.006,0.01,0.103,0.01,1,0,0 -0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.017,0.079,0.077,0.102,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.115,0.108,0.107,0,0,1 -0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.019,0.113,0.086,0.131,0,1,0 -0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.014,0.082,0.074,0.111,0,0,1 -0.01,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0066,0.017,0.068,0.1,0.06793,0,1,0 -0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.026,0.118,0.091,0.13,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.016,0.115,0.099,0.11592,0,0,1 -0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.009,0.115,0.075,0.153,0,0,1 -0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0034,0.01,0.102,0.09,0.114,0,0,1 -0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.017,0.022,0.131,0.122,0.108,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.08,0.107,0.075,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.011,0.01,0.101,0.079,0.128,0,1,0 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.119,0.092,0.13,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.122,0.086,0.142,0,0,1 -0.38,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3e-05,0.018,0.13,0.087,0.15,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.02,0.07,0.076,0.092,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.099,0.008,0.012,0.127,0.01,1,0,0 -0.61,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.002,0.0206,0.085,0.1,0.085,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.014,0.071,0.097,0.073,0,1,0 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00079,0.019,0.107,0.099,0.108,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.089,0.114,0.079,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.018,0.1,0.099,0.1008,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.147,0.08,0.183,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.065,0.088,0.074,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.003,0.087,0.069,0.126,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.027,0.13,0.099,0.13103,0,0,1 -0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.023,0.007,0.069,0.104,0.066,0,1,0 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.018,0.072,0.086,0.084,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.015,0.066,0.1,0.066,0,1,0 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.106,0.084,0.125,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.123,0.104,0.118,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.094,0.091,0.102,0,0,1 -0.27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.0022,0.041,0.157,0.201,0.078,0,0,1 -0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0011,0.024,0.095,0.109,0.086,0,0,1 -0.65,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2e-05,0.039,0.133,0.123,0.108,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.032,0.175,0.147,0.119,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.086,0.065,0.132,0,0,1 -0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.112,0.099,0.113,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.62,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.183,0.103,0.178,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.089,0.11,0.081,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.092,0.102,0.09,0,0,1 -0.6,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.017,0.075,0.103,0.072,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.039,0.123,0.098,0.126,0,0,1 -0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.129,0.102,0.127,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.017,0.123,0.096,0.129,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0208,0.092,0.085,0.109,0,0,1 -0.56,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0027,0.015,0.103,0.095,0.109,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.012,0.073,0.08,0.091,0,1,0 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.013,0.093,0.087,0.107,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.133,0.099,0.13407,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.097,0.076,0.129,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.01,0.084,0.069,0.121,0,0,1 -0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0063,0.012,0.08,0.092,0.087,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.028,0.093,0.086,0.109,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.014,0.088,0.093,0.095,0,1,0 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.125,0.113,0.11,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.015,0.144,0.124,0.116,0,1,0 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.0174,0.087,0.091,0.095,0,1,0 -0.25,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.002,0.022,0.123,0.152,0.081,0,0,1 -0.25,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.0208,0.093,0.101,0.092,0,0,1 -0.54,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,8e-05,0.0208,0.133,0.114,0.116,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00052,0.018,0.107,0.093,0.115,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0005,0.0206,0.126,0.102,0.124,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.031,0.114,0.091,0.126,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.037,0.196,0.165,0.119,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.095,0.093,0.102,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.024,0.134,0.114,0.117,0,0,1 -0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.116,0.12,0.097,0,0,1 -0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.054,0.093,0.058,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.02,0.097,0.071,0.135,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.008,0.094,0.086,0.109,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.008,0.099,0.088,0.113,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.007,0.052,0.111,0.047,1,0,0 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.018,0.065,0.099,0.066,0,1,0 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0208,0.07,0.083,0.084,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.085,0.104,0.08,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.014,0.107,0.086,0.124,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.023,0.113,0.084,0.134,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.089,0.085,0.105,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.015,0.113,0.097,0.117,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.123,0.116,0.107,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.122,0.115,0.106,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.076,0.085,0.089,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.094,0.116,0.081,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.02,0.095,0.091,0.105,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.097,0.1,0.097,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.02,0.118,0.116,0.102,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.014,0.096,0.088,0.109,0,0,1 -0.72,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.09,0.084,0.108,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.019,0.091,0.103,0.089,0,1,0 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.015,0.094,0.088,0.107,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.01,0.065,0.063,0.105,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0208,0.121,0.102,0.118,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.008,0.101,0.081,0.125,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.012,0.022,0.094,0.096,0.098,0,1,0 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.015,0.112,0.098,0.114,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.113,0.109,0.115,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.006,0.08,0.07,0.115,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.113,0.109,0.103,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.017,0.115,0.104,0.105,0,0,1 -0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.089,0.095,0.094,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.02,0.121,0.102,0.118,0,0,1 -0.44,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0044,0.019,0.082,0.09,0.09,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.02,0.025,0.111,0.157,0.071,0,1,0 -0.67,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,7e-05,0.017,0.132,0.102,0.13,0,0,1 -0.72,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0057,0.014,0.092,0.099,0.093,0,0,1 -0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.01,0.075,0.082,0.092,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.04,0.209,0.104,0.197,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.012,0.095,0.083,0.114,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.101,0.111,0.092,0,0,1 -0.49,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00829,0.009,0.103,0.111,0.093,0,1,0 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.018,0.096,0.094,0.101,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.014,0.068,0.101,0.067,0,1,0 -0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.095,0.068,0.14,0,0,1 -0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.02,0.128,0.104,0.123,0,0,1 -0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0043,0.011,0.07,0.1,0.07,0,0,1 -0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.131,0.093,0.142,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.018,0.097,0.091,0.106,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.023,0.118,0.116,0.101,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0208,0.142,0.109,0.129,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.092,0.095,0.097,0,0,1 -0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.023,0.135,0.154,0.088,0,1,0 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.024,0.025,0.121,0.02,1,0,0 -0.15,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0.017,0.019,0.113,0.017,1,0,0 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.029,0.118,0.152,0.078,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00839,0.015,0.123,0.096,0.129,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.022,0.093,0.116,0.08,0,0,1 -0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.022,0.181,0.123,0.147,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.007,0.122,0.113,0.108,0,1,0 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.003,0.027,0.11,0.087,0.126,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.095,0.104,0.09,0,0,1 -0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.102,0.095,0.107,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.019,0.091,0.079,0.115,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.121,0.081,0.149,0,0,1 -0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.108,0.096,0.112,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.155,0.098,0.159,0,0,1 -0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0208,0.094,0.101,0.093,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.018,0.114,0.101,0.113,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.086,0.104,0.083,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.02,0.094,0.099,0.09475,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2e-05,0.0206,0.127,0.104,0.119,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.0206,0.12,0.104,0.114,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.139,0.082,0.17,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.026,0.156,0.111,0.14,0,0,1 -0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.129,0.101,0.128,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.016,0.127,0.1,0.126,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.092,0.084,0.11,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.0208,0.134,0.1,0.135,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.018,0.093,0.093,0.1,0,0,1 -0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0.01,0.112,0.101,0.11,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.008,0.083,0.099,0.084,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.093,0.095,0.098,0,0,1 -0.28,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.026,0.089,0.102,0.087,0,1,0 -0.05,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.02,0.074,0.095,0.078,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0.0174,0.118,0.113,0.105,0,1,0 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.022,0.082,0.078,0.105,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.082,0.091,0.09,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.085,0.099,0.08568,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.009,0.086,0.076,0.113,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.022,0.105,0.099,0.10584,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.112,0.097,0.115,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.099,0.088,0.112,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.029,0.205,0.087,0.235,0,0,1 -0.48,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0.0054,0.019,0.087,0.1,0.087,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.031,0.162,0.078,0.209,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.02,0.125,0.097,0.128,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.134,0.114,0.118,0,0,1 -0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.0206,0.15,0.103,0.146,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.134,0.129,0.104,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00096,0.0206,0.122,0.107,0.114,0,0,1 -0.37,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.0206,0.1,0.114,0.087,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.016,0.073,0.08,0.092,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.02,0.102,0.099,0.10282,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.013,0.1,0.085,0.118,0,0,1 -0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0037,0.013,0.083,0.138,0.06,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.128,0.085,0.151,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.019,0.087,0.099,0.0877,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.071,0.1,0.071,0,0,1 -0.32,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.023,0.147,0.075,0.198,0,0,1 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.103,0.088,0.118,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.101,0.113,0.088,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.139,0.104,0.134,0,0,1 -0.64,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00024,0.014,0.065,0.085,0.077,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.119,0.089,0.134,0,0,1 -0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.019,0.11,0.089,0.125,0,0,1 -0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.022,0.128,0.124,0.103,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.018,0.081,0.116,0.07,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.018,0.124,0.112,0.11,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.02,0.096,0.11,0.088,0,0,1 -0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.011,0.012,0.083,0.101,0.082,0,1,0 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.013,0.092,0.1,0.092,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.0206,0.078,0.086,0.09,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.023,0.14,0.12,0.116,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.083,0.1,0.082,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.008,0.074,0.075,0.099,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.018,0.088,0.086,0.102,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.098,0.082,0.118,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.077,0.079,0.097,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0032,0.024,0.102,0.088,0.116,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.027,0.181,0.165,0.109,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.081,0.092,0.088,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.084,0.096,0.087,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0023,0.024,0.091,0.086,0.106,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.008,0.077,0.082,0.093,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.165,0.103,0.161,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00055,0.0208,0.075,0.101,0.074,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.085,0.092,0.092,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.018,0.087,0.116,0.075,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.024,0.102,0.104,0.096,0,0,1 -0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.098,0.092,0.106,0,0,1 -0.29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00062,0.038,0.211,0.188,0.112,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.025,0.108,0.109,0.099,0,0,1 -0.34,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0.0063,0.027,0.153,0.17,0.09,0,0,1 -0.94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.119,0.104,0.114,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.022,0.115,0.095,0.121,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.107,0.107,0.1,0,0,1 -0.21,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.015,0.093,0.075,0.124,0,0,1 -0.25,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00889,0.017,0.062,0.075,0.083,0,1,0 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.135,0.092,0.147,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.134,0.124,0.109,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.079,0.086,0.092,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0051,0.018,0.112,0.107,0.105,0,0,1 -0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.028,0.091,0.103,0.088,0,0,1 -0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.184,0.114,0.162,0,0,1 -0.52,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4e-05,0.019,0.086,0.077,0.112,0,0,1 -0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.018,0.109,0.104,0.102,0,1,0 -0.22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.101,0.092,0.109,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.0208,0.132,0.11,0.12,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.024,0.129,0.114,0.113,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.022,0.146,0.148,0.098,0,0,1 -0.78,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.003,0.087,0.095,0.091,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.092,0.103,0.089,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.012,0.101,0.09,0.112,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.025,0.098,0.088,0.111,0,1,0 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.144,0.084,0.171,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.01,0.101,0.086,0.117,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.111,0.11,0.101,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.067,0.098,0.068,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.092,0.083,0.111,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.024,0.158,0.116,0.134,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.019,0.092,0.076,0.121,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.133,0.116,0.113,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.019,0.086,0.104,0.081,0,0,1 -0.28,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0.0015,0.015,0.12,0.101,0.118,0,0,1 -0.45,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0012,0.027,0.12,0.113,0.106,0,0,1 -0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.114,0.101,0.113,0,0,1 -0.77,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.00093,0.019,0.121,0.136,0.089,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.0208,0.114,0.111,0.103,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.029,0.097,0.103,0.094,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.1,0.115,0.087,0,0,1 -0.42,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0.039,0.205,0.17,0.121,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.035,0.198,0.179,0.111,0,0,1 -0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.17,0.096,0.177,0,0,1 -0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.013,0.12,0.111,0.109,0,0,1 -0.11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.84,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00067,0.009,0.07,0.078,0.09,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.002,0.059,0.079,0.074,0,0,1 -0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.132,0.095,0.138,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.027,0.12,0.127,0.095,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.025,0.138,0.116,0.118,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.017,0.092,0.096,0.096,0,0,1 -0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.038,0.127,0.114,0.112,0,0,1 -0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.027,0.131,0.103,0.126,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.027,0.063,0.116,0.054,0,0,1 -0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.03,0.121,0.125,0.097,0,0,1 -0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0011,0.036,0.159,0.165,0.096,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.057,0.104,0.054,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.039,0.0174,0.083,0.116,0.07,0,1,0 -0.69,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.098,0.094,0.105,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.024,0.096,0.091,0.105,0,0,1 -0.62,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00043,0.022,0.122,0.116,0.104,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.002,0.033,0.07,0.047,1,0,0 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.028,0.134,0.126,0.107,0,0,1 -0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.028,0.122,0.113,0.109,0,0,1 -0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.0206,0.13,0.098,0.132,0,0,1 -0.62,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0034,0.013,0.134,0.119,0.113,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.016,0.101,0.089,0.114,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.02,0.081,0.101,0.081,0,1,0 -0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0082,0.017,0.065,0.096,0.068,0,1,0 -0.44,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.0206,0.141,0.103,0.137,0,0,1 -0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.033,0.113,0.123,0.092,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.0206,0.063,0.097,0.065,0,0,1 -0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.01,0.115,0.092,0.125,0,0,1 -0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.022,0.109,0.107,0.101,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.009,0.122,0.104,0.117,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.015,0.103,0.107,0.096,0,0,1 -0.75,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00046,0.029,0.139,0.153,0.091,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.017,0.097,0.104,0.093,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.139,0.103,0.135,0,0,1 -0.87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.134,0.079,0.17,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0206,0.069,0.076,0.091,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.022,0.096,0.103,0.093,0,0,1 -0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0206,0.171,0.098,0.174,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.118,0.101,0.117,0,0,1 -0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00087,0.018,0.098,0.1,0.098,0,0,1 -0.25,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0015,0.027,0.12,0.131,0.091,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.029,0.158,0.103,0.154,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.024,0.124,0.104,0.118,0,0,1 -0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0206,0.093,0.097,0.095,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.023,0.109,0.116,0.093,0,0,1 -0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.08,0.086,0.093,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.089,0.092,0.096,0,0,1 -0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00102,0.03,0.13,0.099,0.13103,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0013,0.023,0.097,0.109,0.088,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.107,0.095,0.113,0,0,1 -0.78,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.08,0.072,0.111,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.012,0.122,0.1,0.122,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.11,0.121,0.091,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.106,0.116,0.091,0,0,1 -0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.07,0.141,0.177,0.08,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0006,0.0208,0.148,0.119,0.124,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.025,0.118,0.099,0.11895,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.089,0.083,0.107,0,0,1 -0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023,0.213,0.109,0.195,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.026,0.109,0.104,0.103,0,1,0 -0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.044,0.138,0.064,0.218,0,0,1 -0.5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.022,0.095,0.11,0.086,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.027,0.108,0.111,0.097,0,1,0 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.014,0.041,0.114,0.036,1,0,0 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.072,0.092,0.078,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.022,0.099,0.102,0.097,0,0,1 -0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.111,0.102,0.108,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.094,0.089,0.105,0,0,1 -0.34,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00829,0.031,0.172,0.18,0.096,0,0,1 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.21,0.111,0.188,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0208,0.13,0.104,0.124,0,0,1 -0.27,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0.00208,0.0208,0.114,0.11,0.104,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.018,0.094,0.094,0.1,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.022,0.116,0.104,0.111,0,0,1 -0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.086,0.086,0.101,0,0,1 -0.65,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00047,0.023,0.113,0.091,0.124,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.102,0.116,0.087,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00044,0.0206,0.145,0.108,0.135,0,0,1 -0.55,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.161,0.09,0.18,0,0,1 -0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.151,0.074,0.203,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.1,0.095,0.106,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.109,0.111,0.098,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.036,0.139,0.153,0.091,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.022,0.09,0.116,0.078,0,0,1 -0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0208,0.09,0.088,0.102,0,0,1 -0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.024,0.1,0.102,0.098,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.131,0.107,0.122,0,0,1 -0.14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00078,0.022,0.078,0.088,0.089,0,0,1 -0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.095,0.111,0.086,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0206,0.193,0.133,0.144,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00056,0.027,0.179,0.125,0.143,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.112,0.101,0.111,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.033,0.14,0.165,0.086,0,0,1 -0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.107,0.077,0.139,0,0,1 -0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0208,0.07,0.074,0.094,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.013,0.084,0.091,0.097,0,0,1 -0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.02,0.099,0.096,0.103,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.057,0.092,0.063,0,0,1 -0.72,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.006,0.024,0.118,0.126,0.094,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.042,0.002,0.018,0.109,0.016,1,0,0 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.08,0.098,0.082,0,0,1 -0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.019,0.083,0.074,0.112,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.106,0.097,0.11,0,0,1 -0.61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00099,0.015,0.063,0.056,0.113,0,0,1 -0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.029,0.116,0.102,0.114,0,1,0 -0.71,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.025,0.003,0.031,0.068,0.046,1,0,0 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.027,0.089,0.091,0.099,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0013,0.026,0.135,0.109,0.124,0,0,1 -0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.025,0.1,0.116,0.086,0,0,1 -0.47,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00469,0.024,0.102,0.112,0.092,0,0,1 -0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.02,0.164,0.099,0.16532,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.143,0.092,0.154,0,0,1 -0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.089,0.085,0.105,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.1,0.093,0.108,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.025,0.163,0.111,0.148,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.13,0.093,0.139,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.133,0.108,0.123,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.038,0.157,0.152,0.103,0,0,1 -0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.036,0.142,0.123,0.115,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.087,0.073,0.118,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.007,0.082,0.079,0.104,0,0,1 -0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,3e-05,0.0419,0.134,0.165,0.081,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.015,0.11,0.089,0.124,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.035,0.11118,0.099,0.11207,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.175,0.086,0.204,0,0,1 -0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.073,0.109,0.067,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.018,0.134,0.097,0.138,0,0,1 -0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0008,0.034,0.046,0.099,0.04637,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0045,0.02,0.139,0.086,0.161,0,0,1 -0.63,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3e-05,0.033,0.12,0.096,0.125,0,0,1 -0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0007,0.02,0.045,0.099,0.04536,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.096,0.104,0.092,0,0,1 -0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.134,0.104,0.127,0,0,1 -0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.086,0.081,0.106,0,0,1 -0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.126,0.09,0.141,0,0,1 -0.9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.203,0.09,0.224,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0.004,0.017,0.114,0.015,1,0,0 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.013,0.084,0.082,0.102,0,1,0 -0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0206,0.162,0.099,0.163,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.018,0.135,0.109,0.124,0,0,1 -0.66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0.0012,0.023,0.133,0.116,0.113,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0023,0.023,0.118,0.101,0.117,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00073,0.024,0.135,0.104,0.129,0,0,1 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.03,0.069,0.067,0.102,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.026,0.121,0.097,0.125,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00063,0.026,0.16,0.12,0.134,0,0,1 -0.49,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.024,0.111,0.107,0.104,0,0,1 -0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.183,0.102,0.179,0,0,1 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.089,0.002,0.01,0.113,0.009,1,0,0 -0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.017,0.128,0.108,0.118,0,1,0 -0.68,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.117,0.104,0.113,0,0,1 -0.71,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.038,0.004,0.037,0.074,0.05,1,0,0 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.006,0.082,0.046,0.179,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.012,0.098,0.083,0.118,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.016,0.116,0.091,0.127,0,0,1 -0.5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.076,0.005,0.022,0.112,0.019,0,0,1 -0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.016,0.063,0.084,0.075,0,1,0 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0208,0.079,0.11,0.072,0,0,1 -0.64,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00024,0.0206,0.083,0.09,0.093,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.019,0.129,0.102,0.126,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.016,0.119,0.109,0.11,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0048,0.006,0.098,0.08,0.122,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.019,0.089,0.094,0.095,0,1,0 -0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.019,0.102,0.116,0.087,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.017,0.088,0.083,0.105,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.02,0.127,0.104,0.122,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.019,0.111,0.099,0.112,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.153,0.104,0.144,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.019,0.125,0.101,0.124,0,0,1 -0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.003,0.073,0.09,0.081,0,0,1 -0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.029,0.122,0.102,0.119,0,0,1 -0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.02,0.066,0.074,0.089,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.096,0.085,0.112,0,0,1 -0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.102,0.082,0.125,0,0,1 -0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0206,0.121,0.095,0.128,0,0,1 -0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0.015,0.048,0.116,0.041,1,0,0 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.076,0.093,0.082,0,0,1 -0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.019,0.112,0.126,0.089,0,0,1 -0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.013,0.073,0.072,0.101,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.011,0.132,0.101,0.131,0,0,1 -0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.015,0.088,0.104,0.083,0,1,0 -0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.024,0.114,0.102,0.112,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.0174,0.101,0.112,0.09,0,1,0 -0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.014,0.088,0.078,0.113,0,0,1 -0.76,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0.0018,0.012,0.065,0.076,0.086,0,0,1 -0.67,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.025,0.133,0.119,0.112,0,0,1 -0.46,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0.0014,0.022,0.122,0.103,0.119,0,0,1 -0.55,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.107,0.099,0.107,0,0,1 -0.54,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.113,0.09,0.125,0,0,1 -0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.074,0.104,0.07,0,0,1 -0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.118,0.112,0.105,0,0,1 -0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.019,0.039,0.146,0.116,0.125,0,1,0 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.18,0.082,0.219,0,0,1 -0.18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0206,0.147,0.095,0.154,0,0,1 -0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.017,0.119,0.099,0.12,0,0,1 -0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.095,0.108,0.088,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.072,0.075,0.096,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.114,0.089,0.129,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.012,0.048,0.089,0.054,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.016,0.076,0.081,0.095,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00082,0.0208,0.124,0.103,0.121,0,0,1 -0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.026,0.085,0.089,0.096,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.038,0.161,0.174,0.093,0,0,1 -0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.011,0.093,0.078,0.119,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.009,0.105,0.061,0.173,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.023,0.06,0.089,0.068,0,0,1 -0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0206,0.113,0.113,0.1,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.012,0.084,0.067,0.125,0,0,1 -0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.01,0.077,0.086,0.09,0,0,1 -0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.067,0.071,0.095,0,0,1 -0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.109,0.097,0.112,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.003,0.013,0.099,0.013,1,0,0 -0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0026,0.007,0.115,0.099,0.11592,0,0,1 -0.59,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0055,0.007,0.077,0.074,0.104,0,0,1 -0.73,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0206,0.102,0.089,0.115,0,0,1 -0.47,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0034,0.022,0.102,0.102,0.101,0,0,1 -0.21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.132,0.087,0.152,0,0,1 -0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.166,0.096,0.174,0,0,1 -0.31,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.005,0.0206,0.141,0.109,0.13,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.103,0.065,0.158,0,0,1 -0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.02,0.111,0.08,0.138,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.039,0.141,0.112,0.126,0,0,1 -0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.095,0.096,0.1,0,0,1 -0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0206,0.085,0.092,0.092,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0206,0.098,0.094,0.104,0,0,1 -0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0206,0.143,0.076,0.189,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.02,0.102,0.096,0.106,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.004,0.102,0.1,0.10189,0,1,0 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.07,0.09,0.078,0,0,1 -0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.073,0.079,0.092,0,0,1 -0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.016,0.071,0.082,0.086,0,0,1 -0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.088,0.087,0.1,0,0,1 -0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.071,0.184,0.103,0.177,0,0,1 -0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.119,0.112,0.106,0,0,1 -0.26,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.0174,0.07,0.095,0.074,0,1,0 -0.39,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.024,0.135,0.151,0.089,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.036,0.119,0.09,0.133,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.03,0.091,0.115,0.079,0,0,1 -0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.098,0.104,0.092,0,0,1 -0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.018,0.092,0.085,0.108,0,0,1 -0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.117,0.121,0.097,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.0206,0.129,0.135,0.096,0,0,1 -0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0206,0.103,0.101,0.102,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.016,0.104,0.078,0.134,0,0,1 -0.75,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4e-05,0.02,0.146,0.104,0.139,0,0,1 -0.25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0027,0.0206,0.073,0.097,0.076,0,0,1 -0.44,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.028,0.074,0.114,0.065,0,0,1 -0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.104,0.081,0.128,0,0,1 -0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.085,0.079,0.108,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.158,0.131,0.12,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0206,0.078,0.077,0.102,0,0,1 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0174,0.142,0.137,0.104,0,1,0 -0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.091,0.098,0.093,0,0,1 -0.44,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0.0001,0.006,0.061,0.086,0.071,0,0,1 -0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.027,0.1,0.093,0.108,0,0,1 -0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0039,0.0208,0.13,0.111,0.116,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.107,0.115,0.092,0,0,1 -0.45,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.101,0.095,0.106,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.011,0.077,0.086,0.089,0,0,1 -0.45,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0.01,0.003,0.067,0.1,0.06693,0,1,0 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.019,0.115,0.102,0.114,0,0,1 -0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0027,0.0206,0.125,0.143,0.087,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0.139,0.071,0.196,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0.008,0.028,0.086,0.033,1,0,0 -0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.107,0.074,0.144,0,0,1 -0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.093,0.081,0.115,0,0,1 -0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.013,0.11118,0.099,0.11207,0,0,1 -0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.074,0.086,0.086,0,0,1 -0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.02,0.079,0.081,0.098,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.012,0.117,0.085,0.138,0,0,1 -0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.128,0.094,0.136,0,0,1 -0.73,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.007,0.063,0.088,0.072,0,0,1 -0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0206,0.08,0.082,0.098,0,0,1 -0.57,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.05,0.013,0.064,0.099,0.06451,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0206,0.082,0.099,0.083,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.161,0.133,0.121,0,0,1 -0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.105,0.104,0.101,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.014,0.123,0.096,0.128,0,0,1 -0.25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.0206,0.101,0.107,0.094,0,0,1 -0.25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.014,0.0206,0.081,0.09,0.09,0,0,1 -0.71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.0206,0.146,0.093,0.156,0,0,1 -0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.104,0.112,0.092,0,0,1 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.096,0.087,0.11,0,0,1 -0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.0206,0.063,0.086,0.073,0,0,1 -0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.082,0.107,0.077,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0039,0.0206,0.083,0.085,0.097,0,0,1 -0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.018,0.102,0.1,0.102,0,0,1 -0.35,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0208,0.071,0.11,0.064,0,0,1 -0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,0,0,1 -0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.081,0.086,0.094,0,0,1 -0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.006,0.094,0.099,0.09475,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.081,0.086,0.094,0,0,1 -0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.091,0.1,0,0,1 -0.45,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.093,0.116,0.08,0,0,1 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.024,0.111,0.115,0.097,0,0,1 -0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0206,0.114,0.104,0.108,0,0,1 -0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0206,0.076,0.1,0.075,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.01,0.102,0.082,0.124,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0206,0.084,0.095,0.088,0,0,1 -0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.104,0.103,0.101,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0206,0.087,0.093,0.093,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.032,0.106,0.087,0.122,0,0,1 -0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.012,0.095,0.093,0.102,0,0,1 -0.45,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6e-05,0.046,0.21,0.111,0.19,0,0,1 -0.45,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00044,0.028,0.153,0.091,0.168,0,0,1 -0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.0206,0.098,0.101,0.097,0,0,1 -0.46,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.022,0.097,0.077,0.125,0,0,1 -0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.104,0.085,0.122,0,0,1 -0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0206,0.155,0.104,0.148,0,0,1 -0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.155,0.094,0.165,0,0,1 -0.38,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,6e-05,0.018,0.139,0.099,0.14012,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.016,0.086,0.104,0.083,0,0,1 -0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0174,0.087,0.085,0.103,0,1,0 -0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0208,0.082,0.092,0.089,0,0,1 -0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.164,0.11,0.149,0,0,1 -0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0.007,0.072,0.095,0.076,0,0,1 -0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0066,0.016,0.092,0.1,0.091,0,1,0 -0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.0206,0.194,0.097,0.2,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00016,0.052,0.183,0.083,0.22,0,0,1 -0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0208,0.159,0.101,0.157,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0206,0.11118,0.099,0.11207,0,0,1 -0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.11118,0.099,0.11207,0,0,1 -0.72,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.114,0.111,0.102,0,0,1 -0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0206,0.114,0.1,0.115,0,0,1 -0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.096,0.099,0.09677,0,0,1 -0.53,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.022,0.089,0.083,0.107,0,0,1 -0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.123,0.091,0.136,0,0,1 -0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.077,0.067,0.115,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.098,0.099,0.09879,0,0,1 -0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.022,0.145,0.123,0.118,0,0,1 -0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0206,0.096,0.082,0.118,0,0,1 -0.68,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.0206,0.093,0.086,0.108,0,0,1 -0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.104,0.094,0.112,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0206,0.095,0.111,0.085,0,0,1 -0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.118,0.11,0.107,0,0,1 -0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.023,0.109,0.114,0.095,0,0,1 -0.43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.0206,0.104,0.091,0.115,0,0,1 -0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.025,0.071,0.08,0.088,0,0,1 -0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0097,0.0174,0.098,0.13,0.076,0,1,0 -0.16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0062,0.0174,0.108,0.114,0.094,0,1,0 -0.45,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0206,0.132,0.09,0.147,0,0,1 -0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.108,0.115,0.094,0,0,1 -0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.015,0.072,0.05,0.145,0,0,1 -0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.014,0.057,0.062,0.092,0,0,1 -0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.177,0.146,0.122,0,0,1 -0.26,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.017,0.174,0.123,0.142,0,0,1 -0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.019,0.147,0.103,0.143,0,0,1 -0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.0208,0.107,0.107,0.1,0,0,1 -0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.02,0.113,0.086,0.131,0,0,1 -0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0206,0.101,0.088,0.115,0,0,1 -0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.008,0.154,0.075,0.204,0,0,1 -0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0206,0.125,0.107,0.117,0,0,1 -0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.125,0.114,0.109,0,0,1 -0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0174,0.123,0.099,0.124,0,1,0 -0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0206,0.106,0.088,0.121,0,0,1 -0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.093,0.091,0.102,0,0,1 +0.73,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0006,0.015,0.12,0.082,0.146,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.03,0.143,0.133,0.108,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.024,0.102,0.131,0.078,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.017,0.077,0.09,0.085,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.026,0.139,0.09,0.153,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.016,0.086,0.07,0.123,3 +0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.128,0.104,0.121,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.086,0.078,0.11,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.087,0.109,0.08,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.029,0.124,0.128,0.097,3 +0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.011,0.008,0.073,0.074,0.098,2 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.023,0.098,0.085,0.115,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.094,0.099,0.09475,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.023,0.113,0.102,0.111,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.02,0.063,0.095,0.066,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.09,0.071,0.126,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.02,0.114,0.1,0.114,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.018,0.078,0.092,0.085,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032,0.014,0.085,0.116,0.071,3 +0.5,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.061,0.0096,0.013,0.116,0.011,1 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0208,0.098,0.101,0.097,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0206,0.086,0.091,0.095,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0006,0.026,0.136,0.119,0.114,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.087,0.093,0.094,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.1,0.08,0.124,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.014,0.124,0.12,0.103,3 +0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.025,0.009,0.05,0.084,0.06,1 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.013,0.108,0.079,0.137,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.006,0.12,0.104,0.113,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.017,0.083,0.086,0.097,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.025,0.11,0.1,0.11,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.09,0.098,0.091,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.119,0.098,0.12,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.032,0.207,0.157,0.132,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.028,0.122,0.11,0.111,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00959,0.048,0.168,0.028,0.612,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.0469,0.123,0.028,0.445,3 +0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.72,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.025,0.18,0.083,0.217,3 +0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0001,0.006,0.07,0.09,0.177,3 +0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00979,0.004,0.081,0.064,0.126,2 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.106,0.079,0.134,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.095,0.081,0.118,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.104,0.093,0.112,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.108,0.071,0.151,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.129,0.108,0.119,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.0206,0.12,0.08,0.15,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.018,0.086,0.082,0.105,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.103,0.091,0.113,3 +0.31,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00189,0.03,0.158,0.101,0.156,3 +0.54,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.06,0.087,0.069,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.019,0.102,0.093,0.11,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.091,0.087,0.105,3 +0.49,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.013,0.082,0.1,0.082,3 +0.28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.018,0.085,0.078,0.109,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.028,0.189,0.166,0.114,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.028,0.103,0.1,0.103,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.016,0.091,0.088,0.103,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.008,0.074,0.085,0.087,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,5e-05,0.036,0.094,0.102,0.092,3 +0.67,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.02,0.083,0.096,0.087,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.079,0.062,0.126,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.093,0.078,0.119,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.087,0.089,0.097,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.107,0.112,0.096,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.032,0.11118,0.099,0.11207,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.104,0.099,0.10483,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.079,0.089,0.09,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.039,0.097,0.084,0.115,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.134,0.099,0.136,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.026,0.08,0.084,0.095,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.124,0.104,0.118,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.122,0.085,0.144,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.122,0.082,0.15,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.079,0.07,0.114,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.099,0.085,0.117,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.022,0.096,0.086,0.111,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.019,0.123,0.099,0.124,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.011,0.069,0.06,0.114,3 +0.16,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.062,0.255,0.104,0.244,3 +0.28,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0025,0.026,0.179,0.155,0.115,3 +0.56,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.02,0.066,0.094,0.07,2 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.026,0.113,0.091,0.123,3 +0.55,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0003,0.0206,0.076,0.101,0.076,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0003,0.025,0.107,0.092,0.116,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.129,0.102,0.126,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.109,0.103,0.106,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.089,0.099,0.09,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.036,0.301,0.175,0.172,3 +0.55,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0076,0.01,0.086,0.084,0.102,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.027,0.103,0.099,0.10383,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0048,0.024,0.114,0.084,0.135,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.095,0.099,0.096,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.146,0.119,0.123,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.121,0.104,0.116,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.014,0.119,0.098,0.121,3 +0.67,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.075,0.073,0.102,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.106,0.094,0.113,3 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.05,0.164,0.126,0.13,3 +0.32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.105,0.104,0.1,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.112,0.098,0.115,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.011,0.052,0.09,0.058,1 +0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.102,0.123,0.083,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.006,0.061,0.058,0.105,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.13,0.099,0.13103,3 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.012,0.089,0.094,0.095,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.094,0.097,0.098,3 +0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0002,0.025,0.124,0.115,0.108,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.157,0.09,0.175,3 +0.38,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0039,0.022,0.061,0.076,0.08,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.144,0.094,0.154,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.005,0.0029,0.104,0.0028,1 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0.008,0.013,0.119,0.011,1 +0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0037,0.0206,0.069,0.083,0.083,3 +0.7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0009,0.0206,0.07,0.08,0.087,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.086,0.09,0.096,3 +0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.115,0.092,0.124,3 +0.58,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0002,0.0206,0.256,0.09,0.283,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.134,0.098,0.137,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.098,0.089,0.11,3 +0.63,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.11,0.082,0.134,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0208,0.153,0.122,0.126,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.118,0.099,0.11895,3 +0.36,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.179,0.136,0.131,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.122,0.081,0.152,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.197,0.108,0.182,3 +0.43,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.018,0.137,0.102,0.134,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.123,0.097,0.126,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.011,0.093,0.073,0.127,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.008,0.075,0.077,0.098,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.024,0.087,0.094,0.093,3 +0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.038,0.252,0.113,0.222,3 +0.37,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.116,0.09,0.128,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.087,0.099,0.0877,3 +0.26,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.011,0.0206,0.089,0.104,0.086,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.051,0.187,0.116,0.16,3 +0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.007,0.137,0.084,0.164,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.012,0.059,0.083,0.071,3 +0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.008,0.124,0.09,0.137,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.109,0.103,0.106,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.105,0.091,0.115,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.011,0.056,0.086,0.065,2 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.013,0.111,0.094,0.118,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.004,0.039,0.061,0.064,1 +0.49,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.093,0.094,0.099,3 +0.01,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.033,0.156,0.167,0.093,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.028,0.142,0.099,0.143,3 +0.56,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0022,0.014,0.088,0.077,0.114,3 +0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.12,0.112,0.107,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.112,0.108,0.104,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.022,0.077,0.1,0.07692,2 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.027,0.114,0.131,0.087,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0208,0.108,0.091,0.119,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.025,0.142,0.125,0.113,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.137,0.095,0.144,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.072,0.104,0.068,3 +0.63,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.052,0.085,0.061,3 +0.49,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0002,0.024,0.137,0.099,0.1381,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.68,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0016,0.025,0.099,0.109,0.09,3 +0.73,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.003,0.019,0.106,0.099,0.10685,3 +0.57,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0001,0.024,0.081,0.089,0.091,3 +0.29,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.074,0.071,0.104,3 +0.29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.054,0.076,0.072,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.084,0.087,0.097,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.024,0.129,0.098,0.131,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.105,0.102,0.103,3 +0.35,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.022,0.081,0.096,0.084,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.062,0.094,0.066,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.024,0.102,0.112,0.092,3 +0.48,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0001,0.0206,0.119,0.091,0.131,3 +0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.024,0.13,0.111,0.117,3 +0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.013,0.128,0.107,0.12,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.027,0.159,0.119,0.134,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.08,0.077,0.104,3 +0.24,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0033,0.012,0.07,0.087,0.08,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.014,0.115,0.102,0.113,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.099,0.086,0.115,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.111,0.094,0.118,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.129,0.107,0.121,3 +0.57,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.073,0.097,0.075,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.022,0.15,0.101,0.149,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.074,0.069,0.107,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.031,0.129,0.099,0.13003,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.107,0.094,0.114,3 +0.31,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00189,0.029,0.159,0.143,0.111,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.095,0.076,0.125,3 +0.72,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.186,0.124,0.15,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.025,0.109,0.108,0.1,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.014,0.12,0.087,0.138,3 +0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.039,0.2,0.136,0.147,3 +0.29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0001,0.031,0.142,0.177,0.08,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.024,0.073,0.097,0.075,3 +0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.026,0.093,0.088,0.106,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.085,0.089,0.096,3 +0.32,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0.0005,0.03,0.167,0.182,0.092,3 +0.32,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.019,0.126,0.076,0.163,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.016,0.076,0.081,0.094,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.137,0.098,0.14,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.192,0.102,0.188,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.022,0.085,0.104,0.08,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.004,0.003,0.099,0.003,1 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.152,0.113,0.135,3 +0.25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0049,0.0206,0.074,0.092,0.08,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.059,0.05,0.119,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.014,0.139,0.088,0.157,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.023,0.1,0.088,0.113,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.087,0.086,0.101,3 +0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.016,0.017,0.075,0.1,0.07492,2 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.077,0.072,0.107,3 +0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.096,0.104,0.092,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.13,0.116,0.111,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.012,0.061,0.08,0.076,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.076,0.065,0.116,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.149,0.109,0.136,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.085,0.107,0.079,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.093,0.101,0.093,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.113,0.094,0.12,3 +0.26,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.132,0.124,0.107,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.105,0.09,0.117,3 +0.92,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0003,0.0206,0.11118,0.099,0.11207,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.097,0.101,0.097,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.094,0.082,0.115,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.017,0.056,0.09,0.062,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.023,0.146,0.1,0.146,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.133,0.116,0.115,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.082,0.088,0.093,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.121,0.08,0.153,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.012,0.105,0.091,0.115,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.029,0.125,0.102,0.122,3 +0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0003,0.018,0.098,0.093,0.105,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.084,0.09,0.093,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.026,0.108,0.104,0.102,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.117,0.095,0.123,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.135,0.102,0.132,3 +0.41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0003,0.023,0.111,0.083,0.134,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.018,0.093,0.119,0.078,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.019,0.116,0.089,0.13,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.017,0.089,0.104,0.086,3 +0.32,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0003,0.03,0.101,0.114,0.089,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.023,0.12,0.08,0.149,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.119,0.103,0.116,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.02,0.089,0.089,0.099,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.023,0.134,0.082,0.163,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.025,0.205,0.12,0.17,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.096,0.128,0.075,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.129,0.019,0.142,3 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.138,0.101,0.126,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.018,0.114,0.1,0.114,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01479,0.015,0.061,0.085,0.072,2 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.082,0.094,0.087,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0206,0.095,0.098,0.098,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.031,0.11118,0.099,0.11207,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.018,0.084,0.075,0.113,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.026,0.106,0.104,0.101,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0208,0.123,0.103,0.119,3 +0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.019,0.066,0.096,0.068,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0018,0.022,0.101,0.113,0.09,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.119,0.092,0.129,3 +0.6,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0.0059,0.0206,0.126,0.113,0.111,3 +0.77,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.131,0.074,0.176,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.091,0.099,0.09173,3 +0.73,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0008,0.019,0.121,0.101,0.119,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.014,0.111,0.097,0.115,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.108,0.089,0.121,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.102,0.087,0.118,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.144,0.095,0.152,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.024,0.093,0.092,0.101,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.029,0.115,0.107,0.107,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.026,0.11118,0.099,0.11207,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.135,0.107,0.127,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.109,0.111,0.098,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.151,0.104,0.142,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.118,0.095,0.124,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.003,0.006,0.08,0.0076,1 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.123,0.093,0.132,3 +0.36,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.018,0.082,0.099,0.08266,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.09,0.09,0.1,3 +0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.02,0.147,0.099,0.14817,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.027,0.093,0.099,0.094,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.091,0.095,0.096,3 +0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.0206,0.084,0.09,0.094,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.129,0.104,0.123,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.104,0.104,0.1,3 +0.45,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.0208,0.101,0.084,0.121,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.083,0.104,0.079,3 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.133,0.098,0.136,3 +0.38,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.078,0.085,0.092,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.025,0.136,0.089,0.153,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.112,0.089,0.126,3 +0.37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.027,0.017,0.087,0.099,0.0877,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.019,0.095,0.11,0.087,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.089,0.099,0.08971,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.01,0.068,0.088,0.078,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.097,0.12,0.081,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.133,0.078,0.171,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.013,0.11,0.112,0.098,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.019,0.077,0.08,0.097,3 +0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.026,0.142,0.099,0.14314,3 +0.27,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.1,0.099,0.1008,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.043,0.187,0.096,0.194,3 +0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.071,0.087,0.082,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0016,0.018,0.107,0.111,0.097,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.105,0.097,0.108,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.095,0.109,0.087,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.031,0.169,0.149,0.114,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.103,0.103,0.1,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.02,0.073,0.104,0.07,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.152,0.081,0.188,3 +0.25,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0001,0.017,0.092,0.089,0.103,3 +0.49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.027,0.141,0.116,0.12,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.097,0.099,0.09778,3 +0.73,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.105,0.116,0.089,3 +0.12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.027,0.093,0.099,0.09375,3 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.117,0.098,0.12,3 +0.21,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.101,0.12,0.084,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.066,0.093,0.071,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.087,0.08,0.109,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.018,0.17,0.099,0.171,3 +0.57,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.118,0.102,0.116,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.012,0.078,0.072,0.108,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.015,0.098,0.088,0.112,2 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.09,0.088,0.102,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.003,0.032,0.052,0.06,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.103,0.109,0.095,3 +0.21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0004,0.034,0.189,0.135,0.14,3 +0.19,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0419,0.128,0.098,0.13,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.031,0.141,0.095,0.149,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.1,0.09,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.026,0.084,0.098,0.086,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.137,0.163,0.084,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.094,0.09,0.105,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.115,0.09,0.128,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.184,0.121,0.153,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.082,0.077,0.107,3 +0.58,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0005,0.023,0.115,0.1,0.115,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.069,0.096,0.071,2 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.12,0.098,0.123,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.144,0.1,0.145,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.133,0.116,0.115,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.024,0.077,0.099,0.078,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.074,0.09,0.083,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.101,0.116,0.087,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.012,0.146,0.093,0.157,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.02,0.105,0.104,0.1,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.112,0.103,0.109,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.23,0.104,0.217,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.151,0.121,0.125,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.003,0.073,0.085,0.086,3 +0.67,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.106,0.092,0.115,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.104,0.099,0.10483,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.018,0.128,0.1,0.128,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.085,0.092,0.092,3 +0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.012,0.096,0.093,0.103,3 +0.66,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0001,0.006,0.121,0.085,0.143,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.092,0.092,0.101,3 +0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.12,0.092,0.13,3 +0.39,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.004,0.017,0.063,0.099,0.0635,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.028,0.094,0.088,0.106,3 +0.61,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0004,0.0206,0.113,0.104,0.106,3 +0.41,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0004,0.0206,0.091,0.096,0.095,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.025,0.098,0.101,0.096,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.019,0.104,0.101,0.104,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0208,0.098,0.099,0.1,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0.002,0.0048,0.09,0.0054,1 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.082,0.08,0.104,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.142,0.112,0.127,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.034,0.21,0.104,0.199,3 +0.56,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.019,0.137,0.109,0.126,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5e-05,0.023,0.095,0.089,0.106,3 +0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.012,0.093,0.079,0.117,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.011,0.095,0.073,0.129,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.026,0.119,0.122,0.097,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0005,0.032,0.137,0.116,0.119,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.015,0.077,0.079,0.097,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.011,0.108,0.066,0.165,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.023,0.112,0.1,0.112,3 +0.54,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,5e-05,0.012,0.112,0.077,0.145,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0206,0.11118,0.099,0.11207,3 +0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.154,0.097,0.159,3 +0.28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.029,0.171,0.12,0.143,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.018,0.059,0.096,0.061,1 +0.57,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.091,0.078,0.116,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.024,0.061,0.082,0.075,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.041,0.158,0.142,0.111,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.027,0.108,0.104,0.103,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.028,0.123,0.123,0.1,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.088,0.096,0.092,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.025,0.088,0.095,0.093,3 +0.64,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.145,0.093,0.155,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.016,0.12,0.091,0.132,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.088,0.086,0.102,3 +0.69,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0003,0.026,0.089,0.11,0.081,3 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.017,0.144,0.096,0.15,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.091,0.079,0.115,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.085,0.094,0.09,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.011,0.171,0.109,0.157,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.022,0.138,0.124,0.111,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.196,0.094,0.209,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.024,0.133,0.1,0.132,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.093,0.079,0.117,3 +0.49,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.012,0.089,0.109,0.082,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0006,0.015,0.133,0.119,0.112,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.01,0.051,0.084,0.061,1 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.008,0.087,0.089,0.098,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.016,0.091,0.104,0.086,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.175,0.112,0.156,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.099,0.112,0.088,3 +0.4,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.32,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00015,0.024,0.135,0.115,0.118,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.027,0.1,0.104,0.096,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.023,0.081,0.092,0.088,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.02,0.143,0.128,0.112,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.032,0.149,0.116,0.127,3 +0.68,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.074,0.072,0.103,3 +0.89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.006,0.101,0.073,0.138,3 +0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.4,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00015,0.03,0.21,0.148,0.142,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.026,0.092,0.09,0.102,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.017,0.107,0.094,0.113,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.113,0.097,0.116,3 +0.51,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0019,0.022,0.074,0.091,0.081,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.023,0.101,0.099,0.102,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.085,0.113,0.075,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0206,0.117,0.111,0.105,3 +0.12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.03,0.176,0.089,0.197,3 +0.15,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.023,0.183,0.089,0.205,3 +0.58,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0032,0.0208,0.075,0.104,0.072,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.072,0.084,0.086,3 +0.2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0009,0.024,0.123,0.099,0.125,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.009,0.083,0.078,0.106,3 +0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.105,0.086,0.122,2 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.016,0.095,0.107,0.089,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0208,0.096,0.101,0.095,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.007,0.069,0.077,0.089,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0003,0.019,0.117,0.108,0.108,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.029,0.152,0.116,0.13,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.107,0.094,0.113,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.022,0.082,0.094,0.087,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.026,0.12,0.124,0.096,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.107,0.104,0.101,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.017,0.081,0.087,0.094,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.123,0.074,0.166,3 +0.57,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.018,0.071,0.072,0.099,3 +0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.0206,0.073,0.103,0.072,3 +0.68,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.089,0.083,0.105,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.017,0.104,0.101,0.103,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.079,0.079,0.1,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.025,0.098,0.092,0.107,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.029,0.087,0.11,0.079,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.022,0.096,0.094,0.102,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.089,0.088,0.102,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.031,0.131,0.123,0.106,2 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.103,0.114,0.09,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.069,0.081,0.086,3 +0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.097,0.11,0.09,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.007,0.071,0.074,0.096,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.11,0.098,0.112,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.006,0.113,0.089,0.127,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.025,0.134,0.113,0.119,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.028,0.103,0.11,0.094,3 +0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.0174,0.077,0.104,0.073,2 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.022,0.1,0.097,0.104,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.029,0.113,0.113,0.1,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.019,0.099,0.079,0.125,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0208,0.056,0.096,0.058,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0208,0.091,0.098,0.092,3 +0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.111,0.097,0.115,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.111,0.112,0.099,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.013,0.119,0.09,0.133,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.09,0.097,0.093,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.071,0.093,0.076,3 +0.75,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.034,0.103,0.132,0.078,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.076,0.08,0.095,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.108,0.088,0.122,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.012,0.084,0.078,0.107,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.026,0.102,0.097,0.106,3 +0.22,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.023,0.147,0.101,0.145,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0022,0.029,0.085,0.108,0.079,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.258,0.114,0.227,3 +0.18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00959,0.024,0.22,0.168,0.131,3 +0.48,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.098,0.019,0.029,0.111,0.026,1 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.115,0.111,0.104,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.008,0.053,0.086,0.061,1 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.13,0.086,0.151,3 +0.26,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0002,0.039,0.122,0.128,0.096,3 +0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.023,0.11,0.101,0.109,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.011,0.07,0.092,0.076,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.017,0.076,0.086,0.088,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.024,0.109,0.099,0.10987,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0003,0.018,0.117,0.097,0.121,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.086,0.091,0.094,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.053,0.181,0.104,0.174,3 +0.39,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.131,0.126,0.104,3 +0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.019,0.144,0.093,0.156,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.012,0.07,0.071,0.099,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.014,0.083,0.086,0.096,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0003,0.0208,0.1,0.104,0.096,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.09,0.114,0.079,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.072,0.084,0.085,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.022,0.084,0.084,0.1,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0009,0.017,0.095,0.095,0.1,3 +0.59,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0003,0.016,0.112,0.075,0.148,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.099,0.103,0.097,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.093,0.096,0.097,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.022,0.123,0.093,0.132,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.089,0.094,0.095,3 +0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.209,0.108,0.194,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.016,0.047,0.097,0.048,1 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.024,0.117,0.102,0.115,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.083,0.099,0.084,3 +0.17,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.014,0.111,0.102,0.109,3 +0.17,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0003,0.015,0.101,0.081,0.125,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0208,0.112,0.099,0.1129,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.03,0.143,0.132,0.108,3 +0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.021,0.018,0.126,0.116,0.107,3 +0.34,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.103,0.138,0.075,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.082,0.093,0.088,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.022,0.187,0.11,0.17,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0064,0.023,0.064,0.098,0.065,2 +0.36,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.11,0.094,0.117,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0206,0.162,0.112,0.146,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.026,0.119,0.12,0.1,3 +0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.09,0.085,0.106,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0208,0.086,0.081,0.107,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.121,0.101,0.121,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.017,0.065,0.068,0.097,2 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023,0.005,0.033,0.067,0.049,1 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.003,0.044,0.056,0.077,2 +0.85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0073,0.024,0.066,0.109,0.061,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.02,0.098,0.067,0.131,3 +0.15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.027,0.096,0.104,0.091,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0003,0.02,0.075,0.121,0.062,3 +0.73,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.028,0.109,0.132,0.083,3 +0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.035,0.217,0.098,0.221,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.051,0.167,0.1,0.168,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.149,0.116,0.126,3 +0.81,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0005,0.022,0.102,0.085,0.119,3 +0.9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.017,0.118,0.082,0.144,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.043,0.189,0.107,0.176,3 +0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0206,0.079,0.081,0.097,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.001,0.024,0.121,0.12,0.101,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.02,0.088,0.099,0.0887,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.027,0.119,0.112,0.106,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0025,0.029,0.086,0.119,0.072,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.017,0.094,0.099,0.09475,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.028,0.084,0.099,0.086,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00015,0.016,0.094,0.087,0.108,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.11118,0.099,0.11207,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.086,0.074,0.111,3 +0.54,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.018,0.1,0.077,0.13,3 +0.39,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.063,0.087,0.072,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0.007,0.028,0.1,0.028,1 +0.24,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.027,0.116,0.082,0.143,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.099,0.082,0.12,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.03,0.161,0.093,0.174,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.01,0.0208,0.065,0.1,0.06493,2 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.109,0.075,0.145,3 +0.22,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.001,0.023,0.087,0.089,0.098,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.081,0.101,0.08,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.019,0.065,0.1,0.06493,2 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.028,0.199,0.146,0.137,3 +0.29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00015,0.036,0.144,0.176,0.082,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.51,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.026,0.11118,0.099,0.11207,3 +0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0001,0.025,0.1,0.098,0.103,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.019,0.114,0.1,0.114,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.014,0.075,0.074,0.101,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.074,0.089,0.083,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00015,0.029,0.132,0.114,0.116,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.008,0.09,0.077,0.117,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.0206,0.248,0.15,0.165,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.022,0.151,0.091,0.166,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0208,0.105,0.102,0.1,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.043,0.144,0.162,0.089,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.13,0.124,0.105,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.12,0.103,0.117,3 +0.28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.138,0.121,0.115,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.067,0.093,0.073,3 +0.89,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.105,0.095,0.11,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.022,0.104,0.102,0.102,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.017,0.162,0.087,0.186,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.019,0.121,0.104,0.116,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0208,0.1,0.104,0.095,3 +0.3,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.018,0.096,0.093,0.103,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.035,0.12,0.122,0.098,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0002,0.027,0.079,0.098,0.081,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.01,0.088,0.094,0.094,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.066,0.071,0.093,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.012,0.022,0.071,0.14,0.051,1 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.007,0.082,0.088,0.093,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.016,0.134,0.12,0.112,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.009,0.072,0.077,0.094,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.022,0.14,0.114,0.123,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.007,0.091,0.083,0.11,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.02,0.11,0.116,0.094,3 +0.21,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0002,0.025,0.108,0.113,0.096,3 +0.54,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.101,0.064,0.158,3 +0.21,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.095,0.096,0.099,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0208,0.086,0.092,0.093,3 +0.66,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0038,0.0208,0.079,0.107,0.074,3 +0.57,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.141,0.089,0.158,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.121,0.079,0.153,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.026,0.197,0.101,0.195,3 +0.57,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.104,0.107,0.097,3 +0.28,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.001,0.023,0.116,0.113,0.103,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.101,0.09,3 +0.21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.012,0.072,0.1,0.07192,2 +0.43,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0035,0.017,0.099,0.114,0.087,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.019,0.101,0.108,0.094,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.091,0.093,0.098,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.031,0.134,0.1,0.134,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.119,0.111,0.107,3 +0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0005,0.0206,0.09,0.109,0.083,3 +0.53,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00025,0.0208,0.145,0.103,0.141,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.017,0.083,0.092,0.09,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.077,0.075,0.103,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.077,0.099,0.07762,3 +0.34,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00025,0.067,0.23,0.173,0.133,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.134,0.079,0.17,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.004,0.038,0.108,0.035,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.089,0.099,0.08971,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.133,0.098,0.136,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.103,0.09,0.114,3 +0.34,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.023,0.076,0.104,0.073,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.123,0.115,0.106,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.083,0.097,0.085,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.083,0.087,0.096,3 +0.63,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0028,0.02,0.093,0.104,0.089,3 +0.75,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.013,0.088,0.085,0.103,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0.004,0.01,0.1,0.01,1 +0.54,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.095,0.088,0.109,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.076,0.083,0.092,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.093,0.09,0.103,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035,0.014,0.078,0.098,0.08,2 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.019,0.094,0.093,0.101,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.12,0.143,0.083,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.134,0.102,0.131,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.012,0.081,0.099,0.082,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.012,0.086,0.085,0.101,2 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.082,0.073,0.112,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0208,0.078,0.082,0.095,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.087,0.094,0.093,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.115,0.097,0.118,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.106,0.104,0.101,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.09,0.116,0.077,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.116,0.099,0.117,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0206,0.098,0.102,0.096,3 +0.41,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0002,0.0206,0.43,0.109,0.395,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.015,0.061,0.091,0.067,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.139,0.1,0.139,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.015,0.048,0.071,0.067,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.103,0.108,0.095,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0208,0.102,0.093,0.11,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.018,0.099,0.103,0.096,3 +0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.014,0.113,0.085,0.132,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0002,0.03,0.135,0.129,0.105,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.089,0.089,0.1,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.094,0.091,0.103,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00015,0.0208,0.097,0.103,0.095,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.018,0.093,0.095,0.098,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.101,0.101,0.1,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.001,0.05,0.031,0.161,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.022,0.072,0.116,0.062,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.109,0.109,0.1,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.016,0.101,0.109,0.092,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.103,0.114,0.091,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.113,0.104,0.106,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.083,0.067,0.124,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0208,0.055,0.085,0.065,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.031,0.107,0.104,0.103,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.15,0.142,0.106,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.028,0.138,0.113,0.122,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.02,0.069,0.097,0.071,2 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.014,0.089,0.099,0.09,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.12,0.103,0.117,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.087,0.079,0.109,3 +0.73,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.016,0.089,0.094,0.095,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.022,0.098,0.103,0.096,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.01,0.073,0.082,0.089,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.026,0.098,0.095,0.103,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.019,0.106,0.104,0.1,3 +0.82,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.014,0.133,0.1,0.134,3 +0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.073,0.43,0.109,0.395,3 +0.2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.025,0.093,0.1,0.093,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.019,0.069,0.099,0.06955,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0184,0.02,0.105,0.1,0.10489,2 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.113,0.084,0.134,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.024,0.093,0.104,0.089,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.025,0.087,0.098,0.088,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.025,0.141,0.128,0.11,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.017,0.088,0.089,0.099,3 +0.87,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0002,0.015,0.132,0.086,0.153,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.094,0.093,0.101,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.016,0.07,0.093,0.075,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.007,0.078,0.082,0.095,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.102,0.099,0.103,3 +0.64,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00189,0.061,0.214,0.094,0.228,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.072,0.104,0.068,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.031,0.151,0.14,0.108,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.027,0.12,0.097,0.123,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.065,0.093,0.07,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.052,0.104,0.049,3 +0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.038,0.253,0.124,0.204,3 +0.34,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.028,0.16,0.151,0.106,3 +0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0002,0.011,0.187,0.095,0.197,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0062,0.017,0.072,0.089,0.081,2 +0.48,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.003,0.0206,0.09,0.114,0.079,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.029,0.09,0.102,0.088,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.099,0.107,0.092,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.08,0.091,0.088,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.012,0.119,0.098,0.121,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.015,0.089,0.112,0.079,2 +0.56,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0002,0.025,0.138,0.115,0.119,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.031,0.11,0.108,0.102,3 +0.66,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0002,0.018,0.091,0.112,0.081,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0206,0.127,0.119,0.107,3 +0.37,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.027,0.009,0.087,0.084,0.105,2 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.029,0.107,0.101,0.106,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.027,0.109,0.11,0.099,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.017,0.067,0.087,0.077,2 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.02,0.101,0.109,0.092,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.06,0.075,0.08,3 +0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.015,0.157,0.091,0.172,3 +0.26,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0003,0.0206,0.151,0.197,0.076,3 +0.72,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0063,0.015,0.094,0.092,0.102,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.016,0.082,0.108,0.077,2 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.121,0.104,0.115,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.062,0.077,0.081,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.006,0.023,0.068,0.034,1 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.023,0.085,0.081,0.105,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.096,0.082,0.117,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.095,0.095,0.1,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.025,0.122,0.104,0.116,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.121,0.081,0.149,3 +0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.012,0.07,0.104,0.066,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.006,0.11,0.083,0.133,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.064,0.078,0.082,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0009,0.023,0.117,0.095,0.123,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.097,0.095,0.102,3 +0.29,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00189,0.016,0.086,0.078,0.111,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.014,0.129,0.107,0.12,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.015,0.133,0.084,0.159,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.022,0.138,0.097,0.143,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.074,0.082,0.09,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.015,0.107,0.079,0.135,3 +0.75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00025,0.034,0.151,0.113,0.134,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.029,0.101,0.1,0.1,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0023,0.02,0.078,0.104,0.075,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00025,0.008,0.078,0.075,0.104,3 +0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.07,0.086,0.081,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.69,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.16,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.03,0.012,0.03,0.145,0.021,3 +0.72,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.075,0.101,0.074,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0208,0.172,0.101,0.171,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0208,0.08,0.102,0.078,2 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.184,0.086,0.214,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.127,0.092,0.138,3 +0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.013,0.12,0.084,0.143,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.092,0.092,0.101,3 +0.36,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.018,0.124,0.075,0.166,3 +0.23,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.033,0.232,0.134,0.174,3 +0.34,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0004,0.0206,0.109,0.091,0.12,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.026,0.122,0.116,0.105,3 +0.71,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0206,0.108,0.104,0.104,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.067,0.093,0.072,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.088,0.084,0.106,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.11,0.096,0.114,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.016,0.086,0.093,0.092,3 +0.15,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0.084,0.139,0.06,1 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0.0004,0.024,0.103,0.091,0.114,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.114,0.085,0.134,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.016,0.09,0.097,0.093,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.008,0.08,0.077,0.104,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.004,0.098,0.073,0.133,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.095,0.095,0.101,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.019,0.076,0.088,0.086,3 +0.5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.018,0.109,0.077,0.141,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.105,0.092,0.114,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0002,0.035,0.172,0.099,0.173,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.02,0.118,0.092,0.129,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.016,0.128,0.099,0.129,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0208,0.095,0.089,0.107,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0005,0.022,0.089,0.104,0.084,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.117,0.098,0.114,3 +0.59,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0003,0.024,0.086,0.09,0.096,3 +0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0206,0.166,0.159,0.104,3 +0.34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,5e-05,0.0419,0.213,0.194,0.11,3 +0.27,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.025,0.09,0.104,0.085,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.169,0.121,0.14,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.031,0.206,0.159,0.129,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0.002,0.003,0.102,0.003,1 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.087,0.091,0.095,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.037,0.152,0.093,0.164,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.013,0.101,0.099,0.10181,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.022,0.117,0.086,0.136,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.142,0.1,0.142,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.103,0.097,0.107,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.041,0.139,0.165,0.084,2 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.025,0.131,0.091,0.144,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.029,0.116,0.116,0.099,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.101,0.09,0.112,3 +0.66,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.018,0.133,0.102,0.13,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.029,0.1,0.102,0.098,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.03,0.09,0.096,0.094,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.09,0.099,0.091,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.156,0.123,0.126,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.087,0.079,0.109,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.106,0.128,0.084,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.086,0.093,0.092,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0.00025,0.039,0.139,0.127,0.11,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.026,0.089,0.098,0.091,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.135,0.086,0.157,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.026,0.132,0.103,0.128,3 +0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.02,0.083,0.114,0.072,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.134,0.084,0.16,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.103,0.091,0.113,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.102,0.103,0.093,3 +0.6,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.04,0.068,0.1,0.067,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.018,0.089,0.089,0.1,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.12,0.098,0.122,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.02,0.114,0.09,0.128,3 +0.85,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.011,0.132,0.085,0.154,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.118,0.088,0.135,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00859,0.037,0.131,0.165,0.079,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0208,0.093,0.09,0.104,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.02,0.091,0.078,0.117,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.103,0.104,0.098,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.016,0.107,0.104,0.102,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.091,0.103,0.089,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.08,0.085,0.094,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.106,0.102,0.105,3 +0.19,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.023,0.1,0.094,0.106,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.121,0.081,0.148,3 +0.59,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00025,0.024,0.109,0.097,0.113,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.023,0.147,0.109,0.135,3 +0.83,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.009,0.069,0.074,0.093,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0074,0.014,0.108,0.108,0.1,2 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.013,0.083,0.088,0.095,2 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.022,0.103,0.095,0.109,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0208,0.11,0.104,0.106,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.006,0.139,0.086,0.161,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.023,0.139,0.104,0.131,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.135,0.066,0.206,3 +0.28,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.019,0.075,0.112,0.067,3 +0.21,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.028,0.143,0.125,0.114,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.159,0.104,0.153,3 +0.36,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0206,0.101,0.086,0.117,3 +0.26,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.0012,0.04,0.168,0.157,0.106,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.023,0.106,0.125,0.085,2 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.18,0.13,0.139,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.087,0.087,0.1,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.023,0.084,0.092,0.092,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.097,0.099,0.098,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.025,0.125,0.122,0.102,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.017,0.132,0.093,0.141,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.034,0.091,0.097,0.094,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.1,0.086,0.116,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.022,0.124,0.081,0.152,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.029,0.099,0.114,0.088,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.015,0.146,0.116,0.124,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.137,0.116,0.116,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.017,0.095,0.079,0.121,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0038,0.022,0.076,0.13,0.058,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.016,0.066,0.1,0.065,2 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.134,0.103,0.131,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.077,0.08,0.096,3 +0.55,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.052,0.095,0.055,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.045,0.097,0.099,0.09778,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0206,0.116,0.11,0.105,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0062,0.0174,0.086,0.09,0.095,2 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.093,0.108,0.087,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.018,0.084,0.098,0.086,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.015,0.1,0.12,0.083,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.107,0.095,0.113,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.159,0.107,0.149,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.026,0.092,0.089,0.103,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.119,0.086,0.138,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.091,0.099,0.092,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.01,0.092,0.056,0.164,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.023,0.086,0.108,0.08,3 +0.51,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.001,0.022,0.069,0.104,0.066,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0005,0.106,0.114,0.093,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00959,0.019,0.079,0.1,0.08,2 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.025,0.098,0.104,0.092,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.028,0.141,0.111,0.127,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.032,0.187,0.174,0.107,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.033,0.132,0.121,0.11,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.03,0.125,0.074,0.169,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.009,0.073,0.099,0.07358,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.126,0.013,0.039,0.108,0.037,1 +0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.024,0.133,0.115,0.116,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.093,0.084,0.111,3 +0.8,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.018,0.111,0.097,0.114,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.048,0.104,0.046,3 +0.56,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0002,0.0208,0.136,0.099,0.13709,3 +0.71,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0002,0.045,0.125,0.082,0.152,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.103,0.104,0.098,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.094,0.084,0.111,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.109,0.101,0.108,3 +0.59,0,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0002,0.043,0.14,0.168,0.083,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0206,0.088,0.082,0.107,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.027,0.087,0.107,0.081,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.099,0.104,0.095,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.104,0.111,0.094,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.025,0.091,0.116,0.078,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.01,0.046,0.066,0.07,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.012,0.097,0.09,0.107,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.014,0.08,0.088,0.091,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.028,0.087,0.1,0.087,3 +0.57,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.025,0.099,0.112,0.089,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.025,0.104,0.12,0.086,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0469,0.172,0.183,0.094,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.083,0.089,0.093,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.003,0.073,0.078,0.094,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.029,0.128,0.112,0.114,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.025,0.084,0.104,0.079,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.015,0.063,0.068,0.092,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.07,0.085,0.082,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.091,0.093,0.098,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.007,0.11,0.093,0.118,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.008,0.044,0.084,0.052,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.101,0.116,0.086,3 +0.6,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.105,0.109,0.097,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.09,0.1,0.09,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.032,0.123,0.129,0.096,3 +0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0002,0.022,0.106,0.075,0.141,3 +0.23,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.0206,0.078,0.107,0.073,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.098,0.072,0.136,3 +0.21,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.037,0.162,0.147,0.11,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.024,0.086,0.101,0.085,3 +0.11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.191,0.123,0.156,3 +0.36,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.187,0.169,0.111,3 +0.32,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0041,0.0206,0.117,0.151,0.078,3 +0.32,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.017,0.085,0.084,0.101,3 +0.57,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0002,0.02,0.091,0.116,0.077,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.023,0.07,0.099,0.071,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.023,0.092,0.104,0.088,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.028,0.146,0.11,0.133,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0206,0.134,0.103,0.13,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.022,0.105,0.109,0.096,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.143,0.104,0.134,3 +0.87,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0002,0.034,0.164,0.082,0.2,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.015,0.095,0.09,0.106,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.024,0.099,0.121,0.082,3 +0.61,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0037,0.024,0.077,0.124,0.062,3 +0.1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.04,0.09,0.111,0.081,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0009,0.028,0.126,0.129,0.098,3 +0.11,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.0208,0.116,0.104,0.109,3 +0.34,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0.0002,0.05,0.223,0.169,0.131,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.024,0.126,0.092,0.136,3 +0.52,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.116,0.094,0.123,3 +0.72,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00189,0.028,0.12,0.116,0.102,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.036,0.176,0.143,0.123,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.086,0.098,0.088,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.013,0.077,0.065,0.118,3 +0.52,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0005,0.016,0.08,0.082,0.098,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.092,0.088,0.105,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.023,0.112,0.101,0.111,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.077,0.091,0.084,3 +0.63,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0008,0.019,0.098,0.089,0.111,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.015,0.092,0.108,0.085,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.078,0.082,0.096,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.003,0.014,0.103,0.01347,1 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.117,0.099,0.11794,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0.002,0.0058,0.103,0.00558,1 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.112,0.101,0.111,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.111,0.097,0.114,3 +0.25,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.034,0.101,0.099,0.10181,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.024,0.102,0.077,0.134,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.011,0.046,0.099,0.104,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.099,0.08,0.124,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.014,0.086,0.075,0.114,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.102,0.1,0.102,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.022,0.075,0.09,0.084,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.062,0.075,0.083,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.102,0.096,0.106,3 +0.7,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0006,0.026,0.144,0.12,0.12,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.018,0.102,0.082,0.124,3 +0.49,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.081,0.114,0.071,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0097,0.005,0.037,0.072,0.051,1 +0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0006,0.018,0.112,0.104,0.106,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0206,0.104,0.09,0.116,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.28,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.028,0.1,0.099,0.1008,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.135,0.11,0.123,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.11118,0.099,0.11207,3 +0.76,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0008,0.011,0.094,0.093,0.101,3 +0.64,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.014,0.117,0.097,0.121,3 +0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.117,0.092,0.126,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.015,0.114,0.099,0.115,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.124,0.116,0.106,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.008,0.103,0.073,0.141,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.014,0.079,0.077,0.103,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.015,0.088,0.087,0.101,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.022,0.081,0.09,0.09,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.015,0.085,0.073,0.116,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.088,0.084,0.105,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.024,0.1,0.1,0.1,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.027,0.094,0.114,0.082,3 +0.21,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0.00025,0.013,0.054,0.107,0.051,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.081,0.094,0.086,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.092,0.091,0.101,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.0419,0.164,0.155,0.106,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.093,0.101,0.091,3 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0006,0.01,0.096,0.093,0.104,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.012,0.113,0.101,0.111,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.018,0.114,0.092,0.124,3 +0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.036,0.112,0.116,0.096,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.03,0.119,0.103,0.115,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.022,0.12,0.085,0.141,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.028,0.082,0.089,0.093,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.027,0.107,0.086,0.125,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.017,0.103,0.096,0.107,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.019,0.099,0.072,0.139,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.031,0.16,0.09,0.177,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.025,0.095,0.1,0.095,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.045,0.161,0.165,0.097,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.024,0.08,0.098,0.081,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.106,0.087,0.121,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.072,0.069,0.104,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.024,0.09,0.092,0.098,3 +0.73,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.018,0.198,0.1,0.198,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.017,0.072,0.107,0.068,2 +0.23,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0009,0.029,0.136,0.138,0.099,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.027,0.101,0.096,0.105,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.019,0.165,0.095,0.174,3 +0.52,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.035,0.0208,0.077,0.11,0.07,2 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.029,0.125,0.096,0.13,3 +0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.0206,0.161,0.107,0.151,3 +0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.017,0.113,0.094,0.12,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.076,0.12,0.104,0.116,3 +0.76,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0066,0.01,0.091,0.104,0.088,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.037,0.142,0.113,0.126,3 +0.52,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.027,0.133,0.104,0.127,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.009,0.092,0.071,0.129,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.098,0.097,0.101,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.003,0.079,0.08,0.098,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.167,0.143,0.117,3 +0.36,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,4e-05,0.0206,0.149,0.165,0.09,3 +0.74,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0014,0.0206,0.109,0.096,0.114,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0206,0.124,0.096,0.129,3 +0.51,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.077,0.077,0.099,3 +0.84,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.213,0.099,0.216,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.016,0.125,0.102,0.123,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00025,0.023,0.099,0.095,0.104,3 +0.55,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00859,0.003,0.073,0.076,0.096,2 +0.41,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.15,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.014,0.103,0.085,0.12,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.025,0.123,0.115,0.107,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.012,0.103,0.079,0.131,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.06,0.065,0.092,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.124,0.108,0.115,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.136,0.092,0.149,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.097,0.088,0.11,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.34,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4e-05,0.029,0.144,0.158,0.091,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.003,0.0095,0.103,0.00914,1 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.02,0.139,0.102,0.137,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.026,0.086,0.088,0.098,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.022,0.098,0.129,0.076,2 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.006,0.016,0.099,0.095,0.104,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.097,0.104,0.094,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.031,0.136,0.107,0.127,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.019,0.175,0.099,0.17641,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0208,0.094,0.095,0.099,3 +0.7,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00208,0.017,0.131,0.1,0.13,3 +0.7,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0013,0.018,0.094,0.086,0.11,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.009,0.084,0.087,0.096,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.011,0.089,0.075,0.118,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.003,0.046,0.058,0.079,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.119,0.092,0.129,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.016,0.097,0.078,0.125,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.01,0.057,0.089,0.064,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.029,0.096,0.103,0.093,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,2e-05,0.015,0.077,0.094,0.082,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.023,0.102,0.099,0.10282,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.117,0.1,0.118,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0208,0.123,0.091,0.135,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.022,0.076,0.101,0.075,2 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.022,0.083,0.103,0.081,2 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.079,0.087,0.091,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.017,0.104,0.076,0.137,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.028,0.131,0.095,0.138,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0208,0.08,0.089,0.091,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0206,0.118,0.094,0.126,3 +0.5,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0.04,0.022,0.075,0.101,0.074,2 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00023,0.034,0.183,0.098,0.186,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.024,0.096,0.098,0.099,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.141,0.133,0.106,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.102,0.094,0.109,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0206,0.149,0.104,0.143,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.108,0.103,0.105,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.013,0.091,0.087,0.104,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.136,0.097,0.14,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.032,0.129,0.077,0.168,3 +0.17,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.028,0.02,0.086,0.099,0.087,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.02,0.098,0.088,0.112,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.111,0.1,0.111,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.097,0.079,0.122,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.092,0.095,0.097,3 +0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.015,0.135,0.104,0.127,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.023,0.088,0.091,0.097,2 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0092,0.025,0.106,0.113,0.094,2 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.141,0.109,0.129,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.17,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.08,0.072,0.11,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.113,0.095,0.119,3 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0206,0.103,0.112,0.093,3 +0.32,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.037,0.139,0.134,0.104,3 +0.43,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00095,0.019,0.101,0.081,0.125,3 +0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00099,0.017,0.114,0.096,0.119,3 +0.62,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.013,0.011,0.087,0.081,0.107,3 +0.62,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0065,0.018,0.097,0.129,0.076,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.011,0.069,0.064,0.107,3 +0.55,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.095,0.104,0.09,3 +0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.023,0.098,0.103,0.095,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.011,0.095,0.097,0.098,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.014,0.098,0.097,0.11,3 +0.08,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.031,0.026,0.046,0.1,0.046,1 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.073,0.077,0.095,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00093,0.028,0.155,0.101,0.153,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0.01,0.032,0.116,0.028,1 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.016,0.105,0.08,0.131,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.022,0.092,0.096,0.096,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.019,0.113,0.103,0.11,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0208,0.083,0.119,0.069,3 +0.58,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.033,0.129,0.123,0.105,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0208,0.159,0.113,0.14,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.018,0.114,0.098,0.12,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.017,0.14,0.096,0.147,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.013,0.092,0.094,0.098,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.029,0.118,0.142,0.083,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.022,0.099,0.116,0.085,2 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.028,0.141,0.099,0.142,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0.004,0.0058,0.08,0.007,1 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.098,0.083,0.119,3 +0.19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.019,0.104,0.11,0.094,3 +0.43,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.16,0.103,0.156,3 +0.76,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00065,0.015,0.111,0.096,0.116,3 +0.54,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.025,0.128,0.112,0.114,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.017,0.146,0.122,0.119,2 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.028,0.225,0.168,0.134,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.02,0.035,0.099,0.03528,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.023,0.181,0.111,0.164,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.019,0.153,0.104,0.147,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.025,0.167,0.119,0.14,3 +0.22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.151,0.104,0.144,3 +0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.002,0.023,0.102,0.116,0.088,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.104,0.111,0.093,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.109,0.093,0.117,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.161,0.09,0.18,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.02,0.101,0.081,0.124,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.03,0.068,0.085,0.08,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.015,0.093,0.087,0.107,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.024,0.127,0.084,0.152,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.018,0.095,0.082,0.116,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0206,0.115,0.12,0.096,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.113,0.098,0.116,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.018,0.098,0.087,0.112,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.015,0.078,0.089,0.088,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.017,0.101,0.093,0.109,3 +0.46,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0017,0.0206,0.139,0.11,0.127,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00094,0.02,0.102,0.086,0.119,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.025,0.149,0.109,0.137,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00071,0.043,0.129,0.162,0.079,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.06,0.25,0.08,0.312,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.017,0.16,0.111,0.149,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.015,0.11,0.088,0.125,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.068,0.099,0.06854,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.088,0.099,0.0887,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.098,0.099,0.09879,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.121,0.113,0.107,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0037,0.023,0.1,0.111,0.09,3 +0.73,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.008,0.061,0.049,0.124,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00052,0.014,0.129,0.096,0.134,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0.004,0.012,0.126,0.01,1 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045,0.014,0.039,0.116,0.033,1 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.034,0.136,0.073,0.185,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.112,0.097,0.116,3 +0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.043,0.25,0.101,0.247,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.173,0.1,0.173,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.094,0.096,0.098,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0.009,0.036,0.09,0.04,1 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.015,0.096,0.08,0.121,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00042,0.019,0.109,0.077,0.138,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.019,0.092,0.087,0.105,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.102,0.095,0.108,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.069,0.074,0.093,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.01,0.12,0.056,0.213,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.143,0.087,0.164,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00085,0.023,0.141,0.114,0.125,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.023,0.1,0.111,0.09,3 +0.81,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0019,0.015,0.071,0.078,0.091,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0012,0.0206,0.115,0.097,0.114,3 +0.73,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0039,0.009,0.062,0.054,0.115,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.096,0.095,0.101,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.141,0.115,0.123,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.02,0.067,0.073,0.092,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.02,0.093,0.103,0.09,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.022,0.099,0.104,0.096,3 +0.67,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00042,0.014,0.14,0.098,0.143,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.0206,0.094,0.097,0.097,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.025,0.09159,0.1,0.0915,2 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.073,0.091,0.081,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.101,0.095,0.106,3 +0.25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.078,0.088,0.089,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.181,0.121,0.15,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.103,0.099,0.104,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.023,0.136,0.107,0.127,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.111,0.102,0.108,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.008,0.091,0.086,0.106,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.114,0.093,0.123,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.019,0.108,0.104,0.103,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.106,0.1,0.106,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.024,0.106,0.097,0.109,3 +0.48,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.00077,0.011,0.081,0.086,0.095,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0041,0.04,0.159,0.162,0.098,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.098,0.108,0.09,3 +0.18,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00083,0.029,0.068,0.116,0.058,3 +0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00071,0.031,0.125,0.139,0.09,3 +0.29,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0014,0.034,0.147,0.149,0.099,3 +0.62,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0033,0.02,0.116,0.104,0.11,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.01,0.089,0.091,0.098,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.004,0.073,0.06,0.122,3 +0.73,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.069,0.08,0.086,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.026,0.086,0.091,0.094,3 +0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0206,0.134,0.104,0.128,3 +0.53,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.0206,0.176,0.102,0.171,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.019,0.135,0.102,0.132,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.111,0.095,0.117,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.118,0.104,0.112,3 +0.43,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0065,0.018,0.06,0.089,0.067,2 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.017,0.102,0.076,0.134,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.125,0.104,0.118,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.024,0.094,0.096,0.098,3 +0.63,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0018,0.02,0.152,0.116,0.129,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.118,0.089,0.132,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.11118,0.099,0.11207,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.002,0.087,0.054,0.161,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.032,0.16,0.153,0.105,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.019,0.088,0.08,0.11,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.023,0.125,0.104,0.117,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.027,0.122,0.083,0.147,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0.014,0.014,0.131,0.011,1 +0.53,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.016,0.115,0.09,0.128,3 +0.53,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.024,0.124,0.096,0.129,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.017,0.093,0.098,0.094,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.018,0.16,0.11,0.146,3 +0.61,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.061,0.078,0.081,3 +0.4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.142,0.091,0.156,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.022,0.164,0.101,0.162,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.048,0.032,0.099,0.03225,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.028,0.11,0.099,0.111,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.01,0.082,0.086,0.095,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.034,0.133,0.084,0.159,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.08,0.113,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.055,0.219,0.08,0.274,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.116,0.09,0.129,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0206,0.065,0.073,0.09,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.02,0.095,0.108,0.088,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.017,0.132,0.102,0.13,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.107,0.11,0.098,3 +0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0069,0.0174,0.097,0.087,0.112,2 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.023,0.099,0.098,0.101,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.023,0.122,0.08,0.152,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0208,0.149,0.102,0.147,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.023,0.131,0.115,0.113,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.022,0.074,0.1,0.07392,2 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.143,0.091,0.157,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0006,0.0206,0.076,0.086,0.088,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.105,0.097,0.109,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.019,0.139,0.096,0.145,3 +0.68,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0037,0.006,0.065,0.088,0.074,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.34,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1e-05,0.038,0.205,0.184,0.111,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.019,0.118,0.107,0.11,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.0208,0.116,0.114,0.102,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.022,0.172,0.11,0.157,3 +0.47,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0419,0.214,0.145,0.148,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.029,0.123,0.131,0.094,3 +0.48,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.00042,0.025,0.093,0.114,0.082,3 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.142,0.099,0.143,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.033,0.121,0.108,0.112,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.048,0.022,0.099,0.02217,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.031,0.11,0.104,0.104,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.017,0.14,0.077,0.182,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.016,0.083,0.089,0.093,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.124,0.101,0.122,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.014,0.097,0.087,0.111,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.013,0.101,0.093,0.108,2 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.014,0.107,0.077,0.139,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.011,0.124,0.085,0.145,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.026,0.13,0.113,0.115,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00034,0.0206,0.095,0.099,0.095,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0208,0.098,0.112,0.087,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.031,0.168,0.098,0.171,3 +0.49,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.0206,0.126,0.083,0.152,3 +0.29,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.022,0.087,0.095,0.092,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.013,0.157,0.091,0.172,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.156,0.116,0.134,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0029,0.019,0.09,0.097,0.093,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00077,0.028,0.11,0.091,0.121,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.16,0.109,0.147,3 +0.26,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.025,0.114,0.109,0.104,3 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.107,0.099,0.107,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0208,0.076,0.079,0.096,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.01,0.101,0.08,0.127,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.017,0.09,0.083,0.109,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00025,0.018,0.12,0.085,0.14,3 +0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.022,0.109,0.091,0.119,3 +0.49,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.0206,0.137,0.08,0.17,3 +0.65,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.019,0.088,0.081,0.109,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.02,0.078,0.1,0.07792,2 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.053,0.129,0.099,0.13003,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.017,0.06,0.077,0.078,3 +0.21,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.0024,0.035,0.171,0.149,0.115,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.018,0.131,0.098,0.133,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.142,0.107,0.133,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00078,0.019,0.085,0.11,0.077,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.02,0.109,0.115,0.094,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.012,0.075,0.088,0.085,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.025,0.089,0.097,0.092,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.018,0.072,0.087,0.082,2 +0.82,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.014,0.131,0.108,0.121,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.099,0.079,0.126,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.019,0.078,0.085,0.091,3 +0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.028,0.122,0.113,0.109,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0097,0.011,0.077,0.079,0.097,2 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.114,0.11,0.104,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.067,0.088,0.076,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.028,0.091,0.099,0.09173,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.024,0.11,0.099,0.111,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.023,0.135,0.107,0.126,3 +0.37,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0044,0.026,0.108,0.112,0.096,3 +0.74,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0033,0.012,0.091,0.092,0.099,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.0208,0.079,0.096,0.083,2 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.09,0.099,0.091,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.187,0.089,0.21,3 +0.41,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.025,0.022,0.099,0.02217,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.027,0.099,0.088,0.113,3 +0.37,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00064,0.0208,0.092,0.099,0.093,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.013,0.146,0.089,0.165,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.119,0.095,0.125,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0208,0.084,0.086,0.098,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.022,0.088,0.09,0.098,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.022,0.128,0.075,0.172,3 +0.25,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0007,0.0206,0.183,0.141,0.13,3 +0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.103,0.095,0.109,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.0206,0.172,0.115,0.15,3 +0.65,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0.0013,0.0208,0.162,0.119,0.137,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.0206,0.098,0.103,0.095,3 +0.71,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00016,0.024,0.165,0.135,0.123,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.025,0.087,0.111,0.078,3 +0.78,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00064,0.017,0.113,0.099,0.115,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.023,0.093,0.082,0.113,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.0208,0.154,0.099,0.156,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.02,0.141,0.104,0.134,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.121,0.096,0.127,3 +0.7,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.00015,0.015,0.085,0.091,0.094,3 +0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.124,0.131,0.095,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.023,0.133,0.11,0.121,3 +0.53,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.078,0.0206,0.078,0.116,0.067,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.023,0.15,0.125,0.12,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0208,0.084,0.087,0.096,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.142,0.104,0.135,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.106,0.091,0.117,3 +0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00082,0.015,0.083,0.076,0.117,3 +0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0032,0.014,0.076,0.086,0.088,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0075,0.0208,0.089,0.114,0.078,2 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.158,0.087,0.183,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00039,0.0206,0.104,0.097,0.107,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.006,0.015,0.089,0.017,1 +0.68,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00096,0.0206,0.104,0.1,0.104,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.147,0.111,0.132,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.008,0.051,0.088,0.058,1 +0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0064,0.024,0.141,0.126,0.112,2 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.012,0.103,0.088,0.118,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.095,0.085,0.111,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.111,0.092,0.121,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.12,0.102,0.118,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.098,0.084,0.117,3 +0.63,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.014,0.09,0.091,0.1,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.094,0.076,0.124,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.088,0.086,0.102,3 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.022,0.12,0.096,0.126,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.144,0.094,0.153,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.014,0.091,0.097,0.094,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.016,0.1,0.088,0.113,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.093,0.097,0.096,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.114,0.111,0.103,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.018,0.128,0.114,0.112,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.022,0.078,0.077,0.102,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.103,0.089,0.115,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.032,0.084,0.084,0.1,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.025,0.097,0.091,0.107,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.132,0.113,0.116,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.022,0.1,0.098,0.102,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.025,0.105,0.101,0.104,3 +0.28,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.0024,0.0208,0.125,0.099,0.126,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.1,0.081,0.123,3 +0.56,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.018,0.104,0.099,0.10483,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.011,0.122,0.113,0.108,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.023,0.135,0.097,0.14,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.023,0.132,0.094,0.14,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00025,0.029,0.136,0.144,0.094,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0.014,0.042,0.104,0.039,1 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.11118,0.099,0.11207,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.012,0.087,0.072,0.121,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.032,0.108,0.107,0.1,3 +0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.015,0.083,0.086,0.097,3 +0.54,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00046,0.03,0.116,0.104,0.11,3 +0.72,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0054,0.018,0.087,0.091,0.095,3 +0.2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.013,0.077,0.099,0.07762,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00809,0.025,0.09,0.095,0.095,2 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.096,0.078,0.124,3 +0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.03,0.174,0.135,0.129,3 +0.23,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.04,0.204,0.084,0.242,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.027,0.113,0.11,0.102,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.024,0.084,0.124,0.068,2 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.034,0.091,0.11,0.083,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.02,0.125,0.101,0.124,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.009,0.082,0.062,0.133,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.03,0.117,0.097,0.12,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0174,0.101,0.108,0.094,2 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.022,0.178,0.126,0.142,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.151,0.104,0.144,3 +0.24,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00078,0.025,0.148,0.123,0.12,3 +0.7,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.0206,0.127,0.104,0.121,3 +0.83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00829,0.0208,0.104,0.104,0.097,2 +0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.472,0.017,0.034,0.116,0.029,1 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.007,0.054,0.085,0.063,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.088,0.094,0.094,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.095,0.1,0.095,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.008,0.093,0.058,0.16,3 +0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00074,0.0206,0.074,0.077,0.097,3 +0.5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.126,0.107,0.117,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.009,0.093,0.097,0.097,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.024,0.123,0.114,0.108,3 +0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.023,0.111,0.104,0.105,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.014,0.089,0.099,0.089,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.0206,0.09,0.081,0.111,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.119,0.099,0.12,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.016,0.082,0.082,0.1,2 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.165,0.089,0.186,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.024,0.122,0.112,0.109,3 +0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00889,0.0174,0.075,0.097,0.077,2 +0.53,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0039,0.0206,0.114,0.116,0.097,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.026,0.125,0.099,0.126,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.103,0.073,0.142,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.016,0.083,0.07,0.118,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.094,0.08,0.119,3 +0.54,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0029,0.025,0.074,0.099,0.075,3 +0.67,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00084,0.033,0.222,0.182,0.122,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.071,0.072,0.099,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.022,0.086,0.109,0.079,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.027,0.084,0.103,0.081,3 +0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.109,0.084,0.13,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0208,0.129,0.108,0.12,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.019,0.14,0.096,0.145,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.105,0.092,0.114,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.012,0.089,0.074,0.121,2 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.027,0.136,0.127,0.107,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.071,0.223,0.1,0.222,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.016,0.075,0.093,0.08,3 +0.67,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.022,0.121,0.102,0.118,3 +0.59,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.004,0.013,0.12,0.094,0.128,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.01,0.097,0.065,0.15,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.019,0.092,0.093,0.098,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.025,0.165,0.09,0.184,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.095,0.09,0.106,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.0206,0.111,0.1,0.112,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.103,0.09,0.114,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.14,0.104,0.132,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.023,0.09,0.081,0.112,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.063,0.066,0.096,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.009,0.087,0.078,0.112,3 +0.45,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.028,0.237,0.116,0.203,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.082,0.088,0.093,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0078,0.02,0.095,0.099,0.096,2 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.026,0.098,0.093,0.105,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.113,0.103,0.11,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00028,0.013,0.138,0.083,0.166,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.02,0.087,0.061,0.143,3 +0.41,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.026,0.151,0.116,0.13,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.076,0.081,0.093,3 +0.54,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.0206,0.12,0.101,0.118,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.026,0.091,0.1,0.0909,2 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.019,0.089,0.085,0.104,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.016,0.09,0.089,0.101,2 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.023,0.083,0.089,0.094,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.024,0.081,0.075,0.109,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.07,0.086,0.081,3 +0.23,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0041,0.019,0.066,0.085,0.077,3 +0.5,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.018,0.113,0.101,0.112,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0206,0.112,0.092,0.121,3 +0.7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0023,0.027,0.095,0.107,0.088,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.231,0.092,0.251,3 +0.62,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0208,0.13,0.099,0.131,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.019,0.115,0.098,0.118,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.086,0.088,0.099,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.113,0.11,0.103,3 +0.47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2e-05,0.019,0.111,0.093,0.119,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0025,0.023,0.09,0.091,0.099,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.063,0.081,0.078,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.028,0.109,0.09,0.121,3 +0.51,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.058,0.0174,0.077,0.111,0.069,2 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.088,0.095,0.092,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.093,0.091,0.102,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.082,0.099,0.08266,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0018,0.018,0.092,0.099,0.09274,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.018,0.124,0.099,0.125,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.023,0.118,0.13,0.091,2 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.025,0.089,0.099,0.089,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.087,0.084,0.103,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.09,0.085,0.106,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.085,0.079,0.107,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.024,0.074,0.116,0.063,3 +0.25,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0011,0.026,0.212,0.175,0.121,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.027,0.099,0.1,0.099,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.102,0.107,0.096,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.015,0.111,0.098,0.114,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.014,0.117,0.102,0.114,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.006,0.082,0.074,0.11,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.23,0.015,0.036,0.134,0.027,1 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.089,0.101,3 +0.02,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.145,0.093,0.155,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.0206,0.073,0.093,0.079,3 +0.84,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.088,0.087,0.1,3 +0.69,1,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.00071,0.0206,0.091,0.094,0.098,3 +0.59,1,1,0,1,0,0,0,1,0,1,0,0,0,0,0,8e-05,0.0206,0.125,0.078,0.161,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.0174,0.095,0.087,0.11,2 +0.62,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.126,0.124,0.101,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.025,0.147,0.113,0.129,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.0208,0.103,0.092,0.112,3 +0.51,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.002,0.0206,0.109,0.091,0.12,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.0206,0.097,0.069,0.141,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.002,0.004,0.101,0.004,1 +0.59,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0097,0.0174,0.081,0.096,0.084,2 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0206,0.098,0.085,0.114,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.02,0.123,0.115,0.107,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.182,0.137,0.133,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.012,0.061,0.087,0.07,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.019,0.109,0.078,0.139,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.105,0.087,0.12,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.138,0.158,0.088,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.015,0.14,0.089,0.157,3 +0.12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.152,0.08,0.19,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.097,0.088,0.11,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0206,0.142,0.093,0.153,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.016,0.182,0.099,0.18346,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.111,0.108,0.102,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.025,0.114,0.107,0.106,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.013,0.156,0.139,0.112,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.017,0.076,0.099,0.07661,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.023,0.103,0.102,0.1,3 +0.68,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0.0026,0.02,0.152,0.141,0.108,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.025,0.113,0.076,0.149,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.019,0.067,0.095,0.072,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.015,0.102,0.096,0.106,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0208,0.127,0.124,0.102,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.013,0.119,0.088,0.135,3 +0.29,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.024,0.0096,0.063,0.12,0.053,1 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.124,0.086,0.144,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.013,0.111,0.092,0.12,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.165,0.139,0.118,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.015,0.085,0.084,0.102,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0208,0.113,0.102,0.111,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.027,0.102,0.094,0.109,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.02,0.124,0.096,0.13,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.025,0.09,0.103,0.088,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.024,0.11118,0.099,0.11207,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.022,0.11118,0.099,0.11207,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.015,0.11118,0.099,0.11207,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.015,0.11118,0.099,0.11207,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.017,0.074,0.107,0.069,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.028,0.099,0.083,0.119,3 +0.79,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.02,0.107,0.104,0.104,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01209,0.034,0.094,0.092,0.102,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.143,0.09,0.159,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.068,0.087,0.078,3 +0.2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.106,0.091,0.116,3 +0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.212,0.116,0.181,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.105,0.083,0.125,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.013,0.07,0.093,0.075,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.018,0.102,0.092,0.111,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.104,0.104,0.098,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.012,0.109,0.078,0.14,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.016,0.107,0.115,0.093,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.143,0.131,0.109,3 +0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0005,0.024,0.1,0.107,0.093,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.0208,0.073,0.074,0.098,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.02,0.084,0.099,0.08467,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.024,0.106,0.1,0.106,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.022,0.083,0.099,0.08366,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.019,0.083,0.108,0.077,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.034,0.165,0.152,0.108,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.014,0.11118,0.099,0.11207,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.141,0.116,0.12,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.017,0.081,0.099,0.08165,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.019,0.123,0.116,0.106,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.015,0.083,0.078,0.106,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.025,0.157,0.107,0.147,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.0206,0.131,0.091,0.144,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.017,0.075,0.081,0.093,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11,0.096,0.114,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0208,0.107,0.099,0.108,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.007,0.014,0.111,0.013,1 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.002,0.002,0.084,0.002,1 +0.52,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00093,0.013,0.086,0.064,0.134,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.019,0.061,0.082,0.074,2 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.02,0.092,0.095,0.097,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.019,0.083,0.09,0.092,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.018,0.142,0.099,0.144,3 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.0208,0.087,0.095,0.091,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.022,0.079,0.08,0.099,3 +0.71,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.018,0.143,0.087,0.164,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.012,0.095,0.08,0.119,3 +0.57,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0014,0.025,0.101,0.103,0.096,3 +0.23,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.00208,0.031,0.116,0.12,0.096,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.169,0.099,0.17036,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0208,0.087,0.075,0.115,3 +0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.016,0.098,0.075,0.131,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.018,0.167,0.088,0.189,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.112,0.096,0.117,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.095,0.078,0.122,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.004,0.052,0.075,0.069,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0028,0.024,0.111,0.08,0.139,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.02,0.117,0.08,0.145,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.023,0.111,0.099,0.112,2 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.019,0.09,0.098,0.092,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.002,0.099,0.072,0.138,3 +0.33,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0018,0.024,0.12,0.099,0.121,3 +0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.029,0.164,0.138,0.119,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.054,0.148,0.148,0.1,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.41,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.098,0.083,0.118,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.023,0.121,0.101,0.12,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.138,0.09,0.154,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.005,0.095,0.083,0.114,2 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.14,0.11,0.127,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.019,0.108,0.093,0.116,3 +0.26,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0092,0.016,0.104,0.112,0.093,2 +0.79,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.0206,0.11118,0.099,0.11207,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,6e-05,0.0469,0.157,0.168,0.094,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.029,0.092,0.093,0.1,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.085,0.244,0.098,0.249,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.029,0.135,0.081,0.167,3 +0.27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.00189,0.04,0.187,0.188,0.1,3 +0.76,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0025,0.0206,0.118,0.1,0.118,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.022,0.122,0.11,0.111,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.022,0.099,0.104,0.096,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.02,0.141,0.113,0.125,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.112,0.09,0.124,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.11118,0.099,0.11207,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.121,0.109,0.111,3 +0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.113,0.083,0.136,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.015,0.093,0.071,0.132,3 +0.76,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.024,0.118,0.091,0.13,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.096,0.086,0.112,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.121,0.107,0.114,3 +0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0174,0.137,0.103,0.133,2 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.137,0.104,0.129,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.134,0.116,0.114,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.113,0.099,0.114,3 +0.56,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0011,0.022,0.103,0.09,0.114,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.027,0.08,0.083,0.097,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.008,0.121,0.095,0.127,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.102,0.097,0.105,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.019,0.138,0.091,0.155,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0036,0.013,0.153,0.1,0.152,3 +0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.019,0.0174,0.093,0.12,0.077,2 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.018,0.099,0.099,0.09979,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.017,0.083,0.097,0.086,3 +0.55,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.019,0.109,0.104,0.104,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0022,0.017,0.115,0.098,0.118,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.012,0.044,0.087,0.051,1 +0.42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0072,0.013,0.093,0.09,0.104,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.139,0.104,0.134,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00041,0.008,0.105,0.082,0.127,3 +0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00101,0.018,0.109,0.1,0.109,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.009,0.096,0.075,0.127,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.049,0.192,0.109,0.176,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.026,0.111,0.1,0.111,3 +0.44,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.014,0.103,0.088,0.118,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.099,0.102,0.097,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.015,0.053,0.076,0.07,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.0206,0.124,0.102,0.122,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.023,0.152,0.096,0.158,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108,0.004,0.014,0.098,0.014,1 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.032,0.11118,0.099,0.11207,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.162,0.081,0.2,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.155,0.101,0.154,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.128,0.102,0.126,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.12,0.098,0.122,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.018,0.088,0.114,0.076,3 +0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.012,0.097,0.093,0.104,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00089,0.018,0.103,0.098,0.105,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.109,0.091,0.12,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.116,0.104,0.109,3 +0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.134,0.096,0.14,3 +0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.02,0.093,0.084,0.11,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.121,0.129,0.094,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0092,0.018,0.087,0.104,0.084,2 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.121,0.123,0.098,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.139,0.115,0.121,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.076,0.103,0.073,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.188,0.013,0.063,0.119,0.053,1 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.018,0.087,0.089,0.098,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.138,0.083,0.166,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.016,0.075,0.076,0.099,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.07,0.077,0.091,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.02,0.109,0.085,0.129,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.017,0.121,0.112,0.108,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.023,0.101,0.094,0.107,3 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.09,0.098,0.092,3 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.024,0.11,0.092,0.119,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.0206,0.125,0.084,0.149,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.084,0.091,0.092,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.07,0.058,0.122,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.02,0.09,0.092,0.098,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0144,0.011,0.051,0.068,0.075,2 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.094,0.1,0.094,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.016,0.072,0.085,0.085,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.109,0.095,0.116,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.02,0.113,0.103,0.11,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.1,0.079,0.127,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.019,0.092,0.104,0.088,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.076,0.094,0.081,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.11,0.112,0.098,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.008,0.0174,0.066,0.066,0.1,2 +0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.016,0.064,0.097,0.066,2 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.025,0.161,0.083,0.195,3 +0.6,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0305,0.01,0.032,0.063,0.051,1 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0208,0.11,0.095,0.116,3 +0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.038,0.131,0.104,0.125,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.106,0.092,0.115,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0206,0.103,0.116,0.088,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.097,0.089,0.109,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0208,0.082,0.076,0.108,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.091,0.102,0.09,3 +0.61,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.014,0.11,0.099,0.11088,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0206,0.09,0.092,0.098,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.088,0.104,0.084,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.023,0.068,0.094,0.072,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.118,0.102,0.115,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.127,0.101,0.126,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.14,0.163,0.086,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.123,0.091,0.135,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046,0.01,0.048,0.098,0.049,1 +0.6,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0027,0.0206,0.088,0.107,0.082,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.102,0.099,0.10282,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.015,0.12,0.094,0.127,3 +0.73,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0022,0.025,0.11,0.128,0.085,3 +0.61,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0003,0.02,0.093,0.099,0.093,3 +0.47,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.11,0.102,0.108,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.028,0.096,0.094,0.103,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.0206,0.176,0.111,0.158,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.118,0.111,0.107,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.028,0.11,0.11,0.1,3 +0.31,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.027,0.163,0.094,0.172,3 +0.25,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00208,0.0206,0.101,0.1,0.101,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.139,0.107,0.129,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.0096,0.035,0.083,0.042,1 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.026,0.143,0.107,0.134,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.14,0.141,0.099,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.02,0.083,0.131,0.063,3 +0.87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.012,0.103,0.087,0.118,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.016,0.071,0.104,0.067,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.014,0.091,0.085,0.108,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.035,0.166,0.135,0.123,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.025,0.08,0.088,0.091,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0007,0.014,0.11,0.088,0.124,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.099,0.104,0.091,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.0206,0.114,0.098,0.117,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.015,0.075,0.09,0.083,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.012,0.067,0.096,0.069,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.1059,0.226,0.065,0.349,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.468,0.007,0.021,0.11,0.019,1 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.028,0.144,0.116,0.123,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.024,0.134,0.092,0.145,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0022,0.023,0.099,0.079,0.125,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.027,0.15,0.122,0.124,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.025,0.134,0.112,0.12,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.103,0.092,0.112,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0206,0.093,0.084,0.11,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.15,0.099,0.151,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.017,0.126,0.124,0.101,3 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.124,0.089,0.139,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.096,0.076,0.127,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.119,0.09,0.131,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.097,0.087,0.111,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.018,0.062,0.085,0.073,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.023,0.12,0.096,0.126,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0114,0.0174,0.099,0.097,0.102,2 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0206,0.077,0.074,0.104,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.026,0.105,0.102,0.103,3 +0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.073,0.107,0.069,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.131,0.116,0.111,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.029,0.198,0.091,0.217,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.028,0.143,0.13,0.11,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.016,0.103,0.113,0.091,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103,0.013,0.031,0.103,0.02983,1 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.079,0.095,0.083,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0206,0.092,0.087,0.106,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00051,0.0206,0.118,0.115,0.103,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00014,0.034,0.105,0.099,0.10584,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.008,0.099,0.097,0.102,2 +0.04,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.032,0.246,0.104,0.232,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.107,0.094,0.114,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.022,0.101,0.103,0.097,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0096,0.075,0.135,0.055,1 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.017,0.087,0.087,0.1,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.0206,0.133,0.084,0.158,3 +0.72,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.113,0.085,0.132,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.107,0.085,0.126,3 +0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.117,0.074,0.157,3 +0.75,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00083,0.019,0.116,0.099,0.117,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.111,0.077,0.145,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.092,0.098,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.0206,0.111,0.112,0.099,3 +0.75,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00031,0.022,0.085,0.119,0.071,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.018,0.104,0.089,0.117,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.131,0.095,0.138,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.079,0.078,0.101,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.0206,0.075,0.06,0.124,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.027,0.113,0.104,0.107,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.11118,0.099,0.11207,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.163,0.095,0.172,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0092,0.022,0.072,0.108,0.066,2 +0.46,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.053,0.233,0.092,0.253,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.117,0.108,0.108,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.128,0.111,0.115,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0.012,0.065,0.092,0.071,2 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.026,0.094,0.094,0.1,3 +0.16,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0049,0.018,0.143,0.097,0.148,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.0208,0.092,0.104,0.088,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0174,0.087,0.092,0.094,2 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.0206,0.083,0.104,0.08,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.1,0.104,0.093,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.005,0.085,0.077,0.11,3 +0.68,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0067,0.014,0.101,0.1,0.10089,2 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.098,0.082,0.119,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0008,0.022,0.097,0.11,0.088,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.009,0.061,0.099,0.061,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.013,0.107,0.112,0.095,3 +0.68,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0026,0.018,0.104,0.11,0.095,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.0206,0.118,0.083,0.142,3 +0.39,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0015,0.028,0.099,0.095,0.104,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.106,0.14,0.076,3 +0.42,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4e-05,0.019,0.117,0.077,0.153,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0206,0.11,0.102,0.108,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.093,0.094,0.098,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00029,0.015,0.119,0.09,0.132,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.088,0.081,0.109,3 +0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.041,0.191,0.1,0.191,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.016,0.1,0.101,0.099,3 +0.26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.083,0.07,0.117,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.0206,0.135,0.082,0.166,3 +0.37,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.025,0.0174,0.071,0.104,0.068,2 +0.29,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0051,0.0206,0.072,0.08,0.09,3 +0.91,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.112,0.099,0.113,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.011,0.062,0.07,0.089,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.087,0.092,0.095,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.017,0.085,0.099,0.08568,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.093,0.084,0.111,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.014,0.09,0.097,0.092,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.014,0.084,0.096,0.088,3 +0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00036,0.024,0.128,0.101,0.127,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.116,0.107,0.108,3 +0.5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.003,0.0206,0.106,0.107,0.099,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.018,0.103,0.084,0.124,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0001,0.018,0.093,0.099,0.09375,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,3 +0.08,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.077,0.085,0.091,3 +0.42,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.0206,0.141,0.108,0.131,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.113,0.082,0.138,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.128,0.113,0.114,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.056,0.112,0.05,3 +0.41,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00039,0.019,0.12,0.103,0.117,3 +0.71,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00939,0.014,0.077,0.089,0.087,2 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.127,0.092,0.138,3 +0.54,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.016,0.015,0.06,0.078,0.077,2 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0033,0.007,0.076,0.072,0.105,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0001,0.0206,0.113,0.091,0.125,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0015,0.023,0.116,0.108,0.107,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.015,0.106,0.091,0.117,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.112,0.095,0.117,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.017,0.092,0.099,0.09274,3 +0.27,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0206,0.07,0.048,0.146,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0206,0.082,0.081,0.101,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.109,0.104,0.105,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0206,0.092,0.093,0.099,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0206,0.088,0.072,0.122,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.014,0.111,0.078,0.142,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.007,0.041,0.06,0.069,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.11118,0.072,0.118,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.105,0.116,0.091,3 +0.65,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.0174,0.099,0.114,0.087,2 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.107,0.092,0.116,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.088,0.093,0.095,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.031,0.112,0.104,0.106,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.089,0.086,0.104,3 +0.27,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00189,0.019,0.11118,0.099,0.11207,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.124,0.099,0.125,3 +0.31,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.12,0.122,0.099,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.0024,0.032,0.137,0.171,0.08,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.178,0.1,0.178,3 +0.42,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.079,0.088,0.09,3 +0.21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.17,0.101,0.167,3 +0.39,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.019,0.098,0.088,0.11,3 +0.7,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.015,0.16,0.094,0.171,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.01,0.145,0.099,0.14616,3 +0.83,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.118,0.097,0.121,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.124,0.115,0.108,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.018,0.109,0.104,0.104,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00024,0.024,0.119,0.11,0.109,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.009,0.082,0.11,0.075,3 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.122,0.125,0.098,3 +0.69,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.0206,0.093,0.11,0.085,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.135,0.096,0.141,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.0206,0.116,0.078,0.149,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.085,0.065,0.131,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.079,0.095,0.083,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.138,0.103,0.134,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.151,0.094,0.161,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0065,0.0206,0.045,0.047,0.096,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.09,0.107,0.084,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.0206,0.096,0.088,0.109,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,3 +0.28,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.0206,0.133,0.099,0.135,3 +0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.093,0.104,0.089,3 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.095,0.093,0.102,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0264,0.023,0.073,0.109,0.067,2 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.019,0.089,0.099,0.08971,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0174,0.071,0.078,0.09,2 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.12,0.129,0.092,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.091,0.081,0.113,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.095,0.086,0.111,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.0174,0.148,0.111,0.134,2 +0.47,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.094,0.097,0.097,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.112,0.098,0.114,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.01,0.103,0.099,0.10383,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.11118,0.099,0.11207,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0005,0.0208,0.138,0.092,0.15,3 +0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00065,0.013,0.136,0.119,0.115,3 +0.8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0053,0.02,0.086,0.102,0.083,3 +0.44,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.021,0.0206,0.076,0.09,0.084,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0208,0.111,0.099,0.112,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.084,0.085,0.099,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.017,0.096,0.089,0.108,2 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.022,0.161,0.104,0.153,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.11,0.073,0.15,3 +0.44,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.0206,0.127,0.103,0.124,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.0206,0.156,0.084,0.187,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.122,0.094,0.122,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.105,0.103,0.101,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.002,0.08,0.08,0.099,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.025,0.103,0.102,0.101,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.026,0.079,0.084,0.093,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.094,0.089,0.106,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0206,0.131,0.05,0.265,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.017,0.071,0.092,0.077,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.066,0.248,0.089,0.28,3 +0.49,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.131,0.083,0.158,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.028,0.107,0.109,0.099,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.12,0.082,0.146,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.024,0.118,0.112,0.106,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.007,0.015,0.108,0.014,1 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.166,0.146,0.115,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.018,0.135,0.1,0.134,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.098,0.099,0.099,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.088,0.104,0.083,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0025,0.02,0.134,0.116,0.115,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.016,0.089,0.096,0.093,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.012,0.077,0.085,0.091,3 +0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00032,0.027,0.096,0.14,0.069,3 +0.36,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,5e-05,0.022,0.162,0.115,0.14,3 +0.47,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.091,0.096,0.094,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.027,0.124,0.12,0.104,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.019,0.094,0.104,0.089,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0045,0.017,0.091,0.109,0.084,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.143,0.102,0.141,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00066,0.023,0.114,0.088,0.129,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.019,0.118,0.09,0.131,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.125,0.111,0.113,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.022,0.198,0.123,0.16,3 +0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.0206,0.126,0.086,0.146,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.025,0.08,0.089,0.09,3 +0.31,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0.00044,0.015,0.075,0.092,0.081,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0066,0.014,0.137,0.112,0.123,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.011,0.102,0.081,0.125,3 +0.32,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,5e-05,0.039,0.289,0.175,0.165,3 +0.22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.118,0.096,0.123,3 +0.42,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.203,0.101,0.2,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.112,0.115,0.097,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.01,0.092,0.099,0.093,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.012,0.0208,0.081,0.109,0.074,2 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0206,0.074,0.087,0.085,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.175,0.104,0.168,3 +0.39,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.024,0.148,0.107,0.138,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.02,0.102,0.093,0.11,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.019,0.112,0.094,0.119,3 +0.52,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.098,0.071,0.138,3 +0.53,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,8e-05,0.0206,0.127,0.09,0.141,3 +0.47,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.012,0.072,0.082,0.088,3 +0.13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.082,0.088,0.093,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.018,0.148,0.119,0.125,3 +0.74,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0054,0.014,0.109,0.083,0.131,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.095,0.098,0.096,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.016,0.126,0.093,0.135,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.101,0.079,0.129,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.007,0.0174,0.112,0.108,0.103,2 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.024,0.157,0.12,0.131,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00036,0.03,0.131,0.104,0.126,3 +0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00082,0.0206,0.125,0.101,0.124,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0206,0.075,0.084,0.089,3 +0.52,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.02,0.102,0.099,0.10282,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.087,0.12,0.073,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.014,0.112,0.086,0.13,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.01,0.06,0.088,0.068,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.019,0.101,0.099,0.102,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.016,0.094,0.092,0.102,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0002,0.019,0.151,0.098,0.154,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.012,0.071,0.111,0.064,1 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.037,0.169,0.114,0.148,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.142,0.12,0.118,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.02,0.087,0.095,0.091,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.113,0.085,0.133,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.236,0.002,0.016,0.094,0.017,1 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.048,0.257,0.12,0.214,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.11118,0.099,0.095,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.043,0.184,0.119,0.155,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.015,0.128,0.1,0.12787,2 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.101,0.109,0.093,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.094,0.1,0.094,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.034,0.129,0.153,0.084,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.063,0.088,0.072,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.006,0.079,0.091,0.087,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.017,0.078,0.09,0.087,2 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.099,0.099,0.1,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.155,0.072,0.216,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.11118,0.099,0.11207,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.0208,0.16,0.121,0.132,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.027,0.12,0.127,0.095,3 +0.55,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00099,0.013,0.093,0.086,0.108,3 +0.12,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.166,0.12,0.138,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.101,0.09,0.113,3 +0.68,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.0206,0.117,0.102,0.115,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0061,0.022,0.136,0.124,0.11,2 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.023,0.16,0.104,0.151,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.005,0.078,0.095,0.082,3 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.166,0.097,0.17,3 +0.34,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.027,0.044,0.273,0.122,0.222,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.015,0.117,0.086,0.136,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0206,0.175,0.115,0.153,3 +0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.015,0.106,0.094,0.113,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.0206,0.171,0.104,0.162,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.097,0.091,0.107,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.012,0.101,0.09,0.112,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.01,0.154,0.103,0.149,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.076,0.083,0.091,3 +0.79,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.024,0.099,0.073,0.135,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.0174,0.144,0.129,0.111,2 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.143,0.007,0.073,0.101,0.072,2 +0.25,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00189,0.022,0.113,0.108,0.105,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00075,0.023,0.119,0.094,0.126,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.027,0.155,0.143,0.109,3 +0.23,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0.0079,0.022,0.104,0.107,0.097,2 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.122,0.11,0.111,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.131,0.095,0.137,3 +0.47,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0022,0.02,0.108,0.108,0.1,3 +0.44,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.136,0.094,0.145,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0208,0.086,0.099,0.086,3 +0.31,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0016,0.0206,0.111,0.1,0.111,3 +0.75,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.15,0.088,0.171,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0208,0.098,0.09,0.109,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.023,0.139,0.111,0.125,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.053,0.272,0.097,0.281,3 +0.77,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0013,0.018,0.104,0.104,0.1,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.098,0.114,0.086,3 +0.46,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.045,0.156,0.076,0.205,3 +0.42,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0.00067,0.019,0.074,0.079,0.093,3 +0.5,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.013,0.013,0.086,0.087,0.099,2 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.094,0.104,0.089,3 +0.19,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.147,0.09,0.163,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.0206,0.145,0.096,0.152,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.015,0.083,0.099,0.08366,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.019,0.086,0.099,0.08669,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0206,0.192,0.144,0.134,3 +0.19,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0037,0.011,0.126,0.091,0.138,3 +0.32,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.138,0.115,0.12,3 +0.53,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.037,0.172,0.167,0.103,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.177,0.151,0.117,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.082,0.088,0.092,3 +0.21,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.016,0.099,0.087,0.114,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.139,0.113,0.123,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.113,0.088,0.128,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.008,0.086,0.066,0.13,2 +0.76,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.005,0.057,0.099,0.05745,3 +0.76,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0012,0.0208,0.081,0.094,0.086,3 +0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478,0.0096,0.045,0.13,0.034,1 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.033,0.2,0.1,0.2,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.098,0.104,0.095,3 +0.36,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.0206,0.125,0.093,0.135,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0046,0.0206,0.157,0.171,0.092,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.0206,0.129,0.114,0.114,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.024,0.099,0.107,0.093,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00929,0.019,0.085,0.107,0.08,2 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0208,0.121,0.112,0.108,3 +0.45,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0.0016,0.018,0.089,0.08,0.112,3 +0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.086,0.104,0.083,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0206,0.096,0.069,0.14,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.094,0.115,0.082,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.028,0.096,0.082,0.118,3 +0.75,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.02,0.102,0.083,0.124,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.087,0.113,0.078,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.019,0.114,0.099,0.11491,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.059,0.058,0.099,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.017,0.101,0.099,0.10181,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.023,0.114,0.099,0.11491,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.0206,0.147,0.107,0.138,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00094,0.024,0.08,0.104,0.076,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.025,0.109,0.103,0.105,3 +0.41,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0028,0.0206,0.149,0.1,0.148,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0206,0.103,0.108,0.095,3 +0.52,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.099,0.092,0.107,3 +0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.0206,0.123,0.157,0.079,3 +0.63,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.042,0.016,0.06,0.093,0.064,1 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.078,0.078,0.1,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.017,0.107,0.081,0.132,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.095,0.091,0.104,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0069,0.0174,0.085,0.089,0.095,2 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.018,0.12,0.109,0.11,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.02,0.102,0.097,0.106,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00055,0.0206,0.18,0.104,0.172,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.103,0.089,0.116,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00098,0.025,0.12,0.104,0.113,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.11,0.085,0.129,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.016,0.09,0.079,0.114,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.025,0.066,0.089,0.075,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.134,0.098,0.137,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0206,0.154,0.134,0.115,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.011,0.052,0.036,0.145,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.03,0.128,0.111,0.116,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.025,0.085,0.081,0.105,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.02,0.073,0.074,0.099,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.017,0.114,0.089,0.128,3 +0.61,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.063,0.071,0.089,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00082,0.014,0.129,0.088,0.147,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0206,0.098,0.079,0.125,3 +0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0208,0.098,0.09,0.108,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.03,0.106,0.112,0.096,3 +0.63,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0065,0.007,0.086,0.072,0.12,2 +0.74,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0.0052,0.0206,0.11118,0.099,0.11207,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.139,0.084,0.165,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.145,0.104,0.14,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00088,0.016,0.108,0.085,0.127,3 +0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.0206,0.157,0.102,0.154,3 +0.5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.034,0.131,0.102,0.129,3 +0.18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.183,0.13,0.141,3 +0.18,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0.025,0.011,0.136,0.096,0.143,3 +0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0023,0.036,0.148,0.142,0.104,3 +0.53,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.054,0.162,0.073,0.222,3 +0.38,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.093,0.115,0.081,3 +0.69,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0013,0.019,0.101,0.099,0.10181,3 +0.29,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.019,0.1,0.093,0.107,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0004,0.0206,0.135,0.084,0.16,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0206,0.093,0.075,0.125,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0039,0.015,0.058,0.058,0.099,3 +0.73,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3e-05,0.017,0.127,0.089,0.143,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.055,0.199,0.104,0.19,3 +0.41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0051,0.018,0.091,0.112,0.082,3 +0.64,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.00073,0.02,0.152,0.115,0.131,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.152,0.099,0.153,3 +0.29,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.022,0.142,0.093,0.153,3 +0.35,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00014,0.019,0.073,0.116,0.063,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.078,0.102,0.077,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.097,0.086,0.112,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.016,0.13,0.104,0.123,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.1,0.1,0.1,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0013,0.0208,0.081,0.09,0.09,3 +0.57,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00062,0.015,0.074,0.078,0.096,3 +0.54,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.026,0.1,0.101,0.099,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0058,0.0206,0.261,0.232,0.113,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.014,0.1,0.08,0.124,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.009,0.056,0.067,0.084,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.009,0.122,0.099,0.12298,3 +0.58,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.003,0.0206,0.115,0.107,0.107,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.108,0.102,0.106,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.017,0.059,0.104,0.057,1 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.016,0.131,0.13,0.101,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.109,0.102,0.107,3 +0.37,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0016,0.022,0.104,0.099,0.105,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.104,0.096,0.108,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.028,0.11118,0.099,0.11207,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0206,0.105,0.09,0.116,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.095,0.102,0.093,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00031,0.0206,0.146,0.104,0.141,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.024,0.13,0.124,0.105,3 +0.58,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.099,0.108,0.092,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.116,0.099,0.11693,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.014,0.096,0.099,0.09677,3 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.011,0.096,0.087,0.111,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0206,0.088,0.095,0.092,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.1,0.082,0.122,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.017,0.084,0.099,0.085,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.11118,0.099,0.11207,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.078,0.087,0.09,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.014,0.108,0.102,0.105,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.116,0.104,0.11,3 +0.02,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00419,0.0208,0.152,0.093,0.163,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.017,0.066,0.075,0.088,3 +0.21,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0.0013,0.019,0.112,0.104,0.106,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.031,0.164,0.081,0.201,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.09,0.098,0.092,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.018,0.163,0.104,0.155,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.0206,0.077,0.067,0.115,3 +0.37,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0.00057,0.026,0.159,0.139,0.114,3 +0.66,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.003,0.072,0.061,0.119,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0174,0.068,0.062,0.111,2 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.1,0.083,0.121,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.0174,0.074,0.09,0.082,2 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.124,0.104,0.119,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.013,0.08,0.102,0.079,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.031,0.119,0.108,0.109,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.076,0.103,0.073,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0206,0.087,0.089,0.098,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.016,0.075,0.076,0.099,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.099,0.096,0.104,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.02,0.089,0.15,0.059,1 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.017,0.12,0.098,0.122,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.0206,0.109,0.085,0.128,3 +0.3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.017,0.082,0.103,0.079,3 +0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0206,0.112,0.083,0.134,3 +0.62,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0.013,0.008,0.083,0.081,0.103,2 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.044,0.195,0.082,0.237,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0206,0.105,0.085,0.124,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.068,0.064,0.106,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.096,0.088,0.109,3 +0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.131,0.101,0.131,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.081,0.085,0.095,3 +0.72,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0058,0.014,0.107,0.107,0.1,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.113,0.097,0.117,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.071,0.128,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00066,0.0206,0.127,0.097,0.131,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.0096,0.063,0.119,0.053,1 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.057,0.085,0.065,3 +0.19,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0.00045,0.032,0.13,0.183,0.071,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.022,0.115,0.102,0.114,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.0208,0.107,0.09,0.119,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.11118,0.099,0.11207,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0208,0.188,0.097,0.194,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.123,0.116,0.107,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.015,0.116,0.093,0.124,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.113,0.085,0.132,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.022,0.129,0.097,0.133,3 +0.78,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.0208,0.214,0.087,0.245,3 +0.77,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0035,0.008,0.068,0.097,0.07,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.023,0.138,0.104,0.133,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.013,0.105,0.094,0.112,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00089,0.0206,0.04,0.096,0.042,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.103,0.12,0.086,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.0206,0.117,0.109,0.107,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0.009,0.045,0.104,0.043,1 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00057,0.014,0.075,0.072,0.104,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.019,0.115,0.077,0.149,3 +0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.00058,0.0206,0.118,0.103,0.114,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00189,0.0206,0.089,0.096,0.093,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.128,0.098,0.131,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.02,0.093,0.097,0.096,3 +0.52,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.025,0.066,0.122,0.054,1 +0.83,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.0144,0.123,0.099,0.124,3 +0.7,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0023,0.012,0.107,0.101,0.105,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.015,0.084,0.099,0.085,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.015,0.1,0.074,0.135,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.018,0.12,0.094,0.128,3 +0.65,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.099,0.052,0.188,3 +0.52,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0012,0.017,0.092,0.076,0.121,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.02,0.104,0.087,0.12,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.35,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00044,0.018,0.094,0.086,0.11,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.019,0.115,0.107,0.107,3 +0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.05,0.244,0.067,0.362,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.012,0.174,0.099,0.1754,3 +0.65,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.012,0.118,0.09,0.13,3 +0.78,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0206,0.11118,0.099,0.11207,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.0206,0.11118,0.099,0.11207,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.13,0.086,0.151,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.114,0.092,0.125,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.019,0.083,0.103,0.081,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.011,0.128,0.08,0.16,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.019,0.119,0.1,0.119,3 +0.515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.118,0.113,0.104,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.101,0.104,0.097,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.02,0.102,0.116,0.089,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.097,0.104,0.093,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.073,0.099,0.074,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.019,0.17,0.123,0.138,3 +0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00041,0.012,0.116,0.087,0.134,3 +0.51,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.022,0.164,0.109,0.151,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.078,0.09,0.087,3 +0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.036,0.0174,0.082,0.102,0.081,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6e-05,0.0419,0.235,0.11,0.214,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.02,0.153,0.099,0.154,3 +0.63,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0029,0.016,0.101,0.099,0.10181,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.025,0.105,0.101,0.103,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.034,0.129,0.095,0.136,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00065,0.03,0.092,0.095,0.092,3 +0.56,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0.0052,0.0206,0.137,0.128,0.107,3 +0.39,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0.0036,0.0206,0.092,0.109,0.084,3 +0.85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.008,0.011,0.125,0.089,0.142,2 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.153,0.119,0.129,3 +0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4e-05,0.026,0.117,0.102,0.114,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.093,0.087,0.107,3 +0.7,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,7e-05,0.009,0.104,0.083,0.124,3 +0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00015,0.055,0.161,0.161,0.1,3 +0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00025,0.025,0.101,0.1,0.101,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.025,0.084,0.104,0.08,3 +0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00078,0.019,0.136,0.09,0.152,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.025,0.13,0.108,0.121,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.135,0.121,0.111,3 +0.7,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.035,0.194,0.09,0.215,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.102,0.092,0.111,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.028,0.11,0.114,0.097,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.017,0.064,0.069,0.093,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.027,0.11,0.109,0.101,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.018,0.091,0.09,0.101,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.012,0.09,0.082,0.11,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.067,0.09,0.075,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.028,0.106,0.132,0.081,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.026,0.111,0.104,0.105,3 +0.72,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.082,0.089,0.093,3 +0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.183,0.011,0.045,0.097,0.046,1 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.018,0.096,0.103,0.094,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00016,0.0206,0.11118,0.099,0.11207,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.077,0.104,0.074,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0.03,0.145,0.123,0.117,3 +0.64,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0024,0.02,0.101,0.094,0.107,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0208,0.112,0.111,0.101,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.084,0.091,0.093,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.02,0.072,0.09,0.08,2 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.025,0.169,0.114,0.149,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.026,0.18,0.142,0.126,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.088,0.098,0.09,2 +0.64,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00889,0.012,0.067,0.075,0.089,2 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.03,0.114,0.093,0.122,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.013,0.025,0.096,0.133,0.073,2 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.092,0.104,0.087,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.024,0.1,0.099,0.1008,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.019,0.116,0.099,0.11693,3 +0.67,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0.0013,0.022,0.104,0.092,0.114,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.018,0.098,0.099,0.099,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.018,0.094,0.088,0.107,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.109,0.091,0.119,3 +0.4,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00047,0.0206,0.089,0.089,0.1,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0206,0.102,0.084,0.121,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.105,0.09,0.116,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.098,0.085,0.115,3 +0.18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0206,0.116,0.104,0.111,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.025,0.119,0.104,0.114,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.016,0.126,0.102,0.123,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.022,0.075,0.085,0.088,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.016,0.14,0.101,0.138,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.106,0.099,0.10685,3 +0.63,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.0206,0.08,0.084,0.095,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.073,0.089,0.082,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.025,0.108,0.096,0.113,3 +0.93,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0027,0.004,0.077,0.086,0.09,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.113,0.096,0.118,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.015,0.113,0.074,0.153,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.074,0.099,0.07458,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00043,0.041,0.123,0.148,0.083,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.023,0.15,0.12,0.125,3 +0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.016,0.108,0.092,0.118,3 +0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.022,0.105,0.094,0.112,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00086,0.027,0.094,0.099,0.09475,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.1,0.086,0.117,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.003,0.061,0.054,0.113,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.086,0.08,0.107,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.026,0.095,0.101,0.095,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.025,0.081,0.091,0.089,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.087,0.085,0.102,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.038,0.263,0.17,0.155,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.0208,0.066,0.066,0.099,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0.02,0.01,0.112,0.0085,1 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.087,0.116,0.075,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.003,0.044,0.038,0.118,3 +0.88,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.022,0.101,0.1,0.101,3 +0.62,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.024,0.081,0.097,0.084,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.016,0.162,0.094,0.173,3 +0.34,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.027,0.104,0.101,0.103,3 +0.52,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1e-05,0.024,0.108,0.07,0.154,3 +0.17,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.145,0.012,0.036,0.15,0.024,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0068,0.024,0.096,0.104,0.09,2 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.023,0.149,0.088,0.169,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.045,0.171,0.116,0.148,3 +0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.018,0.0208,0.068,0.108,0.063,1 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.0208,0.1,0.099,0.1008,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.026,0.087,0.099,0.0877,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.026,0.129,0.116,0.109,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.137,0.135,0.101,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.002,0.059,0.073,0.082,3 +0.67,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0017,0.007,0.079,0.077,0.102,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.025,0.097,0.1,0.085,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.015,0.089,0.094,0.095,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.087,0.093,0.094,3 +0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0419,0.188,0.139,0.135,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.027,0.138,0.134,0.103,3 +0.53,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3e-05,0.0206,0.052,0.109,0.14,3 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.088,0.101,0.087,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.023,0.129,0.129,0.1,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.02,0.082,0.099,0.08266,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.027,0.137,0.119,0.115,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.083,0.119,0.069,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.012,0.124,0.112,0.111,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.078,0.084,0.093,3 +0.69,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.018,0.163,0.109,0.149,3 +0.69,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.017,0.116,0.095,0.122,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0073,0.016,0.109,0.104,0.105,3 +0.31,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.101,0.089,0.113,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0208,0.119,0.108,0.11,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.023,0.129,0.124,0.103,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.024,0.061,0.099,0.06149,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.018,0.093,0.104,0.089,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.068,0.079,0.086,3 +0.18,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.016,0.013,0.075,0.111,0.068,3 +0.59,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00065,0.0206,0.126,0.131,0.096,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.001,0.065,0.048,0.137,3 +0.17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.005,0.043,0.041,0.105,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.016,0.106,0.088,0.12,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.026,0.093,0.116,0.079,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.024,0.099,0.113,0.088,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.116,0.095,0.122,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.02,0.09159,0.1,0.0915,2 +0.53,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00062,0.017,0.116,0.1,0.116,3 +0.82,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.099,0.091,0.108,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.004,0.058,0.068,0.085,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.027,0.119,0.136,0.088,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.028,0.11118,0.099,0.11207,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.022,0.113,0.116,0.097,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.013,0.066,0.116,0.056,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.076,0.102,0.075,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.019,0.081,0.083,0.098,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.022,0.103,0.11,0.093,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.028,0.0206,0.074,0.103,0.072,3 +0.57,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1e-05,0.029,0.098,0.087,0.113,3 +0.41,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.027,0.101,0.084,0.121,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.029,0.1,0.104,0.095,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00859,0.011,0.084,0.074,0.114,2 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00046,0.014,0.085,0.112,0.077,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.124,0.125,0.099,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.018,0.109,0.092,0.118,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0208,0.141,0.085,0.167,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.105,0.101,0.105,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.062,0.072,0.085,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00012,0.015,0.117,0.094,0.125,3 +0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.023,0.054,0.086,0.063,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.024,0.112,0.099,0.1129,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.031,0.135,0.099,0.13608,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.016,0.116,0.093,0.125,3 +0.56,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.01,0.099,0.07,0.142,3 +0.73,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.0208,0.104,0.113,0.092,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.014,0.096,0.088,0.109,3 +0.41,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0.022,0.064,0.094,0.069,3 +0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.132,0.095,0.139,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0208,0.083,0.124,0.067,2 +0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.0096,0.03375,0.103,0.03249,1 +0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.114,0.093,0.122,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.096,0.083,0.116,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.082,0.1,0.081,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.11,0.102,0.108,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.011,0.066,0.071,0.093,3 +0.83,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0022,0.007,0.071,0.076,0.093,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.015,0.11,0.08,0.137,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.019,0.096,0.112,0.085,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.024,0.113,0.134,0.084,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.019,0.101,0.099,0.10181,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.096,0.079,0.122,3 +0.36,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0206,0.108,0.11,0.099,3 +0.48,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.178,0.01,0.063,0.108,0.059,1 +0.42,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.04,0.2,0.156,0.128,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.023,0.122,0.166,0.073,3 +0.7,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.023,0.12,0.101,0.119,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.109,0.099,0.10987,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.115,0.097,0.119,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.101,0.093,0.109,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.109,0.089,0.122,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.014,0.144,0.099,0.14516,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.117,0.109,0.107,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.02,0.101,0.094,0.108,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.024,0.125,0.109,0.115,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.03,0.123,0.122,0.101,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.111,0.114,0.097,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.023,0.128,0.114,0.112,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.01,0.101,0.082,0.123,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.152,0.078,0.196,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.005,0.13,0.085,0.153,2 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.164,0.114,0.145,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.017,0.113,0.099,0.11391,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0208,0.157,0.116,0.135,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.165,0.004,0.017,0.119,0.014,1 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.15,0.104,0.145,3 +0.31,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.012,0.146,0.121,0.121,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0.0208,0.05,0.11,0.046,1 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.014,0.064,0.079,0.081,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.009,0.106,0.092,0.115,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.01,0.102,0.091,0.112,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.014,0.101,0.098,0.103,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.011,0.24,0.107,0.223,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.016,0.103,0.093,0.111,3 +0.61,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0.0018,0.019,0.102,0.104,0.097,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.016,0.097,0.112,0.087,3 +0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.015,0.112,0.099,0.114,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0082,0.0208,0.08,0.101,0.079,2 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.014,0.106,0.092,0.115,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.018,0.089,0.104,0.085,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.026,0.118,0.11,0.107,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.035,0.023,0.042,0.101,0.041,1 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.102,0.108,0.095,3 +0.64,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00085,0.011,0.099,0.111,0.09,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.014,0.116,0.096,0.121,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.013,0.091,0.102,0.089,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.033,0.116,0.099,0.11693,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.014,0.058,0.083,0.069,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00017,0.018,0.119,0.091,0.13,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.022,0.132,0.099,0.133,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.014,0.152,0.104,0.145,3 +0.71,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.0016,0.018,0.136,0.116,0.117,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0005,0.038,0.052,0.073,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3e-05,0.026,0.128,0.103,0.124,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.119,0.104,0.113,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.01,0.143,0.083,0.173,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.016,0.12,0.111,0.108,3 +0.73,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.036,0.115,0.123,0.093,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.01,0.103,0.085,0.122,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.031,0.142,0.147,0.097,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.141,0.125,0.113,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.13,0.101,0.129,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.024,0.095,0.121,0.078,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0071,0.019,0.098,0.111,0.088,2 +0.22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.017,0.103,0.1,0.103,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.012,0.107,0.11,0.097,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00032,0.016,0.164,0.111,0.148,3 +0.25,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0024,0.022,0.152,0.136,0.112,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.017,0.167,0.121,0.137,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.1,0.111,0.09,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.124,0.09,0.138,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.097,0.099,0.099,3 +0.69,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.082,0.066,0.124,3 +0.71,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.014,0.111,0.096,0.116,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.02,0.098,0.101,0.097,3 +0.78,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0041,0.019,0.116,0.104,0.11,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.026,0.171,0.112,0.153,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.015,0.126,0.086,0.147,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.007,0.05,0.025,0.205,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.018,0.124,0.111,0.112,2 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.022,0.109,0.097,0.113,2 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.106,0.104,0.1,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00989,0.007,0.111,0.092,0.12,2 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.022,0.145,0.134,0.108,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.087,0.099,0.0877,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.014,0.076,0.057,0.132,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.017,0.094,0.097,0.097,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.101,0.116,0.086,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00042,0.01,0.115,0.111,0.104,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.015,0.094,0.102,0.092,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00028,0.009,0.079,0.07,0.112,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.007,0.134,0.112,0.12,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.004,0.011,0.124,0.00889,1 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.003,0.01,0.116,0.00839,1 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.045,0.204,0.203,0.1,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0208,0.108,0.104,0.105,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.038,0.193,0.193,0.1,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.016,0.105,0.099,0.10584,3 +0.69,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.02,0.121,0.107,0.113,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.027,0.156,0.125,0.125,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.016,0.113,0.099,0.114,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.011,0.121,0.111,0.109,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.025,0.096,0.091,0.105,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.019,0.133,0.099,0.134,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.022,0.091,0.084,0.108,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.141,0.12,0.117,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.026,0.162,0.121,0.134,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.72,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0.0015,0.018,0.11118,0.093,0.112,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0208,0.109,0.099,0.10987,3 +0.67,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.0206,0.082,0.089,0.092,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.106,0.101,0.105,3 +0.84,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.012,0.132,0.092,0.145,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.019,0.09,0.087,0.104,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.129,0.122,0.106,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.008,0.101,0.099,0.103,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00208,0.026,0.121,0.094,0.13,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.014,0.159,0.095,0.166,3 +0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.0096,0.03375,0.103,0.03249,1 +0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.018,0.119,0.104,0.113,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.01,0.13,0.088,0.148,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.008,0.105,0.088,0.12,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.13,0.12,0.109,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.02,0.121,0.119,0.102,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.017,0.092,0.098,0.094,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.094,0.094,0.1,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.02,0.078,0.094,0.087,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.096,0.093,0.103,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.009,0.14,0.099,0.14112,3 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.099,0.092,0.108,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.106,0.101,0.104,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.097,0.094,0.104,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.201,0.108,0.186,3 +0.53,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.028,0.13,0.101,0.128,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.004,0.011,0.115,0.09,0.128,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.076,0.081,0.093,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.094,0.085,0.11,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0059,0.02,0.126,0.126,0.1,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.023,0.089,0.122,0.072,3 +0.34,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.026,0.037,0.107,0.121,0.088,3 +0.55,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0.016,0.115,0.084,0.138,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0007,0.02,0.095,0.099,0.096,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.127,0.104,0.121,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.025,0.07,0.093,0.075,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.007,0.082,0.099,0.08266,3 +0.46,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0.0017,0.011,0.094,0.091,0.103,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.092,0.099,0.09274,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.108,0.083,0.13,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.123,0.098,0.125,3 +0.56,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0206,0.103,0.107,0.097,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.017,0.086,0.091,0.095,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.018,0.107,0.104,0.101,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.088,0.085,0.104,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.0208,0.088,0.07,0.125,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.014,0.14,0.113,0.124,3 +0.7,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0012,0.0206,0.109,0.108,0.1,3 +0.59,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0206,0.119,0.093,0.127,3 +0.61,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.023,0.11,0.101,0.109,3 +0.46,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.005,0.02,0.107,0.114,0.094,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.028,0.183,0.123,0.149,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.019,0.104,0.113,0.092,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.031,0.097,0.11,0.086,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.013,0.105,0.104,0.101,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0.005,0.024,0.132,0.018,1 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.101,0.093,0.108,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.017,0.077,0.087,0.089,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.016,0.103,0.092,0.112,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.02,0.101,0.104,0.097,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.0206,0.11118,0.099,0.11207,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00063,0.018,0.12,0.091,0.132,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.016,0.102,0.082,0.128,3 +0.77,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.00189,0.018,0.111,0.096,0.115,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.013,0.097,0.09,0.108,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.037,0.184,0.18,0.102,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.109,0.1,0.109,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.087,0.116,0.074,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.018,0.162,0.099,0.164,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.142,0.113,0.125,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.023,0.132,0.116,0.114,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.126,0.087,0.145,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.015,0.14,0.088,0.16,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.02,0.114,0.133,0.086,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.08,0.086,0.093,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.013,0.116,0.097,0.119,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.117,0.111,0.105,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0208,0.116,0.099,0.11693,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00043,0.004,0.092,0.075,0.123,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.02,0.071,0.089,0.08,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.005,0.105,0.082,0.129,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.018,0.098,0.114,0.085,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00057,0.019,0.09,0.088,0.102,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.14,0.095,0.148,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.011,0.063,0.08,0.078,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.007,0.116,0.085,0.137,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.009,0.137,0.095,0.144,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.014,0.113,0.103,0.11,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.017,0.112,0.104,0.107,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.003,0.102,0.096,0.106,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.088,0.099,0.0887,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00809,0.024,0.132,0.128,0.103,2 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.105,0.099,0.10584,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.084,0.09,0.093,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.009,0.105,0.082,0.129,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.029,0.151,0.135,0.111,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.127,0.113,0.113,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.072,0.09,0.08,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.023,0.192,0.147,0.13,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.111,0.091,0.123,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.018,0.081,0.091,0.088,3 +0.28,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0032,0.013,0.096,0.09,0.107,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.116,0.103,0.112,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.02,0.104,0.104,0.098,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.016,0.088,0.089,0.1,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.093,0.099,0.095,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.0206,0.162,0.107,0.152,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.011,0.112,0.082,0.137,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.103,0.095,0.109,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.008,0.108,0.081,0.133,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.023,0.197,0.092,0.213,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.018,0.094,0.099,0.09475,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.0208,0.089,0.086,0.103,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00071,0.017,0.102,0.112,0.092,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.013,0.138,0.107,0.129,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.16,0.088,0.18,3 +0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.017,0.071,0.108,0.066,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.003,0.064,0.066,0.096,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.02,0.103,0.103,0.1,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.02,0.119,0.104,0.114,2 +0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.087,0.1,0.087,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.0206,0.085,0.095,0.09,3 +0.33,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0.0039,0.022,0.12,0.141,0.085,3 +0.35,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00072,0.038,0.14,0.116,0.121,3 +0.81,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.012,0.147,0.104,0.138,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.124,0.108,0.114,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.022,0.103,0.135,0.076,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.0208,0.094,0.079,0.119,3 +0.74,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0005,0.008,0.151,0.101,0.15,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00049,0.017,0.146,0.089,0.165,3 +0.19,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.009,0.022,0.117,0.1,0.11688,2 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0044,0.027,0.131,0.173,0.076,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.018,0.078,0.104,0.076,3 +0.7,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.01,0.112,0.102,0.11,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.019,0.113,0.114,0.099,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.017,0.067,0.115,0.059,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.02,0.054,0.166,0.033,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.016,0.061,0.109,0.056,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.012,0.039,0.095,0.041,3 +0.8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.013,0.093,0.086,0.108,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.002,0.078,0.056,0.139,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.104,0.099,0.10483,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.01,0.068,0.077,0.088,3 +0.47,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.098,0.086,0.113,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.019,0.081,0.1,0.082,3 +0.62,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0034,0.013,0.092,0.089,0.104,3 +0.8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.083,0.111,0.076,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.087,0.094,0.093,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.076,0.085,0.089,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.016,0.096,0.099,0.09677,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.014,0.071,0.072,0.099,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0045,0.013,0.089,0.073,0.121,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.005,0.083,0.077,0.108,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.002,0.115,0.092,0.126,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.024,0.129,0.116,0.109,3 +0.37,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0.011,0.012,0.074,0.077,0.096,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.092,0.092,0.1,3 +0.54,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.00094,0.013,0.078,0.112,0.07,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.12,0.097,0.124,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.006,0.08,0.072,0.11,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.015,0.106,0.092,0.115,2 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.012,0.117,0.096,0.121,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00056,0.006,0.049,0.054,0.09,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.095,0.079,0.12,3 +0.41,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.1,0.101,0.099,3 +0.27,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0.025,0.145,0.145,0.1,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.01,0.072,0.07,0.103,3 +0.65,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,3e-05,0.019,0.151,0.089,0.169,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.016,0.114,0.102,0.112,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.033,0.122,0.146,0.083,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.018,0.114,0.102,0.112,3 +0.62,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00859,0.0174,0.086,0.084,0.101,2 +0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0029,0.0206,0.121,0.1,0.121,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.025,0.17,0.14,0.121,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.012,0.105,0.084,0.125,2 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.018,0.091,0.092,0.099,3 +0.78,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.122,0.107,0.114,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.126,0.085,0.148,3 +0.71,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,3e-05,0.038,0.171,0.113,0.151,3 +0.66,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0.0017,0.014,0.089,0.087,0.103,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.017,0.081,0.099,0.08165,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.015,0.145,0.088,0.165,3 +0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.045,0.239,0.21,0.113,3 +0.61,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0038,0.013,0.093,0.084,0.111,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0039,0.017,0.104,0.104,0.1,3 +0.47,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0012,0.0208,0.13,0.099,0.131,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0004,0.0206,0.11118,0.099,0.11207,3 +0.35,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.017,0.114,0.098,0.115,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.65,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.128,0.122,0.105,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.016,0.103,0.092,0.111,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0019,0.018,0.122,0.092,0.113,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00469,0.02,0.019,0.112,0.017,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.016,0.108,0.114,0.095,3 +0.4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0092,0.015,0.113,0.103,0.109,2 +0.71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3e-05,0.015,0.104,0.104,0.1,3 +0.17,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.016,0.151,0.139,0.109,3 +0.5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.124,0.099,0.13,3 +0.41,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0032,0.013,0.078,0.097,0.08,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.01,0.054,0.078,0.07,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.014,0.085,0.093,0.092,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.016,0.096,0.097,0.099,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.013,0.102,0.095,0.108,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0068,0.007,0.084,0.078,0.107,2 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.005,0.011,0.119,0.00909,1 +0.62,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00054,0.0206,0.085,0.094,0.091,3 +0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.1,0.109,0.091,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.32,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0028,0.013,0.086,0.089,0.096,3 +0.28,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.103,0.0208,0.065,0.116,0.056,1 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0085,0.0208,0.091,0.116,0.079,2 +0.2,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,3e-05,0.027,0.107,0.107,0.1,3 +0.86,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.002,0.038,0.076,0.05,3 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0074,0.02,0.12,0.102,0.117,2 +0.67,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.101,0.101,0.1,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.016,0.1,0.093,0.107,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.023,0.104,0.099,0.10483,3 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.023,0.002,0.05,0.085,0.058,1 +0.38,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.102,0.097,0.105,3 +0.32,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0022,0.02,0.102,0.086,0.119,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0208,0.084,0.1,0.083,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.107,0.109,0.099,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.146,0.134,0.108,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.092,0.1,0.092,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.017,0.129,0.11,0.116,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.018,0.083,0.119,0.069,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.097,0.103,0.094,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0206,0.137,0.091,0.151,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.104,0.108,0.096,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.121,0.094,0.129,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.127,0.1,0.127,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.019,0.122,0.095,0.129,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.014,0.074,0.052,0.143,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.016,0.101,0.11,0.092,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.041,0.16,0.078,0.204,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.02,0.164,0.092,0.178,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0206,0.075,0.087,0.086,3 +0.54,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00086,0.017,0.098,0.096,0.102,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00573,0.018,0.109,0.104,0.104,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,3e-05,0.025,0.119,0.155,0.076,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.02,0.09,0.093,0.097,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.118,0.099,0.119,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.011,0.137,0.086,0.16,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.084,0.063,0.133,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.116,0.114,0.102,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.017,0.098,0.074,0.132,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,8e-05,0.0206,0.126,0.1,0.126,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.015,0.097,0.088,0.11,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.022,0.118,0.101,0.117,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.091,0.098,0.093,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.019,0.108,0.104,0.102,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.08,0.088,0.091,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.092,0.1,0.092,3 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.091,0.068,0.133,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.67,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.026,0.113,0.109,0.104,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.022,0.114,0.093,0.123,3 +0.48,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0015,0.025,0.101,0.097,0.104,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.031,0.099,0.101,0.098,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.026,0.117,0.131,0.09,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.0208,0.123,0.116,0.104,2 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.01,0.061,0.077,0.08,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.013,0.092,0.089,0.103,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.015,0.125,0.077,0.163,3 +0.33,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0082,0.015,0.074,0.09,0.083,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.024,0.107,0.11,0.092,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.024,0.098,0.108,0.091,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.022,0.139,0.102,0.136,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.091,0.093,0.098,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.019,0.094,0.107,0.088,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.022,0.09,0.104,0.087,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.016,0.123,0.109,0.113,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.015,0.076,0.088,0.086,3 +0.33,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.01029,0.02,0.068,0.115,0.059,1 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.026,0.118,0.119,0.099,3 +0.33,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0.003,0.025,0.121,0.138,0.088,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.024,0.136,0.092,0.148,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01109,0.013,0.088,0.104,0.083,2 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.17,0.11,0.155,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.018,0.115,0.094,0.123,3 +0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00989,0.0206,0.121,0.102,0.118,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.0208,0.083,0.082,0.101,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0078,0.02,0.159,0.151,0.105,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.016,0.085,0.087,0.098,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.015,0.133,0.108,0.124,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.025,0.106,0.081,0.13,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.017,0.101,0.085,0.119,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.02,0.088,0.104,0.085,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.023,0.093,0.086,0.108,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.016,0.105,0.083,0.127,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.012,0.122,0.094,0.131,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.026,0.166,0.08,0.207,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.014,0.079,0.079,0.101,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0208,0.102,0.112,0.091,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.023,0.098,0.107,0.092,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.014,0.086,0.098,0.088,3 +0.15,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0034,0.0206,0.112,0.13,0.086,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00051,0.013,0.121,0.078,0.155,3 +0.26,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.016,0.097,0.1,0.095,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0019,0.0208,0.118,0.12,0.098,3 +0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0206,0.132,0.087,0.152,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.015,0.16,0.087,0.185,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.089,0.09,0.098,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.012,0.014,0.111,0.12,0.093,2 +0.68,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00097,0.013,0.085,0.087,0.098,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.015,0.126,0.096,0.131,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.009,0.086,0.085,0.102,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.013,0.101,0.086,0.117,3 +0.83,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.015,0.097,0.098,0.099,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00095,0.026,0.152,0.14,0.11,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0095,0.0206,0.115,0.131,0.088,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00076,0.0206,0.107,0.091,0.118,3 +0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00015,0.013,0.126,0.096,0.132,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.025,0.11,0.116,0.094,2 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.017,0.093,0.096,0.098,3 +0.38,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00037,0.022,0.086,0.075,0.115,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.094,0.104,0.09,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.016,0.063,0.1,0.063,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.013,0.09,0.104,0.086,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.024,0.115,0.114,0.1,3 +0.64,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.001,0.017,0.096,0.09,0.107,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.012,0.083,0.082,0.101,2 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.016,0.093,0.081,0.114,3 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.083,0.083,0.101,3 +0.53,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0038,0.025,0.105,0.104,0.101,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.111,0.104,0.107,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.017,0.105,0.099,0.10584,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.024,0.105,0.116,0.088,3 +0.36,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2e-05,0.029,0.194,0.163,0.119,3 +0.63,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00809,0.0206,0.082,0.069,0.119,3 +0.77,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0019,0.0206,0.11118,0.099,0.11207,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.024,0.096,0.098,0.098,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.054,0.152,0.15,0.102,3 +0.25,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.036,0.045,0.162,0.115,0.142,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.023,0.092,0.08,0.114,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.03,0.125,0.113,0.111,3 +0.15,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0023,0.034,0.115,0.096,0.12,3 +0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.015,0.135,0.099,0.13608,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0077,0.019,0.089,0.104,0.085,2 +0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.039,0.181,0.096,0.188,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.016,0.069,0.082,0.083,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086,0.005,0.027,0.084,0.032,1 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.015,0.08,0.112,0.071,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.013,0.104,0.104,0.099,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.11,0.108,0.102,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.008,0.161,0.097,0.166,3 +0.77,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.005,0.054,0.086,0.062,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.025,0.094,0.115,0.082,3 +0.93,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.003,0.009,0.092,0.081,0.112,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.017,0.131,0.149,0.088,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6e-05,0.025,0.121,0.125,0.097,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.119,0.099,0.11995,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0048,0.029,0.132,0.127,0.104,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.105,0.128,0.083,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.133,0.108,0.123,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.116,0.126,0.092,3 +0.19,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0027,0.027,0.121,0.116,0.104,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.026,0.12,0.12,0.1,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.031,0.133,0.153,0.087,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.016,0.112,0.113,0.1,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.022,0.091,0.111,0.082,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.016,0.068,0.102,0.066,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.017,0.092,0.101,0.091,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0072,0.035,0.126,0.138,0.092,2 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0208,0.112,0.125,0.09,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.011,0.111,0.102,0.109,3 +0.55,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0017,0.019,0.132,0.115,0.114,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0208,0.128,0.094,0.136,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.018,0.102,0.097,0.106,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.02,0.115,0.11,0.104,3 +0.53,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0007,0.0206,0.046,0.087,0.052,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.016,0.091,0.099,0.091,3 +0.54,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.02,0.11,0.099,0.111,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.139,0.112,0.124,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.134,0.12,0.112,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.024,0.111,0.152,0.073,3 +0.64,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0013,0.026,0.118,0.111,0.106,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00085,0.02,0.103,0.093,0.111,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.014,0.103,0.11,0.094,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0006,0.0206,0.087,0.1,0.088,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.026,0.117,0.124,0.094,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00037,0.012,0.091,0.095,0.096,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.112,0.099,0.1129,3 +0.67,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00081,0.0206,0.084,0.083,0.101,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2e-05,0.022,0.108,0.085,0.126,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.027,0.091,0.092,0.098,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.035,0.158,0.159,0.1,3 +0.59,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.023,0.098,0.108,0.091,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.057,0.372,0.127,0.291,3 +0.72,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0023,0.008,0.09,0.08,0.112,3 +0.72,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.013,0.013,0.106,0.131,0.082,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.013,0.118,0.087,0.136,3 +0.64,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00068,0.014,0.092,0.081,0.114,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.011,0.13,0.103,0.127,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.004,0.056,0.068,0.083,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.092,0.099,0.09274,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.023,0.087,0.096,0.09,3 +0.7,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2e-05,0.017,0.141,0.088,0.16,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.012,0.095,0.111,0.085,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.102,0.113,0.091,3 +0.48,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.01,0.071,0.081,0.088,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00064,0.023,0.107,0.104,0.101,3 +0.34,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,2e-05,0.037,0.182,0.175,0.104,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00035,0.025,0.099,0.104,0.096,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.099,0.098,0.101,3 +0.9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0057,0.016,0.089,0.091,0.098,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.107,0.097,0.11,3 +0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.006,0.02,0.103,0.099,0.10383,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.024,0.138,0.116,0.118,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.103,0.109,0.095,3 +0.5,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.015,0.02,0.071,0.108,0.066,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.018,0.097,0.097,0.101,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.016,0.082,0.088,0.093,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0.006,0.01,0.103,0.01,1 +0.21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.017,0.079,0.077,0.102,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.115,0.108,0.107,3 +0.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.019,0.113,0.086,0.131,2 +0.01,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.014,0.082,0.074,0.111,3 +0.01,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0066,0.017,0.068,0.1,0.06793,2 +0.51,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.026,0.118,0.091,0.13,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.016,0.115,0.099,0.11592,3 +0.74,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.009,0.115,0.075,0.153,3 +0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0034,0.01,0.102,0.09,0.114,3 +0.61,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.017,0.022,0.131,0.122,0.108,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.022,0.08,0.107,0.075,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.011,0.01,0.101,0.079,0.128,2 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.016,0.119,0.092,0.13,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.023,0.122,0.086,0.142,3 +0.38,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,3e-05,0.018,0.13,0.087,0.15,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.02,0.07,0.076,0.092,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.099,0.008,0.012,0.127,0.01,1 +0.61,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.002,0.0206,0.085,0.1,0.085,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.014,0.071,0.097,0.073,2 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00079,0.019,0.107,0.099,0.108,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.02,0.089,0.114,0.079,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.018,0.1,0.099,0.1008,3 +0.75,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.147,0.08,0.183,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.065,0.088,0.074,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.003,0.087,0.069,0.126,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.027,0.13,0.099,0.13103,3 +0.74,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.023,0.007,0.069,0.104,0.066,2 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.018,0.072,0.086,0.084,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.015,0.066,0.1,0.066,2 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.013,0.106,0.084,0.125,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.123,0.104,0.118,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.019,0.094,0.091,0.102,3 +0.27,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0.0022,0.041,0.157,0.201,0.078,3 +0.74,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0011,0.024,0.095,0.109,0.086,3 +0.65,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2e-05,0.039,0.133,0.123,0.108,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00077,0.032,0.175,0.147,0.119,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.015,0.086,0.065,0.132,3 +0.8,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.112,0.099,0.113,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.62,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.183,0.103,0.178,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.089,0.11,0.081,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.018,0.092,0.102,0.09,3 +0.6,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.017,0.075,0.103,0.072,3 +0.6,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.039,0.123,0.098,0.126,3 +0.66,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.015,0.129,0.102,0.127,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.017,0.123,0.096,0.129,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0208,0.092,0.085,0.109,3 +0.56,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0027,0.015,0.103,0.095,0.109,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.012,0.073,0.08,0.091,2 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.013,0.093,0.087,0.107,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.133,0.099,0.13407,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.017,0.097,0.076,0.129,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.01,0.084,0.069,0.121,3 +0.74,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0063,0.012,0.08,0.092,0.087,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.028,0.093,0.086,0.109,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.014,0.088,0.093,0.095,2 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.0206,0.125,0.113,0.11,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.015,0.144,0.124,0.116,2 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.0174,0.087,0.091,0.095,2 +0.25,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.002,0.022,0.123,0.152,0.081,3 +0.25,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.003,0.0208,0.093,0.101,0.092,3 +0.54,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,8e-05,0.0208,0.133,0.114,0.116,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00052,0.018,0.107,0.093,0.115,3 +0.71,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0005,0.0206,0.126,0.102,0.124,3 +0.65,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.031,0.114,0.091,0.126,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2e-05,0.037,0.196,0.165,0.119,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.095,0.093,0.102,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.024,0.134,0.114,0.117,3 +0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.116,0.12,0.097,3 +0.43,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.02,0.054,0.093,0.058,3 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0009,0.02,0.097,0.071,0.135,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00084,0.008,0.094,0.086,0.109,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.008,0.099,0.088,0.113,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.007,0.052,0.111,0.047,1 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.018,0.065,0.099,0.066,2 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.0208,0.07,0.083,0.084,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.02,0.085,0.104,0.08,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.014,0.107,0.086,0.124,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.023,0.113,0.084,0.134,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.089,0.085,0.105,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.015,0.113,0.097,0.117,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.02,0.123,0.116,0.107,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.122,0.115,0.106,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.026,0.076,0.085,0.089,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.024,0.094,0.116,0.081,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00087,0.02,0.095,0.091,0.105,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.097,0.1,0.097,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.02,0.118,0.116,0.102,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.014,0.096,0.088,0.109,3 +0.72,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.018,0.09,0.084,0.108,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.019,0.091,0.103,0.089,2 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.015,0.094,0.088,0.107,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.01,0.065,0.063,0.105,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0208,0.121,0.102,0.118,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.008,0.101,0.081,0.125,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.012,0.022,0.094,0.096,0.098,2 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.015,0.112,0.098,0.114,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0208,0.113,0.109,0.115,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.006,0.08,0.07,0.115,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.022,0.113,0.109,0.103,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.002,0.017,0.115,0.104,0.105,3 +0.64,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0206,0.089,0.095,0.094,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.02,0.121,0.102,0.118,3 +0.44,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0044,0.019,0.082,0.09,0.09,3 +0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.02,0.025,0.111,0.157,0.071,2 +0.67,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,7e-05,0.017,0.132,0.102,0.13,3 +0.72,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0057,0.014,0.092,0.099,0.093,3 +0.72,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.01,0.075,0.082,0.092,3 +0.39,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2e-05,0.04,0.209,0.104,0.197,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.012,0.095,0.083,0.114,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.101,0.111,0.092,3 +0.49,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00829,0.009,0.103,0.111,0.093,2 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0007,0.018,0.096,0.094,0.101,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.016,0.014,0.068,0.101,0.067,2 +0.7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0011,0.017,0.095,0.068,0.14,3 +0.66,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.02,0.128,0.104,0.123,3 +0.59,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0043,0.011,0.07,0.1,0.07,3 +0.53,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.131,0.093,0.142,3 +0.55,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0019,0.018,0.097,0.091,0.106,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0044,0.023,0.118,0.116,0.101,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00093,0.0208,0.142,0.109,0.129,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.02,0.092,0.095,0.097,3 +0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.023,0.135,0.154,0.088,2 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.024,0.025,0.121,0.02,1 +0.15,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0.017,0.019,0.113,0.017,1 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.029,0.118,0.152,0.078,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00839,0.015,0.123,0.096,0.129,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.022,0.093,0.116,0.08,3 +0.25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9e-05,0.022,0.181,0.123,0.147,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.007,0.122,0.113,0.108,2 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.003,0.027,0.11,0.087,0.126,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.019,0.095,0.104,0.09,3 +0.79,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0013,0.009,0.102,0.095,0.107,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.019,0.091,0.079,0.115,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.02,0.121,0.081,0.149,3 +0.66,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0208,0.108,0.096,0.112,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.155,0.098,0.159,3 +0.58,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.0208,0.094,0.101,0.093,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.018,0.114,0.101,0.113,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.086,0.104,0.083,3 +0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00089,0.02,0.094,0.099,0.09475,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2e-05,0.0206,0.127,0.104,0.119,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00026,0.0206,0.12,0.104,0.114,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.02,0.139,0.082,0.17,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.026,0.156,0.111,0.14,3 +0.35,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.0206,0.129,0.101,0.128,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.016,0.127,0.1,0.126,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.018,0.092,0.084,0.11,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.0208,0.134,0.1,0.135,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.018,0.093,0.093,0.1,3 +0.24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0.01,0.112,0.101,0.11,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.008,0.083,0.099,0.084,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.093,0.095,0.098,3 +0.28,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.026,0.089,0.102,0.087,2 +0.05,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.02,0.074,0.095,0.078,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0.0174,0.118,0.113,0.105,2 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.022,0.082,0.078,0.105,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.024,0.082,0.091,0.09,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.085,0.099,0.08568,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00092,0.009,0.086,0.076,0.113,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00068,0.022,0.105,0.099,0.10584,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.022,0.112,0.097,0.115,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.012,0.099,0.088,0.112,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1e-05,0.029,0.205,0.087,0.235,3 +0.48,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0.0054,0.019,0.087,0.1,0.087,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.031,0.162,0.078,0.209,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.02,0.125,0.097,0.128,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.134,0.114,0.118,3 +0.68,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00058,0.0206,0.15,0.103,0.146,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.134,0.129,0.104,3 +0.32,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00096,0.0206,0.122,0.107,0.114,3 +0.37,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0022,0.0206,0.1,0.114,0.087,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.016,0.073,0.08,0.092,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.02,0.102,0.099,0.10282,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.013,0.1,0.085,0.118,3 +0.23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0037,0.013,0.083,0.138,0.06,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.023,0.128,0.085,0.151,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.019,0.087,0.099,0.0877,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.022,0.071,0.1,0.071,3 +0.32,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.023,0.147,0.075,0.198,3 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.103,0.088,0.118,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.101,0.113,0.088,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.02,0.139,0.104,0.134,3 +0.64,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00024,0.014,0.065,0.085,0.077,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.019,0.119,0.089,0.134,3 +0.3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.019,0.11,0.089,0.125,3 +0.6,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.002,0.022,0.128,0.124,0.103,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.018,0.081,0.116,0.07,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00019,0.018,0.124,0.112,0.11,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.02,0.096,0.11,0.088,3 +0.61,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.011,0.012,0.083,0.101,0.082,2 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.013,0.092,0.1,0.092,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0014,0.0206,0.078,0.086,0.09,3 +0.43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.023,0.14,0.12,0.116,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.083,0.1,0.082,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.008,0.074,0.075,0.099,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002,0.018,0.088,0.086,0.102,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.019,0.098,0.082,0.118,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.019,0.077,0.079,0.097,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0032,0.024,0.102,0.088,0.116,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.027,0.181,0.165,0.109,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.081,0.092,0.088,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.016,0.084,0.096,0.087,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.0023,0.024,0.091,0.086,0.106,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.008,0.077,0.082,0.093,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.025,0.165,0.103,0.161,3 +0.55,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00055,0.0208,0.075,0.101,0.074,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.017,0.085,0.092,0.092,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.018,0.087,0.116,0.075,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.024,0.102,0.104,0.096,3 +0.35,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.098,0.092,0.106,3 +0.29,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00062,0.038,0.211,0.188,0.112,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.025,0.108,0.109,0.099,3 +0.34,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0.0063,0.027,0.153,0.17,0.09,3 +0.94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.013,0.119,0.104,0.114,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.022,0.115,0.095,0.121,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.107,0.107,0.1,3 +0.21,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.29,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.015,0.093,0.075,0.124,3 +0.25,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.00889,0.017,0.062,0.075,0.083,2 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.135,0.092,0.147,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.134,0.124,0.109,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.025,0.079,0.086,0.092,3 +0.74,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0051,0.018,0.112,0.107,0.105,3 +0.14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.028,0.091,0.103,0.088,3 +0.75,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.184,0.114,0.162,3 +0.52,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4e-05,0.019,0.086,0.077,0.112,3 +0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.018,0.109,0.104,0.102,2 +0.22,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.002,0.019,0.101,0.092,0.109,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00018,0.0208,0.132,0.11,0.12,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00022,0.024,0.129,0.114,0.113,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.022,0.146,0.148,0.098,3 +0.78,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0026,0.003,0.087,0.095,0.091,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.02,0.092,0.103,0.089,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0003,0.012,0.101,0.09,0.112,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0067,0.025,0.098,0.088,0.111,2 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.144,0.084,0.171,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.01,0.101,0.086,0.117,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0206,0.111,0.11,0.101,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.067,0.098,0.068,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.092,0.083,0.111,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00052,0.024,0.158,0.116,0.134,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.019,0.092,0.076,0.121,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.029,0.133,0.116,0.113,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.019,0.086,0.104,0.081,3 +0.28,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0.0015,0.015,0.12,0.101,0.118,3 +0.45,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.0012,0.027,0.12,0.113,0.106,3 +0.45,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.114,0.101,0.113,3 +0.77,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0.00093,0.019,0.121,0.136,0.089,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00072,0.0208,0.114,0.111,0.103,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.029,0.097,0.103,0.094,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.1,0.115,0.087,3 +0.42,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0.039,0.205,0.17,0.121,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.035,0.198,0.179,0.111,3 +0.56,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.17,0.096,0.177,3 +0.78,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0063,0.013,0.12,0.111,0.109,3 +0.11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.84,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00067,0.009,0.07,0.078,0.09,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.002,0.059,0.079,0.074,3 +0.6,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.132,0.095,0.138,3 +0.37,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.13,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.56,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.027,0.12,0.127,0.095,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00095,0.025,0.138,0.116,0.118,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.017,0.092,0.096,0.096,3 +0.29,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.038,0.127,0.114,0.112,3 +0.65,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.027,0.131,0.103,0.126,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.014,0.027,0.063,0.116,0.054,3 +0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00085,0.03,0.121,0.125,0.097,3 +0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0011,0.036,0.159,0.165,0.096,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.016,0.057,0.104,0.054,3 +0.76,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0.039,0.0174,0.083,0.116,0.07,2 +0.69,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.014,0.098,0.094,0.105,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00082,0.024,0.096,0.091,0.105,3 +0.62,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00043,0.022,0.122,0.116,0.104,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.002,0.033,0.07,0.047,1 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.028,0.134,0.126,0.107,3 +0.24,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.028,0.122,0.113,0.109,3 +0.38,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0071,0.0206,0.13,0.098,0.132,3 +0.62,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0034,0.013,0.134,0.119,0.113,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.016,0.101,0.089,0.114,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.02,0.081,0.101,0.081,2 +0.6,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0082,0.017,0.065,0.096,0.068,2 +0.44,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4e-05,0.0206,0.141,0.103,0.137,3 +0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.033,0.113,0.123,0.092,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.0206,0.063,0.097,0.065,3 +0.23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.01,0.115,0.092,0.125,3 +0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0033,0.022,0.109,0.107,0.101,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00021,0.009,0.122,0.104,0.117,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.015,0.103,0.107,0.096,3 +0.75,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00046,0.029,0.139,0.153,0.091,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.017,0.097,0.104,0.093,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.015,0.139,0.103,0.135,3 +0.87,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.016,0.134,0.079,0.17,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0206,0.069,0.076,0.091,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.022,0.096,0.103,0.093,3 +0.43,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.0206,0.171,0.098,0.174,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.016,0.118,0.101,0.117,3 +0.27,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00087,0.018,0.098,0.1,0.098,3 +0.25,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0015,0.027,0.12,0.131,0.091,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.029,0.158,0.103,0.154,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00091,0.024,0.124,0.104,0.118,3 +0.31,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0051,0.0206,0.093,0.097,0.095,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00081,0.023,0.109,0.116,0.093,3 +0.67,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.018,0.08,0.086,0.093,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.019,0.089,0.092,0.096,3 +0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00102,0.03,0.13,0.099,0.13103,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0013,0.023,0.097,0.109,0.088,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.022,0.107,0.095,0.113,3 +0.78,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.018,0.08,0.072,0.111,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.012,0.122,0.1,0.122,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.022,0.11,0.121,0.091,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.018,0.106,0.116,0.091,3 +0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0036,0.07,0.141,0.177,0.08,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0006,0.0208,0.148,0.119,0.124,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.025,0.118,0.099,0.11895,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.089,0.083,0.107,3 +0.57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023,0.213,0.109,0.195,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.026,0.109,0.104,0.103,2 +0.41,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.044,0.138,0.064,0.218,3 +0.5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.022,0.095,0.11,0.086,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00879,0.027,0.108,0.111,0.097,2 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.014,0.041,0.114,0.036,1 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.072,0.092,0.078,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0056,0.022,0.099,0.102,0.097,3 +0.22,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.023,0.111,0.102,0.108,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.094,0.089,0.105,3 +0.34,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0.00829,0.031,0.172,0.18,0.096,3 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.21,0.111,0.188,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0015,0.0208,0.13,0.104,0.124,3 +0.27,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0.00208,0.0208,0.114,0.11,0.104,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.018,0.094,0.094,0.1,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.022,0.116,0.104,0.111,3 +0.52,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.018,0.086,0.086,0.101,3 +0.65,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00047,0.023,0.113,0.091,0.124,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.025,0.102,0.116,0.087,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00044,0.0206,0.145,0.108,0.135,3 +0.55,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.161,0.09,0.18,3 +0.79,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.151,0.074,0.203,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0208,0.1,0.095,0.106,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.025,0.109,0.111,0.098,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.036,0.139,0.153,0.091,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.022,0.09,0.116,0.078,3 +0.83,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0208,0.09,0.088,0.102,3 +0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0018,0.024,0.1,0.102,0.098,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.131,0.107,0.122,3 +0.14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00078,0.022,0.078,0.088,0.089,3 +0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.014,0.095,0.111,0.086,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00083,0.0206,0.193,0.133,0.144,3 +0.22,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00056,0.027,0.179,0.125,0.143,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.024,0.112,0.101,0.111,3 +0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00208,0.033,0.14,0.165,0.086,3 +0.46,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2e-05,0.027,0.107,0.077,0.139,3 +0.74,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0015,0.0208,0.07,0.074,0.094,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.013,0.084,0.091,0.097,3 +0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0022,0.02,0.099,0.096,0.103,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.022,0.057,0.092,0.063,3 +0.72,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0.006,0.024,0.118,0.126,0.094,3 +0.68,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.042,0.002,0.018,0.109,0.016,1 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.08,0.098,0.082,3 +0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.019,0.083,0.074,0.112,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.025,0.106,0.097,0.11,3 +0.61,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00099,0.015,0.063,0.056,0.113,3 +0.61,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0079,0.029,0.116,0.102,0.114,2 +0.71,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.025,0.003,0.031,0.068,0.046,1 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.027,0.089,0.091,0.099,3 +0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0.0013,0.026,0.135,0.109,0.124,3 +0.32,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00045,0.025,0.1,0.116,0.086,3 +0.47,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.00469,0.024,0.102,0.112,0.092,3 +0.72,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.02,0.164,0.099,0.16532,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.022,0.143,0.092,0.154,3 +0.61,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0018,0.023,0.089,0.085,0.105,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.022,0.1,0.093,0.108,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.025,0.163,0.111,0.148,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.02,0.13,0.093,0.139,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.133,0.108,0.123,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.038,0.157,0.152,0.103,3 +0.54,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1e-05,0.036,0.142,0.123,0.115,3 +0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.02,0.087,0.073,0.118,3 +0.49,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0049,0.007,0.082,0.079,0.104,3 +0.34,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,3e-05,0.0419,0.134,0.165,0.081,3 +0.68,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.015,0.11,0.089,0.124,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.035,0.11118,0.099,0.11207,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.175,0.086,0.204,3 +0.24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0014,0.023,0.073,0.109,0.067,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00033,0.018,0.134,0.097,0.138,3 +0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0008,0.034,0.046,0.099,0.04637,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0045,0.02,0.139,0.086,0.161,3 +0.63,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3e-05,0.033,0.12,0.096,0.125,3 +0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0007,0.02,0.045,0.099,0.04536,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.02,0.096,0.104,0.092,3 +0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0012,0.0208,0.134,0.104,0.127,3 +0.71,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0032,0.018,0.086,0.081,0.106,3 +0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.019,0.126,0.09,0.141,3 +0.9,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.019,0.203,0.09,0.224,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0.004,0.017,0.114,0.015,1 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.013,0.084,0.082,0.102,2 +0.63,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.0206,0.162,0.099,0.163,3 +0.66,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.018,0.135,0.109,0.124,3 +0.66,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0.0012,0.023,0.133,0.116,0.113,3 +0.44,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0023,0.023,0.118,0.101,0.117,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00073,0.024,0.135,0.104,0.129,3 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00088,0.03,0.069,0.067,0.102,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0012,0.026,0.121,0.097,0.125,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.00063,0.026,0.16,0.12,0.134,3 +0.49,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.024,0.111,0.107,0.104,3 +0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.0208,0.183,0.102,0.179,3 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.089,0.002,0.01,0.113,0.009,1 +0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0076,0.017,0.128,0.108,0.118,2 +0.68,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0015,0.023,0.117,0.104,0.113,3 +0.71,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.038,0.004,0.037,0.074,0.05,1 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.006,0.082,0.046,0.179,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-05,0.012,0.098,0.083,0.118,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00061,0.016,0.116,0.091,0.127,3 +0.5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.076,0.005,0.022,0.112,0.019,3 +0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.016,0.063,0.084,0.075,2 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.0208,0.079,0.11,0.072,3 +0.64,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00024,0.0206,0.083,0.09,0.093,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00069,0.019,0.129,0.102,0.126,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.016,0.119,0.109,0.11,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0048,0.006,0.098,0.08,0.122,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0062,0.019,0.089,0.094,0.095,2 +0.63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0058,0.019,0.102,0.116,0.087,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00048,0.017,0.088,0.083,0.105,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.02,0.127,0.104,0.122,3 +0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.019,0.111,0.099,0.112,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.017,0.153,0.104,0.144,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.019,0.125,0.101,0.124,3 +0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.003,0.073,0.09,0.081,3 +0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.029,0.122,0.102,0.119,3 +0.48,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0024,0.02,0.066,0.074,0.089,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0208,0.096,0.085,0.112,3 +0.59,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0001,0.02,0.102,0.082,0.125,3 +0.61,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00038,0.0206,0.121,0.095,0.128,3 +0.44,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0.015,0.048,0.116,0.041,1 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.076,0.093,0.082,3 +0.16,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.019,0.112,0.126,0.089,3 +0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0054,0.013,0.073,0.072,0.101,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0045,0.011,0.132,0.101,0.131,3 +0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.015,0.088,0.104,0.083,2 +0.34,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00083,0.024,0.114,0.102,0.112,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00909,0.0174,0.101,0.112,0.09,2 +0.33,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.001,0.014,0.088,0.078,0.113,3 +0.76,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0.0018,0.012,0.065,0.076,0.086,3 +0.67,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.002,0.025,0.133,0.119,0.112,3 +0.46,1,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0.0014,0.022,0.122,0.103,0.119,3 +0.55,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.107,0.099,0.107,3 +0.54,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0009,0.0206,0.113,0.09,0.125,3 +0.75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.074,0.104,0.07,3 +0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.013,0.118,0.112,0.105,3 +0.34,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.019,0.039,0.146,0.116,0.125,2 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.018,0.18,0.082,0.219,3 +0.18,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0011,0.0206,0.147,0.095,0.154,3 +0.41,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.017,0.119,0.099,0.12,3 +0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.095,0.108,0.088,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.072,0.075,0.096,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.002,0.0206,0.114,0.089,0.129,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0046,0.012,0.048,0.089,0.054,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0037,0.016,0.076,0.081,0.095,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.00082,0.0208,0.124,0.103,0.121,3 +0.5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00067,0.026,0.085,0.089,0.096,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0011,0.038,0.161,0.174,0.093,3 +0.42,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.011,0.093,0.078,0.119,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0023,0.009,0.105,0.061,0.173,3 +0.58,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0011,0.023,0.06,0.089,0.068,3 +0.29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.015,0.0206,0.113,0.113,0.1,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.012,0.084,0.067,0.125,3 +0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.01,0.077,0.086,0.09,3 +0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0016,0.0206,0.067,0.071,0.095,3 +0.37,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.018,0.109,0.097,0.112,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.003,0.013,0.099,0.013,1 +0.57,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0026,0.007,0.115,0.099,0.11592,3 +0.59,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0055,0.007,0.077,0.074,0.104,3 +0.73,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.0206,0.102,0.089,0.115,3 +0.47,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0034,0.022,0.102,0.102,0.101,3 +0.21,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.132,0.087,0.152,3 +0.34,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.166,0.096,0.174,3 +0.31,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0.005,0.0206,0.141,0.109,0.13,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0206,0.103,0.065,0.158,3 +0.26,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.02,0.111,0.08,0.138,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.039,0.141,0.112,0.126,3 +0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.51,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.022,0.095,0.096,0.1,3 +0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0041,0.0206,0.085,0.092,0.092,3 +0.46,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0006,0.0206,0.098,0.094,0.104,3 +0.76,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0206,0.143,0.076,0.189,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0017,0.02,0.102,0.096,0.106,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.004,0.102,0.1,0.10189,2 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.07,0.09,0.078,3 +0.47,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.073,0.079,0.092,3 +0.58,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.016,0.071,0.082,0.086,3 +0.25,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0029,0.0206,0.088,0.087,0.1,3 +0.6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.071,0.184,0.103,0.177,3 +0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.119,0.112,0.106,3 +0.26,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00939,0.0174,0.07,0.095,0.074,2 +0.39,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.024,0.135,0.151,0.089,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.036,0.119,0.09,0.133,3 +0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00042,0.03,0.091,0.115,0.079,3 +0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.019,0.098,0.104,0.092,3 +0.4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0014,0.018,0.092,0.085,0.108,3 +0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0017,0.0206,0.117,0.121,0.097,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00096,0.0206,0.129,0.135,0.096,3 +0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.001,0.0206,0.103,0.101,0.102,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00027,0.016,0.104,0.078,0.134,3 +0.75,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4e-05,0.02,0.146,0.104,0.139,3 +0.25,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.0027,0.0206,0.073,0.097,0.076,3 +0.44,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.5,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1e-05,0.028,0.074,0.114,0.065,3 +0.53,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.024,0.104,0.081,0.128,3 +0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.085,0.079,0.108,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00098,0.0206,0.158,0.131,0.12,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00419,0.0206,0.078,0.077,0.102,3 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.0174,0.142,0.137,0.104,2 +0.18,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.091,0.098,0.093,3 +0.44,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0.0001,0.006,0.061,0.086,0.071,3 +0.28,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0031,0.027,0.1,0.093,0.108,3 +0.73,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0039,0.0208,0.13,0.111,0.116,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.107,0.115,0.092,3 +0.45,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.101,0.095,0.106,3 +0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00097,0.011,0.077,0.086,0.089,3 +0.45,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0.01,0.003,0.067,0.1,0.06693,2 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0026,0.019,0.115,0.102,0.114,3 +0.3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0.0027,0.0206,0.125,0.143,0.087,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0.139,0.071,0.196,3 +0.42,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0.008,0.028,0.086,0.033,1 +0.55,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.019,0.107,0.074,0.144,3 +0.71,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.013,0.093,0.081,0.115,3 +0.45,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00189,0.013,0.11118,0.099,0.11207,3 +0.56,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.022,0.074,0.086,0.086,3 +0.42,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,6e-05,0.02,0.079,0.081,0.098,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00079,0.012,0.117,0.085,0.138,3 +0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.128,0.094,0.136,3 +0.73,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.007,0.063,0.088,0.072,3 +0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00058,0.0206,0.08,0.082,0.098,3 +0.57,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0.05,0.013,0.064,0.099,0.06451,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0008,0.0206,0.082,0.099,0.083,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.0206,0.161,0.133,0.121,3 +0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.105,0.104,0.101,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00034,0.014,0.123,0.096,0.128,3 +0.25,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0.0011,0.0206,0.101,0.107,0.094,3 +0.25,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0.014,0.0206,0.081,0.09,0.09,3 +0.71,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1e-05,0.0206,0.146,0.093,0.156,3 +0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.104,0.112,0.092,3 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0019,0.0206,0.096,0.087,0.11,3 +0.58,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0018,0.0206,0.063,0.086,0.073,3 +0.57,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.082,0.107,0.077,3 +0.35,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0039,0.0206,0.083,0.085,0.097,3 +0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.018,0.102,0.1,0.102,3 +0.35,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0208,0.071,0.11,0.064,3 +0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.11118,0.099,0.11207,3 +0.38,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.0206,0.081,0.086,0.094,3 +0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.006,0.094,0.099,0.09475,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0025,0.015,0.081,0.086,0.094,3 +0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.091,0.091,0.1,3 +0.45,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0.00208,0.0206,0.093,0.116,0.08,3 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0013,0.024,0.111,0.115,0.097,3 +0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0043,0.0206,0.114,0.104,0.108,3 +0.57,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.00208,0.0206,0.076,0.1,0.075,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00013,0.01,0.102,0.082,0.124,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.0206,0.084,0.095,0.088,3 +0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.023,0.104,0.103,0.101,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0048,0.0206,0.087,0.093,0.093,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0.032,0.106,0.087,0.122,3 +0.39,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0016,0.012,0.095,0.093,0.102,3 +0.45,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6e-05,0.046,0.21,0.111,0.19,3 +0.45,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0.00044,0.028,0.153,0.091,0.168,3 +0.54,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0014,0.0206,0.098,0.101,0.097,3 +0.46,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5e-05,0.022,0.097,0.077,0.125,3 +0.33,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0015,0.0208,0.104,0.085,0.122,3 +0.7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0027,0.0206,0.155,0.104,0.148,3 +0.07,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0024,0.0206,0.155,0.094,0.165,3 +0.38,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,6e-05,0.018,0.139,0.099,0.14012,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0031,0.016,0.086,0.104,0.083,3 +0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0174,0.087,0.085,0.103,2 +0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0055,0.0208,0.082,0.092,0.089,3 +0.58,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0026,0.0206,0.164,0.11,0.149,3 +0.49,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0.007,0.072,0.095,0.076,3 +0.82,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0066,0.016,0.092,0.1,0.091,2 +0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00073,0.0206,0.194,0.097,0.2,3 +0.33,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.00016,0.052,0.183,0.083,0.22,3 +0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4e-05,0.0208,0.159,0.101,0.157,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0028,0.0206,0.11118,0.099,0.11207,3 +0.55,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0208,0.11118,0.099,0.11207,3 +0.72,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.114,0.111,0.102,3 +0.77,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0035,0.0206,0.114,0.1,0.115,3 +0.62,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.017,0.096,0.099,0.09677,3 +0.53,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,5e-05,0.022,0.089,0.083,0.107,3 +0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.123,0.091,0.136,3 +0.76,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.077,0.067,0.115,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.098,0.099,0.09879,3 +0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.0011,0.022,0.145,0.123,0.118,3 +0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.003,0.0206,0.096,0.082,0.118,3 +0.68,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.0019,0.0206,0.093,0.086,0.108,3 +0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0034,0.0206,0.104,0.094,0.112,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0052,0.0206,0.095,0.111,0.085,3 +0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0018,0.017,0.118,0.11,0.107,3 +0.54,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00075,0.023,0.109,0.114,0.095,3 +0.43,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0.0017,0.0206,0.104,0.091,0.115,3 +0.16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.025,0.071,0.08,0.088,3 +0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0097,0.0174,0.098,0.13,0.076,2 +0.16,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0062,0.0174,0.108,0.114,0.094,2 +0.45,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0.0206,0.132,0.09,0.147,3 +0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0014,0.0206,0.108,0.115,0.094,3 +0.36,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00074,0.015,0.072,0.05,0.145,3 +0.6,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.014,0.057,0.062,0.092,3 +0.37,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00208,0.024,0.177,0.146,0.122,3 +0.26,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,8e-05,0.017,0.174,0.123,0.142,3 +0.3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-05,0.019,0.147,0.103,0.143,3 +0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0.0033,0.0208,0.107,0.107,0.1,3 +0.59,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-05,0.02,0.113,0.086,0.131,3 +0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.005,0.0206,0.101,0.088,0.115,3 +0.65,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00047,0.008,0.154,0.075,0.204,3 +0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6e-05,0.0206,0.125,0.107,0.117,3 +0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.0013,0.025,0.125,0.114,0.109,3 +0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.0174,0.123,0.099,0.124,2 +0.64,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00078,0.0206,0.106,0.088,0.121,3 +0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.00189,0.0206,0.093,0.091,0.102,3 diff --git a/src/mlpack/tests/feedforward_network_test.cpp b/src/mlpack/tests/feedforward_network_test.cpp index 60f325aa13..0d691737ea 100644 --- a/src/mlpack/tests/feedforward_network_test.cpp +++ b/src/mlpack/tests/feedforward_network_test.cpp @@ -104,35 +104,17 @@ void BuildVanillaNetwork(MatType& trainData, BOOST_AUTO_TEST_CASE(VanillaNetworkTest) { // Load the dataset. - arma::mat dataset; - data::Load("thyroid_train.csv", dataset, true); + arma::mat trainData; + data::Load("thyroid_train.csv", trainData, true); - arma::mat trainData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); + arma::mat trainLabels = trainData.row(trainData.n_rows - 1); + trainData.shed_row(trainData.n_rows - 1); - arma::mat trainLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - arma::mat trainLabels = arma::zeros(1, trainLabelsTemp.n_cols); - for (size_t i = 0; i < trainLabelsTemp.n_cols; ++i) - { - trainLabels(i) = arma::as_scalar(arma::find( - arma::max(trainLabelsTemp.col(i)) == trainLabelsTemp.col(i), 1)) + 1; - } + arma::mat testData; + data::Load("thyroid_test.csv", testData, true); - data::Load("thyroid_test.csv", dataset, true); - - arma::mat testData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); - - arma::mat testLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - - arma::mat testLabels = arma::zeros(1, testLabelsTemp.n_cols); - for (size_t i = 0; i < testLabels.n_cols; ++i) - { - testLabels(i) = arma::as_scalar(arma::find( - arma::max(testLabelsTemp.col(i)) == testLabelsTemp.col(i), 1)) + 1; - } + arma::mat testLabels = testData.row(testData.n_rows - 1); + testData.shed_row(testData.n_rows - 1); // Vanilla neural net with logistic activation function. // Because 92 percent of the patients are not hyperthyroid the neural @@ -140,6 +122,7 @@ BOOST_AUTO_TEST_CASE(VanillaNetworkTest) BuildVanillaNetwork<> (trainData, trainLabels, testData, testLabels, 3, 8, 10, 0.1); + arma::mat dataset; dataset.load("mnist_first250_training_4s_and_9s.arm"); // Normalize each point since these are images. @@ -307,35 +290,17 @@ void BuildDropoutNetwork(MatType& trainData, BOOST_AUTO_TEST_CASE(DropoutNetworkTest) { // Load the dataset. - arma::mat dataset; - data::Load("thyroid_train.csv", dataset, true); + arma::mat trainData; + data::Load("thyroid_train.csv", trainData, true); - arma::mat trainData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); + arma::mat trainLabels = trainData.row(trainData.n_rows - 1); + trainData.shed_row(trainData.n_rows - 1); - arma::mat trainLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - arma::mat trainLabels = arma::zeros(1, trainLabelsTemp.n_cols); - for (size_t i = 0; i < trainLabelsTemp.n_cols; ++i) - { - trainLabels(i) = arma::as_scalar(arma::find( - arma::max(trainLabelsTemp.col(i)) == trainLabelsTemp.col(i), 1)) + 1; - } + arma::mat testData; + data::Load("thyroid_test.csv", testData, true); - data::Load("thyroid_test.csv", dataset, true); - - arma::mat testData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); - - arma::mat testLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - - arma::mat testLabels = arma::zeros(1, testLabelsTemp.n_cols); - for (size_t i = 0; i < testLabels.n_cols; ++i) - { - testLabels(i) = arma::as_scalar(arma::find( - arma::max(testLabelsTemp.col(i)) == testLabelsTemp.col(i), 1)) + 1; - } + arma::mat testLabels = testData.row(testData.n_rows - 1); + testData.shed_row(testData.n_rows - 1); // Vanilla neural net with logistic activation function. // Because 92 percent of the patients are not hyperthyroid the neural @@ -343,6 +308,7 @@ BOOST_AUTO_TEST_CASE(DropoutNetworkTest) BuildDropoutNetwork<> (trainData, trainLabels, testData, testLabels, 3, 8, 10, 0.1); + arma::mat dataset; dataset.load("mnist_first250_training_4s_and_9s.arm"); // Normalize each point since these are images. @@ -436,35 +402,17 @@ void BuildDropConnectNetwork(MatType& trainData, BOOST_AUTO_TEST_CASE(DropConnectNetworkTest) { // Load the dataset. - arma::mat dataset; - data::Load("thyroid_train.csv", dataset, true); + arma::mat trainData; + data::Load("thyroid_train.csv", trainData, true); - arma::mat trainData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); + arma::mat trainLabels = trainData.row(trainData.n_rows - 1); + trainData.shed_row(trainData.n_rows - 1); - arma::mat trainLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - arma::mat trainLabels = arma::zeros(1, trainLabelsTemp.n_cols); - for (size_t i = 0; i < trainLabelsTemp.n_cols; ++i) - { - trainLabels(i) = arma::as_scalar(arma::find( - arma::max(trainLabelsTemp.col(i)) == trainLabelsTemp.col(i), 1)) + 1; - } + arma::mat testData; + data::Load("thyroid_test.csv", testData, true); - data::Load("thyroid_test.csv", dataset, true); - - arma::mat testData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); - - arma::mat testLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - - arma::mat testLabels = arma::zeros(1, testLabelsTemp.n_cols); - for (size_t i = 0; i < testLabels.n_cols; ++i) - { - testLabels(i) = arma::as_scalar(arma::find( - arma::max(testLabelsTemp.col(i)) == testLabelsTemp.col(i), 1)) + 1; - } + arma::mat testLabels = testData.row(testData.n_rows - 1); + testData.shed_row(testData.n_rows - 1); // Vanilla neural net with logistic activation function. // Because 92 percent of the patients are not hyperthyroid the neural @@ -472,6 +420,7 @@ BOOST_AUTO_TEST_CASE(DropConnectNetworkTest) BuildDropConnectNetwork<> (trainData, trainLabels, testData, testLabels, 3, 8, 10, 0.1); + arma::mat dataset; dataset.load("mnist_first250_training_4s_and_9s.arm"); // Normalize each point since these are images. @@ -509,35 +458,17 @@ BOOST_AUTO_TEST_CASE(FFNMiscTest) BOOST_AUTO_TEST_CASE(SerializationTest) { // Load the dataset. - arma::mat dataset; - data::Load("thyroid_train.csv", dataset, true); + arma::mat trainData; + data::Load("thyroid_train.csv", trainData, true); - arma::mat trainData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); + arma::mat trainLabels = trainData.row(trainData.n_rows - 1); + trainData.shed_row(trainData.n_rows - 1); - arma::mat trainLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - arma::mat trainLabels = arma::zeros(1, trainLabelsTemp.n_cols); - for (size_t i = 0; i < trainLabelsTemp.n_cols; ++i) - { - trainLabels(i) = arma::as_scalar(arma::find( - arma::max(trainLabelsTemp.col(i)) == trainLabelsTemp.col(i), 1)) + 1; - } + arma::mat testData; + data::Load("thyroid_test.csv", testData, true); - data::Load("thyroid_test.csv", dataset, true); - - arma::mat testData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); - - arma::mat testLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - - arma::mat testLabels = arma::zeros(1, testLabelsTemp.n_cols); - for (size_t i = 0; i < testLabels.n_cols; ++i) - { - testLabels(i) = arma::as_scalar(arma::find( - arma::max(testLabelsTemp.col(i)) == testLabelsTemp.col(i), 1)) + 1; - } + arma::mat testLabels = testData.row(testData.n_rows - 1); + testData.shed_row(testData.n_rows - 1); // Vanilla neural net with logistic activation function. // Because 92 percent of the patients are not hyperthyroid the neural @@ -576,35 +507,17 @@ BOOST_AUTO_TEST_CASE(SerializationTest) BOOST_AUTO_TEST_CASE(CustomLayerTest) { // Load the dataset. - arma::mat dataset; - data::Load("thyroid_train.csv", dataset, true); + arma::mat trainData; + data::Load("thyroid_train.csv", trainData, true); - arma::mat trainData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); + arma::mat trainLabels = trainData.row(trainData.n_rows - 1); + trainData.shed_row(trainData.n_rows - 1); - arma::mat trainLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - arma::mat trainLabels = arma::zeros(1, trainLabelsTemp.n_cols); - for (size_t i = 0; i < trainLabelsTemp.n_cols; ++i) - { - trainLabels(i) = arma::as_scalar(arma::find( - arma::max(trainLabelsTemp.col(i)) == trainLabelsTemp.col(i), 1)) + 1; - } + arma::mat testData; + data::Load("thyroid_test.csv", testData, true); - data::Load("thyroid_test.csv", dataset, true); - - arma::mat testData = dataset.submat(0, 0, dataset.n_rows - 4, - dataset.n_cols - 1); - - arma::mat testLabelsTemp = dataset.submat(dataset.n_rows - 3, 0, - dataset.n_rows - 1, dataset.n_cols - 1); - - arma::mat testLabels = arma::zeros(1, testLabelsTemp.n_cols); - for (size_t i = 0; i < testLabels.n_cols; ++i) - { - testLabels(i) = arma::as_scalar(arma::find( - arma::max(testLabelsTemp.col(i)) == testLabelsTemp.col(i), 1)) + 1; - } + arma::mat testLabels = testData.row(testData.n_rows - 1); + testData.shed_row(testData.n_rows - 1); FFN, RandomInitialization, CustomLayer<> > model; model.Add >(trainData.n_rows, 8); diff --git a/src/mlpack/tests/kernel_test.cpp b/src/mlpack/tests/kernel_test.cpp index cfe9361624..048e8eff6d 100644 --- a/src/mlpack/tests/kernel_test.cpp +++ b/src/mlpack/tests/kernel_test.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include #include @@ -608,4 +609,17 @@ BOOST_AUTO_TEST_CASE(PSpectrumStringEvaluateTest) BOOST_REQUIRE_CLOSE(p.Evaluate(b, a), 11.0, 1e-5); } +/** + * Cauchy Kernel test. + */ +BOOST_AUTO_TEST_CASE(CauchyKernelTest) +{ + arma::vec a = "0 0 1"; + arma::vec b = "0 1 0"; + + CauchyKernel ck(5.0); + BOOST_REQUIRE_CLOSE(ck.Evaluate(a, b), 0.92592588, 1e-5); + BOOST_REQUIRE_CLOSE(ck.Evaluate(b, a), 0.92592588, 1e-5); +} + BOOST_AUTO_TEST_SUITE_END(); diff --git a/src/mlpack/tests/kernel_traits_test.cpp b/src/mlpack/tests/kernel_traits_test.cpp index 81e4f0f149..5a312e0413 100644 --- a/src/mlpack/tests/kernel_traits_test.cpp +++ b/src/mlpack/tests/kernel_traits_test.cpp @@ -52,6 +52,7 @@ BOOST_AUTO_TEST_CASE(IsNormalizedTest) BOOST_REQUIRE_EQUAL((bool) KernelTraits::IsNormalized, true); BOOST_REQUIRE_EQUAL((bool) KernelTraits::IsNormalized, true); + BOOST_REQUIRE_EQUAL((bool) KernelTraits::IsNormalized, true); // Unnormalized kernels. BOOST_REQUIRE_EQUAL((bool) KernelTraits::IsNormalized, false);