diff --git a/.gitignore b/.gitignore index f8a2123..a231d7f 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ cmake_build/* bin/ vcpkg_installed + +.venv diff --git a/.vscode/launch.json b/.vscode/launch.json index 620cc8d..4902ff7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "(gdb) Attach", "type": "cppdbg", "request": "attach", - "program": "/home/matt/github/mrcal-java/cmake_build/lib/libmrcal_jni.so", + "program": "${workspaceFolder}/cmake_build/lib/libmrcal_jni.so", "processId": "${command:pickProcess}", "MIMode": "gdb", "setupCommands": [ @@ -23,23 +23,11 @@ "name": "Python debug calibrate cameras", "type": "debugpy", "request": "launch", - "program": "/usr/bin/mrcal-calibrate-cameras", + "program": "mrcal-show-projection-uncertainty", "console": "integratedTerminal", - "cwd": "/home/matt/mrcal_debug_tmp/output_will/images-trimmed", + "cwd": "${workspaceFolder}/mrcal", "args": [ - "--corners-cache", - "corners.vnl", - "--lensmodel", - "LENSMODEL_OPENCV8", - "--focal", - "1200", - "--object-spacing", - "0.03", - "--object-width-n", - "18", - "--object-height-n", - "13", - "*.png" + "./camera-0.cameramodel", "--cbmax","10","--unset","key","--gridn","60","40" ], "justMyCode": false }, @@ -65,7 +53,8 @@ "text": "-gdb-set disassembly-flavor intel", "ignoreFailures": true } - ] + ], + "preLaunchTask": "build-test" }, { "name": "Python: Current File", diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..658b371 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,21 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build-test", + "command": "cmake --build cmake_build/", + "type": "shell", + "args": [], + "problemMatcher": [ + "$tsc" + ], + "presentation": { + "reveal": "always" + }, + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} diff --git a/CMakeLists.txt b/CMakeLists.txt index 0072bc7..139cb71 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ project(mrcal_jni LANGUAGES C CXX VERSION 1.0.0) option(BUILD_SHARED_LIBS "Build shared libraries" ON) # C++ -set(CMAKE_CXX_STANDARD 20) +set(CMAKE_CXX_STANDARD 23) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) @@ -14,16 +14,21 @@ if(WITH_ASAN) add_compile_options(-fsanitize=address -g -Wall -fsanitize=undefined) endif() +# Include FetchContent module for downloading dependencies +include(FetchContent) + +# OpenCV configuration # Keep this in sync with build.gradle and with # https://github.com/PhotonVision/photonvision/blob/main/build.gradle set(OPENCV_YEAR "frc2025") set(OPENCV_VERSION "4.10.0-3") +set(WPIMATH_VERSION "2026.2.1") # type can be "", "debug", "static", or "staticdebug" set(OPENCV_TYPE "") -# Download opencv, and save the path -include(FetchContent) +message(STATUS "Using FRC OpenCV for architecture: ${OPENCV_ARCH}") + FetchContent_Declare( opencv_lib URL @@ -39,7 +44,6 @@ FetchContent_Declare( ) FetchContent_MakeAvailable(opencv_header) -# This probably doesn't work great with shared libraries, but I don't care about those right now file( GLOB_RECURSE OPENCV_LIB_PATH "${opencv_lib_SOURCE_DIR}/**/*.lib" @@ -47,7 +51,17 @@ file( "${opencv_lib_SOURCE_DIR}/**/*.*.dylib" ) set(OPENCV_INCLUDE_PATH ${opencv_header_SOURCE_DIR}) -message("Depending on opencv ${OPENCV_LIB_PATH}") +set(OPENCV_LIBRARIES ${OPENCV_LIB_PATH}) +message(STATUS "Using FRC OpenCV libraries: ${OPENCV_LIB_PATH}") + +# Also download wpimath +FetchContent_Declare( + wpimath_header + URL + https://frcmaven.wpi.edu/artifactory/release/edu/wpi/first/wpimath/wpimath-cpp/${WPIMATH_VERSION}/wpimath-cpp-${WPIMATH_VERSION}-headers.zip +) +FetchContent_MakeAvailable(wpimath_header) +set(WPIMATH_INCLUDE_PATH ${wpimath_header_SOURCE_DIR}) # Openblas/suitesparse/friends # From https://github.com/wpilibsuite/thirdparty-ceres/blob/main/CMakeLists.txt @@ -136,6 +150,7 @@ set(SRC_HPP) set(SRC_CPP src/mrcal_jni.h src/mrcal_wrapper.cpp + src/mrcal-uncertainty.cpp src/mrcal_jni.cpp libdogleg/dogleg.c mrcal/mrcal.c @@ -173,17 +188,23 @@ add_library(mrcal_jni SHARED ${INCLUDE_HPP} ${SRC_HPP} ${SRC_CPP}) target_include_directories( mrcal_jni SYSTEM - PUBLIC ${JNI_INCLUDE_DIRS} ${OPENCV_INCLUDE_PATH} mrcal libdogleg + PUBLIC + ${JNI_INCLUDE_DIRS} + ${OPENCV_INCLUDE_PATH} + mrcal + libdogleg + ${WPIMATH_INCLUDE_PATH} ) add_dependencies(mrcal_jni generate_minimath) target_link_libraries( mrcal_jni - ${OPENCV_LIB_PATH} - SuiteSparse::CHOLMOD_static - SuiteSparse::SuiteSparseConfig_static - ${OPENBLAS_TARGET} - lapack + PUBLIC + ${OPENCV_LIBRARIES} + SuiteSparse::CHOLMOD_static + SuiteSparse::SuiteSparseConfig_static + ${OPENBLAS_TARGET} + lapack ) # vnlog for the test script @@ -192,15 +213,18 @@ add_library(vnlog STATIC ${VNLOG_SRC_CPP}) target_include_directories(vnlog SYSTEM PUBLIC ${PROJECT_SOURCE_DIR}/vnlog) # Test script for checking our linker + add_executable(mrcal_jni_test src/mrcal_test.cpp) + target_link_libraries(mrcal_jni_test PUBLIC mrcal_jni) + target_include_directories( mrcal_jni_test SYSTEM PRIVATE ${PROJECT_SOURCE_DIR}/vnlog ) add_dependencies(mrcal_jni_test mrcal_jni vnlog) -target_link_libraries(mrcal_jni_test PRIVATE ${OpenCV_LIBS} vnlog) +target_link_libraries(mrcal_jni_test PRIVATE ${OPENCV_LIBRARIES} vnlog) if(WITH_ASAN) target_link_libraries( diff --git a/README.md b/README.md index d60c1d9..a85ffa9 100644 --- a/README.md +++ b/README.md @@ -19,3 +19,9 @@ cpan -i List::MoreUtils cmake -B build -DOPENCV_ARCH=osxuniversal -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" cmake --build build ``` + +# Uncertainty testing + +I configure with `cmake -B cmake_build`, build with `cmake --build cmake_build` and run with `time ./cmake_build/bin/mrcal_jni_test > /dev/null` + +I benchmark with `perf record -F 99 -g ./cmake_build/bin/mrcal_jni_test` diff --git a/build.gradle b/build.gradle index 151fe7f..aac22e2 100644 --- a/build.gradle +++ b/build.gradle @@ -32,12 +32,12 @@ dependencies { implementation wpilibTools.deps.wpilibOpenCvJava("frc2025", "4.10.0-3") // Junit - testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.8.2") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2") + testImplementation 'org.junit.jupiter:junit-jupiter:5.7.1' + testRuntimeOnly 'org.junit.platform:junit-platform-launcher' implementation wpilibTools.deps.wpilibJava("wpimath") implementation wpilibTools.deps.wpilibJava("wpiunits") + implementation wpilibTools.deps.wpilibJava("wpiutil") implementation "com.fasterxml.jackson.core:jackson-annotations:2.15.2" } @@ -57,6 +57,41 @@ test { useJUnitPlatform() } +spotless { + java { + target fileTree('.') { + include '**/*.java' + exclude '**/build/**', '**/build-*/**', '**/src/generated/**', "**/cmake_build/**" + } + toggleOffOn() + googleJavaFormat() + indentWithTabs(2) + indentWithSpaces(4) + removeUnusedImports() + trimTrailingWhitespace() + endWithNewline() + } + groovyGradle { + target fileTree('.') { + include '**/*.gradle' + exclude '**/build/**', '**/build-*/**', "**/cmake_build/**" + } + greclipse() + indentWithSpaces(4) + trimTrailingWhitespace() + endWithNewline() + } + format 'misc', { + target fileTree('.') { + include '**/*.md', '**/.gitignore' + exclude '**/build/**', '**/build-*/**', '**/node_modules/**', "**/cmake_build/**" + } + trimTrailingWhitespace() + indentWithSpaces(2) + endWithNewline() + } +} + def nativeName = wpilibTools.platformMapper.platformPath ext.outputsFolder = file("$buildDir/outputs") @@ -74,4 +109,14 @@ tasks.register('copyNativeLibrary', Sync) { publish.dependsOn it } +tasks.named('test', Test) { + useJUnitPlatform() + + maxHeapSize = '1G' + + testLogging { + events "passed" + } +} + apply from: "publish.gradle" diff --git a/heatmap-gen.py b/heatmap-gen.py new file mode 100644 index 0000000..83f40dd --- /dev/null +++ b/heatmap-gen.py @@ -0,0 +1,32 @@ +import math + +import matplotlib.pyplot as plt +import numpy as np + +# Load CSV-like data +data = np.loadtxt("out", delimiter=",") + +x = data[:, 0] +y = data[:, 1] +z = data[:, 2] + +plt.figure() +plt.title("Projection Uncertainty (in pixels), looking out to infinity") + +print(f"Mean={np.mean(z)}") + +# Create contour plot with 1px increments +levels = np.arange(0, math.ceil(np.max(z)), 0.1) # 0, 1, 2, ..., 10 +contour = plt.tricontour(x, y, z, levels=levels, colors="black", linewidths=0.5) +contourf = plt.tricontourf(x, y, z, levels=levels, cmap="viridis") +plt.clabel(contour, inline=True, fontsize=8, fmt="%0.1f px") +plt.colorbar(contourf, label="Uncertainty (px)") + +plt.xlabel("x") +plt.ylabel("y") +plt.gca().invert_yaxis() +plt.axis("equal") +plt.tight_layout() + +# plt.show() +plt.savefig("heatmap.svg") diff --git a/src/main/java/org/photonvision/mrcal/MrCalJNI.java b/src/main/java/org/photonvision/mrcal/MrCalJNI.java index 96f9c6b..16dcf40 100644 --- a/src/main/java/org/photonvision/mrcal/MrCalJNI.java +++ b/src/main/java/org/photonvision/mrcal/MrCalJNI.java @@ -17,19 +17,24 @@ package org.photonvision.mrcal; +import edu.wpi.first.math.VecBuilder; +import edu.wpi.first.math.geometry.Pose3d; +import edu.wpi.first.math.geometry.Rotation3d; +import edu.wpi.first.math.geometry.Translation3d; import java.util.ArrayList; import java.util.Arrays; import java.util.List; - import org.opencv.core.MatOfFloat; import org.opencv.core.MatOfPoint2f; -import edu.wpi.first.math.VecBuilder; -import edu.wpi.first.math.geometry.Pose3d; -import edu.wpi.first.math.geometry.Rotation3d; -import edu.wpi.first.math.geometry.Translation3d; - public class MrCalJNI { + public static enum CameraLensModel { + LENSMODEL_OPENCV5, + LENSMODEL_OPENCV8, + LENSMODEL_STEREOGRAPHIC, + LENSMODEL_SPLINED_STEREOGRAPHIC; + } + public static class MrCalResult { public boolean success; public double[] intrinsics; @@ -46,9 +51,17 @@ public MrCalResult(boolean success) { } public MrCalResult( - boolean success, int width, int height, double[] intrinsics, double[] optimized_rt_rtoref, - double rms_error, double[] residuals, double warp_x, - double warp_y, int Noutliers, boolean[] cornerUseMask) { + boolean success, + int width, + int height, + double[] intrinsics, + double[] optimized_rt_rtoref, + double rms_error, + double[] residuals, + double warp_x, + double warp_y, + int Noutliers, + boolean[] cornerUseMask) { this.success = success; this.intrinsics = intrinsics; this.rms_error = rms_error; @@ -59,14 +72,15 @@ public MrCalResult( optimizedPoses = new ArrayList<>(); for (int i = 0; i < optimized_rt_rtoref.length; i += 6) { - var rot = new Rotation3d(VecBuilder.fill( - optimized_rt_rtoref[i + 0], - optimized_rt_rtoref[i + 1], - optimized_rt_rtoref[i + 2])); - var t = new Translation3d( - optimized_rt_rtoref[i + 3], - optimized_rt_rtoref[i + 4], - optimized_rt_rtoref[i + 5]); + var rot = + new Rotation3d( + VecBuilder.fill( + optimized_rt_rtoref[i + 0], + optimized_rt_rtoref[i + 1], + optimized_rt_rtoref[i + 2])); + var t = + new Translation3d( + optimized_rt_rtoref[i + 3], optimized_rt_rtoref[i + 4], optimized_rt_rtoref[i + 5]); optimizedPoses.add(new Pose3d(t, rot)); } @@ -78,33 +92,177 @@ public MrCalResult( } } + public double[] framePosesToRtToref() { + double[] ret = new double[optimizedPoses.size() * 6]; + + for (int i = 0; i < optimizedPoses.size(); i++) { + var pose = optimizedPoses.get(i); + var r = pose.getRotation().toVector(); + var t = pose.getTranslation().toVector(); + ret[i * 6 + 0] = r.get(0); + ret[i * 6 + 1] = r.get(1); + ret[i * 6 + 2] = r.get(2); + ret[i * 6 + 3] = t.get(0); + ret[i * 6 + 4] = t.get(1); + ret[i * 6 + 5] = t.get(2); + } + + return ret; + } + @Override public String toString() { - return "MrCalResult [success=" + success + ", intrinsics=" + Arrays.toString(intrinsics) + ", rms_error=" - + rms_error + ", warp_x=" + warp_x + ", warp_y=" - + warp_y + ", Noutliers=" + Noutliers + "]"; + return "MrCalResult [success=" + + success + + ", intrinsics=" + + Arrays.toString(intrinsics) + + ", rms_error=" + + rms_error + + ", warp_x=" + + warp_x + + ", warp_y=" + + warp_y + + ", Noutliers=" + + Noutliers + + "]"; } } + /** + * Performs camera calibration using [mrcal](https://mrcal.secretsauce.net/formulation.html) + * + * @param observations_board a packed double array containing all observations across all frames. + * The array is structured as a flattened list where each observation consists of 3 + * consecutive doubles: [x, y, level] for each corner of each board in each frame. Structure: + * For N frames, each observing a boardWidth×boardHeight checkerboard, the array has length N + * × boardWidth × boardHeight × 3. The level value (0-based) represents detection quality and + * will be converted to a weight using weight = 0.5^level. A negative level indicates the + * corner was not detected (will be marked as an outlier). + * @param boardWidth the number of internal corners in the horizontal direction of the calibration + * board + * @param boardHeight the number of internal corners in the vertical direction of the calibration + * board + * @param boardSpacing the physical distance (in arbitrary but consistent units) between adjacent + * corners on the calibration board. PhotonVision uses meters. + * @param imageWidth the width in pixels of the images used for calibration + * @param imageHeight the height in pixels of the images used for calibration + * @param focalLen an initial guess for the focal length in pixels, used to seed the optimization + * @return an {@link MrCalResult} object containing the calibration results, including optimized + * intrinsics, board poses, RMS error, per-observation residuals, detected outliers, and a + * boolean mask indicating which corners were actually used in the final optimization + */ public static native MrCalResult mrcal_calibrate_camera( double[] observations_board, - int boardWidth, int boardHeight, double boardSpacing, - int imageWidth, int imageHeight, double focalLen); + int boardWidth, + int boardHeight, + double boardSpacing, + int imageWidth, + int imageHeight, + double focalLen); - public static native boolean undistort_mrcal(long srcMat, long dstMat, long cameraMat, long distCoeffsMat, - int lensModelOrdinal, int order, int Nx, int Ny, int fov_x_deg); + /** + * Applies mrcal lens distortion correction to undistort pixel coordinates. + * + *

This method takes distorted pixel coordinates and applies the inverse of mrcal's lens + * distortion model to produce undistorted (corrected) coordinates. The input coordinates are + * unprojected through the specified lens model to 3D ray vectors, then reprojected through a + * pinhole model. + * + * @param dstMat a pointer to a cv::Mat containing distorted pixel coordinates (passed as a long + * representing the memory address). Must be a CV_64FC2 continuous matrix where each row + * contains one (x, y) coordinate pair. The matrix is modified in-place with the undistorted + * coordinates as output. + * @param cameraMat a pointer to the camera calibration matrix cv::Mat (3×3, opencv format). + * @param distCoeffsMat a pointer to the distortion coefficients cv::Mat. The interpretation of + * these coefficients depends on the specified lens model. + * @param lensModelOrdinal the ordinal value of the {@link CameraLensModel} enum indicating which + * lens distortion model to use for undistortion + * @param order the spline interpolation order to use when warping pixels, if the lensmodel is + * splined. Unused otherwise + * @param Nx the number of control points in the x-direction for the distortion spline model. + * Unused otherwise + * @param Ny the number of control points in the y-direction for the distortion spline model. + * Unused otherwise + * @param fov_x_deg the horizontal field of view in degrees used for certain lens model, if + * splined. Unused otherwise calculations + * @return true if the undistortion was successful, false otherwise + */ + public static native boolean undistort_mrcal( + long dstMat, + long cameraMat, + long distCoeffsMat, + int lensModelOrdinal, + int order, + int Nx, + int Ny, + int fov_x_deg); - public static MrCalResult calibrateCamera( + /** + * Computes projection uncertainty for camera calibration across a grid of image points. + * + *

This method evaluates the uncertainty in 3D point projection due to calibration error. It + * computes uncertainty at a regular grid of points across the image plane. + * + * @param observations_board a packed double array containing calibration observations with the + * same structure as used in {@link #mrcal_calibrate_camera}. For N frames observing a + * boardWidth×boardHeight checkerboard, the array has length N × boardWidth × boardHeight × 3, + * where each triplet is [x, y, level]. + * @param intrinsics a double array containing the camera intrinsic parameters. The exact content + * and length depend on the lens distortion model being used, but typically includes focal + * length, principal point, and distortion coefficients. + * @param rt_ref_frames a packed double array containing the poses (rotations and translations) of + * the calibration board relative to the camera for each frame. The array is structured as N + * consecutive 6-element groups, where each group represents one frame's pose: [rx, ry, rz, + * tx, ty, tz]. The rotation components (rx, ry, rz) form a rotation vector (axis-angle + * representation), and (tx, ty, tz) represent the translation. Total array length is N × 6, + * where N is the number of observed frames. + * @param boardWidth the number of internal corners in the horizontal direction of the calibration + * board + * @param boardHeight the number of internal corners in the vertical direction of the calibration + * board + * @param boardSpacing the physical distance between adjacent corners on the calibration board + * (must match the value used in calibration). PhotonVision uses meters. + * @param imageWidth the width in pixels of the camera imager at this particular VideoMode + * @param imageHeight the height in pixels of the camera imager at this particular VideoMode + * @param sampleGridWidth the number of sample points in the horizontal direction for uncertainty + * computation + * @param sampleGridHeight the number of sample points in the vertical direction for uncertainty + * computation + * @param warpX the x-component of lens distortion warp, or zero if no warp was estimated. + * @param warpY the y-component of lens distortion warp + * @return a packed double array containing uncertainty values at each sampled grid point. The + * array is structured as a sequence of 3D points (mrcal_point3_t), representing [u, v, + * uncertainty] for each point we sampled. Total array length is sampleGridWidth × + * sampleGridHeight × 3. Returns null if computation fails. + */ + public static native double[] compute_uncertainty( + double[] observations_board, + double[] intrinsics, + double[] rt_ref_frames, + int boardWidth, + int boardHeight, + double boardSpacing, + int imageWidth, + int imageHeight, + int sampleGridWidth, + int sampleGridHeight, + double warpX, + double warpY); + + /** + * Convert a list of board-pixel-corners and detection levels for each snapshot of a chessboard + * boardWidth x boardHeight to a packed double[] suitable to pass to + * MrCalJni::mrcal_calibrate_camera. Levels will be converted to weights using weight = 0.5^level, + * as explained + * [here](https://github.com/dkogan/mrcal/blob/7cd9ac4c854a4b244a35f554c9ebd0464d59e9ff/mrcal-calibrate-cameras#L152) + */ + private static double[] makeObservations( List board_corners, List board_corner_levels, - int boardWidth, int boardHeight, double boardSpacing, - int imageWidth, int imageHeight, double focalLen) { + int boardWidth, + int boardHeight) { double[] observations = new double[boardWidth * boardHeight * 3 * board_corners.size()]; - if (!(board_corners.size() == board_corner_levels.size())) { - return new MrCalResult(false); - } - int i = 0; for (int b = 0; b < board_corners.size(); b++) { var board = board_corners.get(b); @@ -112,7 +270,7 @@ public static MrCalResult calibrateCamera( var corners = board.toArray(); if (!(corners.length == levels.length && corners.length == boardWidth * boardHeight)) { - return new MrCalResult(false); + return null; } // Assume that we're correct in terms of row/column major-ness (lol) @@ -128,11 +286,49 @@ public static MrCalResult calibrateCamera( } } - if (i * 3 != observations.length){ + if (i * 3 != observations.length) { + return null; + } + + return observations; + } + + /** + * High-level wrapper for camera calibration using mrcal. + * + *

Converts detected chessboard corners and their detection levels into a packed double array, + * then calls {@link #mrcal_calibrate_camera} to perform calibration. Each corner's detection + * level is converted to a weight (0.5^level), and negative levels indicate undetected corners. + * + * @param board_corners List of detected chessboard corners for each frame + * @param board_corner_levels List of detection levels for each corner in each frame. Point weight + * is calculated as weight = 0.5^level. Negative weight will ignore this observation + * @param boardWidth Number of internal corners horizontally + * @param boardHeight Number of internal corners vertically + * @param boardSpacing Physical spacing between corners (meters) + * @param imageWidth Image width in pixels + * @param imageHeight Image height in pixels + * @param focalLen Initial guess for focal length (pixels) + * @return Calibration result with optimized intrinsics, poses, and error metrics + */ + public static MrCalResult calibrateCamera( + List board_corners, + List board_corner_levels, + int boardWidth, + int boardHeight, + double boardSpacing, + int imageWidth, + int imageHeight, + double focalLen) { + + if (!(board_corners.size() == board_corner_levels.size())) { return new MrCalResult(false); } - return mrcal_calibrate_camera(observations, boardWidth, boardHeight, boardSpacing, imageWidth, imageHeight, - focalLen); + var observations = + makeObservations(board_corners, board_corner_levels, boardWidth, boardHeight); + + return mrcal_calibrate_camera( + observations, boardWidth, boardHeight, boardSpacing, imageWidth, imageHeight, focalLen); } } diff --git a/src/mrcal-uncertainty.cpp b/src/mrcal-uncertainty.cpp new file mode 100644 index 0000000..735a487 --- /dev/null +++ b/src/mrcal-uncertainty.cpp @@ -0,0 +1,567 @@ +/* + * Copyright (C) Photon Vision. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "mrcal-uncertainty.hpp" +#include +#include +#include +#include +#include + +using namespace cv; + +using EigenPoint2 = Eigen::Matrix; +using EigenPoint3 = Eigen::Matrix; + +// 10.5 seconds. definitely still CPU bound +// using SolverType = Eigen::CholmodSupernodalLLT>; + +// 10.5 seconds +using SolverType = + Eigen::SparseLU>; + +// 11 seconds +// using SolverType = Eigen::SimplicialLLT>; + +struct CalibrationUncertaintyContext { + std::unique_ptr solver; + Eigen::SparseMatrix + J_observations; // J matrix for board observations only + double observed_pixel_uncertainty; + int Nstate; + int Nmeasurements_boards; +}; + +// Helper to create CHOLMOD factorization from sparse Jt +cholmod_factor *create_factorization(cholmod_sparse *Jt, + cholmod_common *common) { + // Compute JtJ (which is Jt * Jt^T since Jt is already transposed) + cholmod_sparse *JtJ = cholmod_aat(Jt, nullptr, 0, 1, common); + if (!JtJ) { + throw std::runtime_error("cholmod_aat failed"); + } + + // Factorize JtJ + cholmod_factor *factorization = cholmod_analyze(JtJ, common); + if (!factorization) { + cholmod_free_sparse(&JtJ, common); + throw std::runtime_error("cholmod_analyze failed"); + } + + if (!cholmod_factorize(JtJ, factorization, common)) { + cholmod_free_factor(&factorization, common); + cholmod_free_sparse(&JtJ, common); + throw std::runtime_error("cholmod_factorize failed"); + } + + cholmod_free_sparse(&JtJ, common); + return factorization; +} + +inline double worst_direction_stdev(const Eigen::Matrix2d &cov) { + // Direct formula for 2x2: sqrt((a+c)/2 + sqrt((a-c)^2/4 + b^2)) + double a = cov(0, 0); + double b = cov(1, 0); + double c = cov(1, 1); + + return std::sqrt((a + c) / 2.0 + std::sqrt((a - c) * (a - c) / 4.0 + b * b)); +} + +Eigen::MatrixXd solve_xt_JtJ_bt( + cholmod_factor *factorization, + const Eigen::Matrix &bt, // shape (2, Nstate) + cholmod_common *common) { + int Nstate = bt.cols(); + int Nrhs = bt.rows(); + + if (factorization->n != static_cast(Nstate)) { + throw std::runtime_error("Dimension mismatch in solve"); + } + + // Transpose bt to column-major for CHOLMOD + Eigen::MatrixXd bt_col_major = bt.transpose(); // (Nstate, Nrhs) + + cholmod_dense b = {.nrow = static_cast(Nstate), + .ncol = static_cast(Nrhs), + .nzmax = static_cast(Nrhs * Nstate), + .d = static_cast(Nstate), + .x = bt_col_major.data(), + .z = nullptr, + .xtype = CHOLMOD_REAL, + .dtype = CHOLMOD_DOUBLE}; + + Eigen::MatrixXd result(Nstate, Nrhs); + cholmod_dense out = {.nrow = static_cast(Nstate), + .ncol = static_cast(Nrhs), + .nzmax = static_cast(Nrhs * Nstate), + .d = static_cast(Nstate), + .x = result.data(), + .z = nullptr, + .xtype = CHOLMOD_REAL, + .dtype = CHOLMOD_DOUBLE}; + + cholmod_dense *M = &out; + cholmod_dense *Y = nullptr; + cholmod_dense *E = nullptr; + + if (!cholmod_solve2(CHOLMOD_A, factorization, &b, nullptr, &M, nullptr, &Y, + &E, common)) { + throw std::runtime_error("cholmod_solve2 failed"); + } + + if (M != &out) { + throw std::runtime_error("cholmod_solve2 reallocated output"); + } + + return result; +} + +std::vector sample_imager(Size numSamples, Size imagerSize) { + std::vector samples; + samples.reserve(numSamples.width * numSamples.height); + + for (int j = 0; j < numSamples.height; j++) { + for (int i = 0; i < numSamples.width; i++) { + double x, y; + + // linspace formula: start + (stop - start) * i / (n - 1) + if (numSamples.width == 1) { + x = 0; + } else { + x = (imagerSize.width - 1) * i / (numSamples.width - 1.0); + } + + if (numSamples.height == 1) { + y = 0; + } else { + y = (imagerSize.height - 1) * j / (numSamples.height - 1.0); + } + + samples.push_back({.x = x, .y = y}); + } + } + return samples; +} + +// The derivative of q (pixel space location/s) wrt b (state vector) +// at some point this should be a matrix +Eigen::Matrix +_dq_db_projection_uncertainty(mrcal_point3_t pcam, mrcal_lensmodel_t lensmodel, + std::span rt_ref_frame, int Nstate, + int istate_frames0, + std::span intrinsics) { + // project with gradients + // model_analysis.py:1067 + mrcal_point2_t q{}; + Eigen::Matrix dq_dpcam; + std::vector dq_dintrinsics(2 * 1ull * intrinsics.size()); + bool ret = mrcal_project( + // out + &q, reinterpret_cast(dq_dpcam.data()), + dq_dintrinsics.data(), + // in + &pcam, 1, &lensmodel, intrinsics.data()); + + if (!ret) { + throw std::runtime_error("mrcal_project_with_gradients failed"); + } + + // number of boards + const size_t Nboards{rt_ref_frame.size()}; + + // p_ref = pcam rotated by r (always zero1) + Eigen::Matrix p_ref{pcam.x, pcam.y, pcam.z}; + + // prepare dq_db. Mrcal does this as a 40x60x2xNstate tensor, but we + // are only projecting one point + Eigen::Matrix dq_db(2, Nstate); + dq_db.setZero(); + + // set dq_db[0:num intrinsics] = [dq_dintrinsics] + Eigen::Map> + dq_dintrinsics_eigen(dq_dintrinsics.data(), 2, intrinsics.size()); + dq_db.leftCols(intrinsics.size()) = dq_dintrinsics_eigen; + + // determine dpcam_dr and dpcamp_dpref + Eigen::Matrix dpcam_dpref; // dxout/dxin + Eigen::Matrix dpcam_dr; // dx_out/dr + { + // HACK -- hard-coded to origin + Eigen::Matrix rt_cam_ref; + rt_cam_ref.setZero(); + + // output arrays + mrcal_point3_t rotated_p_ref; + + mrcal_rotate_point_r( + // out + rotated_p_ref.xyz, dpcam_dr.data(), dpcam_dpref.data(), + // in + rt_cam_ref.data(), p_ref.data()); + } + + // method is always mean-pcam + Eigen::Matrix dq_dpref = dq_dpcam * dpcam_dpref; + + // calculate p_frames + Eigen::Matrix p_frames(Nboards, + 3); + p_frames.setZero(); + { + // output arrays + + for (size_t pose = 0; pose < Nboards; pose++) { + mrcal_rotate_point_r_inverted( + // out + p_frames.row(pose).data(), NULL, NULL, + // in + rt_ref_frame[pose].r.xyz, p_ref.data()); + } + } + + // and rotate to yield dpref_dframes + std::vector> dpref_dframes; + dpref_dframes.resize(Nboards); + for (size_t pose = 0; pose < Nboards; pose++) { + mrcal_point3_t dummy; + mrcal_rotate_point_r( + // out + dummy.xyz, dpref_dframes[pose].data(), NULL, + // in + rt_ref_frame[pose].r.xyz, p_frames.row(pose).data()); + } + + // Calculate dq_dframes + std::vector> dq_dframes; + dq_dframes.resize(Nboards); + for (size_t pose = 0; pose < Nboards; pose++) { + dq_dframes[pose] = dq_dpref * dpref_dframes[pose]; + } + + // Populate dq_db_slice_frames + // Shape after mean and xchg: (2, 3) for at_infinity + // Each frame gets 3 DOF (translation only) + for (size_t frame = 0; frame < Nboards; frame++) { + int frame_start = istate_frames0 + frame * 6; + // Populate first 3 columns of each frame's 6 DOF block with the mean + dq_db.block(0, frame_start, 2, 3) = dq_dframes[frame] / Nboards; + } + + return dq_db; +} + +double _observed_pixel_uncertainty_from_inputs(std::vector &x, + int num_measurements_board, + int measurement_index_board) { + // Compute variance from residuals + double sum = 0.0, sum_sq = 0.0; + for (size_t i = measurement_index_board; + i < measurement_index_board + num_measurements_board; i++) { + double val = x[i]; + sum += val; + sum_sq += val * val; + } + double mean = sum / x.size(); + double variance = (sum_sq / x.size()) - (mean * mean); + + return std::sqrt(variance); +} + +CalibrationUncertaintyContext create_calibration_uncertainty_context( + mrcal_problem_selections_t &problem_selections, + mrcal_lensmodel_t &lensmodel, const std::span intrinsics, + const std::span rt_ref_frame, + const mrcal_observation_board_t *observations_board, + const mrcal_point3_t *observations_board_pool, int Nobservations_board, + int calibration_object_width_n, int calibration_object_height_n, + double calibration_object_spacing, cv::Size imagerSize, + mrcal_calobject_warp_t warp) { + int Nstate = + mrcal_num_states(1, 0, rt_ref_frame.size(), 0, 0, Nobservations_board, + problem_selections, &lensmodel); + + int Nmeasurements = mrcal_num_measurements( + Nobservations_board, 0, NULL, 0, calibration_object_width_n, + calibration_object_height_n, 1, 0, 6, 0, 0, problem_selections, + &lensmodel); + int Nmeasurements_boards = mrcal_num_measurements_boards( + Nobservations_board, calibration_object_width_n, + calibration_object_height_n); + int imeas0 = mrcal_measurement_index_boards(0, Nobservations_board, 0, + calibration_object_width_n, + calibration_object_height_n); + + // Allocate buffers for Jt sparse matrix + int N_j_nonzero = Nstate * Nmeasurements; // Upper bound, actual will be less + std::vector Jt_p(Nmeasurements + 1); + std::vector Jt_i(N_j_nonzero); + std::vector Jt_x(N_j_nonzero); + + cholmod_sparse Jt = {.nrow = static_cast(Nstate), + .ncol = static_cast(Nmeasurements), + .nzmax = static_cast(N_j_nonzero), + .p = Jt_p.data(), + .i = Jt_i.data(), + .nz = nullptr, + .x = Jt_x.data(), + .z = nullptr, + .stype = 0, + .itype = CHOLMOD_INT, + .xtype = CHOLMOD_REAL, + .dtype = CHOLMOD_DOUBLE, + .sorted = 1, + .packed = 1}; + + std::vector b_packed(Nstate); + std::vector x(Nmeasurements); + + double point_min_range = -1.0, point_max_range = -1.0; + mrcal_problem_constants_t problem_constants = { + .point_min_range = point_min_range, .point_max_range = point_max_range}; + + int imagersize[2]{imagerSize.width, imagerSize.height}; + + bool ret = mrcal_optimizer_callback( + b_packed.data(), b_packed.size() * sizeof(double), // out + x.data(), x.size() * sizeof(double), // out + &Jt, // Get the Jacobian + // IN parameters + intrinsics.data(), + nullptr, // no extrinsics + rt_ref_frame.data(), + nullptr, // no points + &warp, 1, 0, static_cast(rt_ref_frame.size()), 0, 0, + observations_board, nullptr, Nobservations_board, 0, nullptr, 0, + observations_board_pool, nullptr, &lensmodel, imagersize, + problem_selections, &problem_constants, calibration_object_spacing, + calibration_object_width_n, calibration_object_height_n, false); + + if (!ret) { + throw std::runtime_error("mrcal_optimizer_callback failed"); + } + + double observed_pixel_uncertainty = + _observed_pixel_uncertainty_from_inputs(x, Nmeasurements_boards, imeas0); + + // Convert CHOLMOD sparse Jt to Eigen sparse matrix + using SpMat = Eigen::SparseMatrix; + SpMat Jt_eigen(Nstate, Nmeasurements); + + { + std::vector> triplets; + triplets.reserve(N_j_nonzero); + + for (int col = 0; col < Nmeasurements; col++) { + for (int p = Jt_p[col]; p < Jt_p[col + 1]; p++) { + int row = Jt_i[p]; + double val = Jt_x[p]; + triplets.emplace_back(row, col, val); + } + } + + Jt_eigen.setFromTriplets(triplets.begin(), triplets.end()); + } + + // J = Jt^T has shape (Nmeasurements, Nstate) + SpMat J = Jt_eigen.transpose(); + + // Compute JtJ = Jt * J (shape Nstate x Nstate) + SpMat JtJ = Jt_eigen * J; + + // check positive definite happens for free during compute/info + + // Pre-compute the factorization + auto solver = std::make_unique(); + solver->compute(JtJ); + + if (solver->info() != Eigen::Success) { + throw std::runtime_error("Eigen factorization failed"); + } + + // Store the observation rows of J for fast uncertainty propagation + SpMat J_observations = J.topRows(Nmeasurements_boards); + + return CalibrationUncertaintyContext{ + .solver = std::move(solver), + .J_observations = std::move(J_observations), + .observed_pixel_uncertainty = observed_pixel_uncertainty, + .Nstate = Nstate, + .Nmeasurements_boards = Nmeasurements_boards}; +} + +double _propagate_calibration_uncertainty_fast( + const CalibrationUncertaintyContext &context, + Eigen::Matrix dF_dbunpacked, + mrcal_problem_selections_t &problem_selections, + mrcal_lensmodel_t &lensmodel, const std::span intrinsics, + const std::span rt_ref_frame, int Nobservations_board) { + // Pack the gradient + Eigen::Matrix dF_dbpacked = + dF_dbunpacked; + + // called for each Nstate elements of dF_dbunpacked + for (int i = 0; i < dF_dbunpacked.rows(); i++) { + size_t offset = i * dF_dbunpacked.cols(); + mrcal_unpack_solver_state_vector( + dF_dbpacked.data() + offset, 1, 0, rt_ref_frame.size(), 0, 0, + Nobservations_board, problem_selections, &lensmodel); + } + + // Solve JtJ * A = dF_dbpacked^T using pre-computed factorization + Eigen::MatrixXd rhs = dF_dbpacked.transpose(); // (Nstate, 2) + Eigen::MatrixXd A = context.solver->solve(rhs); // (Nstate, 2) + + if (context.solver->info() != Eigen::Success) { + throw std::runtime_error("Eigen solve failed"); + } + + // Compute J_obs * A using the stored observation Jacobian + Eigen::MatrixXd JA = context.J_observations * A; // (Nmeas_obs, 2) + + // Compute Var(F) = JA^T * JA + Eigen::Matrix2d Var_dF = JA.transpose() * JA; + + return worst_direction_stdev(Var_dF) * context.observed_pixel_uncertainty; +} + +double projection_uncertainty_fast(const CalibrationUncertaintyContext &context, + mrcal_point3_t pcam, + mrcal_lensmodel_t lensmodel, + std::span rt_ref_frames, + std::span intrinsics) { + // Prepare inputs + mrcal_problem_selections_t problem_selections{0}; + problem_selections.do_optimize_intrinsics_core = true; + problem_selections.do_optimize_intrinsics_distortions = true; + problem_selections.do_optimize_extrinsics = true; + problem_selections.do_optimize_frames = true; + problem_selections.do_optimize_calobject_warp = true; + problem_selections.do_apply_regularization = true; + problem_selections.do_apply_outlier_rejection = true; + problem_selections.do_apply_regularization_unity_cam01 = false; + + int istate_frames0 = mrcal_state_index_frames(0, 1, 0, 6, 0, 0, 6, + problem_selections, &lensmodel); + + int Nobservations_board = rt_ref_frames.size(); + + auto dq_db{_dq_db_projection_uncertainty(pcam, lensmodel, rt_ref_frames, + context.Nstate, istate_frames0, + intrinsics)}; + + return _propagate_calibration_uncertainty_fast( + context, dq_db, problem_selections, lensmodel, intrinsics, rt_ref_frames, + Nobservations_board); +} + +std::vector compute_uncertainty( + std::span observations_board, std::span intrinsics, + std::span rt_ref_frames, mrcal_calobject_warp_t warp, + cv::Size imagerSize, cv::Size calobjectSize, double calobjectSpacing, + cv::Size sampleResolution) { + + mrcal_lensmodel_t lensmodel; + lensmodel.type = MRCAL_LENSMODEL_OPENCV8; + + // Create calibration uncertainty context once + mrcal_problem_selections_t problem_selections{0}; + problem_selections.do_optimize_intrinsics_core = true; + problem_selections.do_optimize_intrinsics_distortions = true; + problem_selections.do_optimize_extrinsics = true; + problem_selections.do_optimize_frames = true; + problem_selections.do_optimize_calobject_warp = true; + problem_selections.do_apply_regularization = true; + problem_selections.do_apply_outlier_rejection = true; + problem_selections.do_apply_regularization_unity_cam01 = false; + + std::vector indices_frame_camintrinsics_camextrinsics; + for (int i = 0; i < rt_ref_frames.size(); i++) { + indices_frame_camintrinsics_camextrinsics.push_back( + {.x = static_cast(i), .y = 0, .z = -1}); + } + + std::vector observations_board_data( + rt_ref_frames.size()); + auto c_observations_board = observations_board_data.data(); + + for (int i_observation = 0; i_observation < rt_ref_frames.size(); + i_observation++) { + int32_t iframe = + indices_frame_camintrinsics_camextrinsics.at(i_observation).x; + int32_t icam_intrinsics = + indices_frame_camintrinsics_camextrinsics.at(i_observation).y; + int32_t icam_extrinsics = + indices_frame_camintrinsics_camextrinsics.at(i_observation).z; + + c_observations_board[i_observation].icam.intrinsics = icam_intrinsics; + c_observations_board[i_observation].icam.extrinsics = icam_extrinsics; + c_observations_board[i_observation].iframe = iframe; + } + + auto context = create_calibration_uncertainty_context( + problem_selections, lensmodel, intrinsics, rt_ref_frames, + c_observations_board, observations_board.data(), rt_ref_frames.size(), + calobjectSize.width, calobjectSize.height, calobjectSpacing, imagerSize, + warp); + + // generate grid of samples in (u, v) pixels + auto q = sample_imager(sampleResolution, imagerSize); + + // unproject + std::vector pcam; + pcam.resize(q.size()); + mrcal_unproject(pcam.data(), q.data(), q.size(), &lensmodel, + intrinsics.data()); + + // normalize, setting rows with any non-finite elements to zero + for (auto &p : pcam) { + double nrm = std::sqrt(p.x * p.x + p.y * p.y + p.z * p.z); + if (std::isfinite(nrm) && nrm > 0) { + p.x /= nrm; + p.y /= nrm; + p.z /= nrm; + } else { + p.x = 0; + p.y = 0; + p.z = 0; + } + } + + std::vector ret; + ret.reserve(pcam.size()); + + // iterate over pcam and q simultaneously - now much faster! + for (size_t i = 0; i < pcam.size(); i++) { + auto &pi = pcam[i]; + auto &qi = q[i]; + + auto start = std::chrono::high_resolution_clock::now(); + + double uncertainty = projection_uncertainty_fast(context, pi, lensmodel, + rt_ref_frames, intrinsics); + + auto end = std::chrono::high_resolution_clock::now(); + auto duration = + std::chrono::duration_cast(end - start); + + ret.push_back(mrcal_point3_t{qi.x, qi.y, uncertainty}); + } + + return ret; +} diff --git a/src/mrcal-uncertainty.hpp b/src/mrcal-uncertainty.hpp new file mode 100644 index 0000000..0abb6ac --- /dev/null +++ b/src/mrcal-uncertainty.hpp @@ -0,0 +1,33 @@ +/* + * Copyright (C) Photon Vision. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once + +#include +#include +#include +#include +#include +#include +#include +#include + +std::vector compute_uncertainty( + std::span observations_board, std::span intrinsics, + std::span rt_ref_frames, mrcal_calobject_warp_t warp, + cv::Size imagerSize, cv::Size calobjectSize, double calobjectSpacing, + cv::Size sampleResolution); diff --git a/src/mrcal_jni.cpp b/src/mrcal_jni.cpp index 4ecf150..d41089d 100644 --- a/src/mrcal_jni.cpp +++ b/src/mrcal_jni.cpp @@ -27,6 +27,7 @@ #include #include +#include "mrcal-uncertainty.hpp" #include "mrcal_wrapper.h" // JClass helper from wpilib @@ -272,18 +273,108 @@ Java_org_photonvision_mrcal_MrCalJNI_mrcal_1calibrate_1camera /* * Class: org_photonvision_mrcal_MrCalJNI_undistort * Method: 1mrcal - * Signature: (JJJJIIIII)Z + * Signature: (JJJIIIII)Z */ JNIEXPORT jboolean JNICALL Java_org_photonvision_mrcal_MrCalJNI_undistort_1mrcal - (JNIEnv *, jclass, jlong srcMat, jlong dstMat, jlong camMat, jlong distCoeffs, + (JNIEnv *, jclass, jlong dstMat, jlong camMat, jlong distCoeffs, jint lensModelOrdinal, jint order, jint Nx, jint Ny, jint fov_x_deg) { return undistort_mrcal( - reinterpret_cast(srcMat), reinterpret_cast(dstMat), - reinterpret_cast(camMat), + reinterpret_cast(dstMat), reinterpret_cast(camMat), reinterpret_cast(distCoeffs), static_cast(lensModelOrdinal), static_cast(order), static_cast(Nx), static_cast(Ny), static_cast(fov_x_deg)); } + +// Helper class for managing JNI array access with automatic cleanup. Thanks, +// Claude +template class JNIArrayView { +public: + JNIArrayView(JNIEnv *env, jdoubleArray jArray) + : env_(env), jArray_(jArray), data_(nullptr), size_(0) { + if (jArray) { + size_ = env->GetArrayLength(jArray); + data_ = env->GetDoubleArrayElements(jArray, nullptr); + } + } + + ~JNIArrayView() { + if (data_) { + env_->ReleaseDoubleArrayElements(jArray_, data_, JNI_ABORT); + } + } + + // Delete copy operations to prevent double-free + JNIArrayView(const JNIArrayView &) = delete; + JNIArrayView &operator=(const JNIArrayView &) = delete; + + bool isValid() const { return data_ != nullptr; } + + template std::span asSpan(jsize elementSize = sizeof(T)) { + return std::span(reinterpret_cast(data_), + size_ / (sizeof(U) / sizeof(double))); + } + + std::span asDoubleSpan() { return std::span(data_, size_); } + +private: + JNIEnv *env_; + jdoubleArray jArray_; + jdouble *data_; + jsize size_; +}; + +/* + * Class: org_photonvision_mrcal_MrCalJNI_compute + * Method: 1uncertainty + * Signature: ([D[D[DIIDIIIIDD)[D + */ +JNIEXPORT jdoubleArray JNICALL +Java_org_photonvision_mrcal_MrCalJNI_compute_1uncertainty + (JNIEnv *env, jclass, jdoubleArray jObservations, jdoubleArray jIntrinsics, + jdoubleArray jRtRefFrames, jint boardWidth, jint boardHeight, + jdouble boardSpacing, jint imageWidth, jint imageHeight, + jint sampleGridWidth, jint sampleGridHeight, jdouble warpX, jdouble warpY) +{ + // Create RAII wrappers - automatic cleanup on scope exit + JNIArrayView observations(env, jObservations); + JNIArrayView intrinsics(env, jIntrinsics); + JNIArrayView rtFrames(env, jRtRefFrames); + + // Validate all arrays + if (!observations.isValid() || !intrinsics.isValid() || !rtFrames.isValid()) { + std::cout << "bad array in?" << std::endl; + return nullptr; + } + + // Setup parameters + mrcal_calobject_warp_t warp{.x2 = warpX, .y2 = warpY}; + cv::Size imagerSize(imageWidth, imageHeight); + cv::Size calobjectSize(boardWidth, boardHeight); + cv::Size sampleRes(sampleGridWidth, sampleGridHeight); + + std::vector result; + try { + result = compute_uncertainty( + observations.asSpan(), intrinsics.asDoubleSpan(), + rtFrames.asSpan(), warp, imagerSize, calobjectSize, + boardSpacing, sampleRes); + } catch (const std::exception &e) { + std::cout << "exception thrown -- " << e.what() << std::endl; + return nullptr; + } + + jsize resultSize = result.size() * 3; + jdoubleArray jResult = env->NewDoubleArray(resultSize); + if (jResult == nullptr) { + std::cout << "waah" << std::endl; + return nullptr; + } + + // point3's are just packed doubles so we can do trickery + env->SetDoubleArrayRegion(jResult, 0, resultSize, + reinterpret_cast(result.data())); + return jResult; +} diff --git a/src/mrcal_jni.h b/src/mrcal_jni.h index ee4df26..ea736e8 100644 --- a/src/mrcal_jni.h +++ b/src/mrcal_jni.h @@ -44,6 +44,16 @@ Java_org_photonvision_mrcal_MrCalJNI_undistort_1mrcal(JNIEnv *, jclass, jlong, jlong, jlong, jlong, jint, jint, jint, jint, jint); +/* + * Class: org_photonvision_mrcal_MrCalJNI + * Method: compute_uncertainty + * Signature: ([D[D[DIIDIIII)[D + */ +JNIEXPORT jdoubleArray JNICALL +Java_org_photonvision_mrcal_MrCalJNI_compute_1uncertainty( + JNIEnv *, jclass, jdoubleArray, jdoubleArray, jdoubleArray, jint, jint, + jdouble, jint, jint, jint, jint, jdouble, jdouble); + #ifdef __cplusplus } // extern "C" #endif diff --git a/src/mrcal_test.cpp b/src/mrcal_test.cpp index db8df2f..fc6ac72 100644 --- a/src/mrcal_test.cpp +++ b/src/mrcal_test.cpp @@ -15,19 +15,20 @@ * along with this program. If not, see . */ -#include -#include - #include #include #include +#include #include #include #include #include +#include +#include #include #include +#include "mrcal-uncertainty.hpp" #include "mrcal_jni.h" #include "mrcal_wrapper.h" @@ -186,7 +187,55 @@ int homography_test() { } int main() { - // for (int i = 0; i < 1e6; i++) { - homography_test(); - // } + // clang-format off + std::vector observations_board{ + 340.05291748046875, 84.46846771240234, 1.0, 400.2253112792969, 86.3670883178711, 1.0, 459.5165100097656, 88.32282257080078, 1.0, 517.5797729492188, 90.337646484375, 1.0, 574.4766235351562, 92.24641418457031, 1.0, 630.35498046875, 94.12259674072266, 1.0, 685.3531494140625, 95.83462524414062, 1.0, 739.0280151367188, 97.56278228759766, 1.0, 792.036865234375, 99.22209167480469, 1.0, 843.9005126953125, 100.87183380126953, 1.0, 340.46484375, 143.3973846435547, 1.0, 401.1121520996094, 144.7398681640625, 1.0, 460.4551696777344, 146.23602294921875, 1.0, 518.6421508789062, 147.7798614501953, 1.0, 575.78564453125, 149.15817260742188, 1.0, 631.6749267578125, 150.44325256347656, 1.0, 686.3921508789062, 151.7702178955078, 1.0, 740.3723754882812, 152.79336547851562, 1.0, 793.4203491210938, 153.9829559326172, 1.0, 845.3866577148438, 155.05809020996094, 1.0, 341.1199645996094, 202.5480194091797, 1.0, 401.9419860839844, 203.54965209960938, 1.0, 461.4780578613281, 204.39755249023438, 1.0, 519.7830200195312, 205.4200897216797, 1.0, 576.8479614257812, 206.2321014404297, 1.0, 632.7219848632812, 207.00465393066406, 1.0, 687.6224975585938, 207.7319793701172, 1.0, 741.6005859375, 208.3065185546875, 1.0, 794.6182250976562, 208.9090576171875, 1.0, 846.7766723632812, 209.55545043945312, 1.0, 341.8581848144531, 262.0488586425781, 1.0, 402.7988586425781, 262.3731384277344, 1.0, 462.46112060546875, 262.7007751464844, 1.0, 520.782470703125, 262.9597473144531, 1.0, 578.0326538085938, 263.2844543457031, 1.0, 633.8429565429688, 263.5665283203125, 1.0, 688.77783203125, 263.77093505859375, 1.0, 742.730224609375, 263.9000549316406, 1.0, 796.0634155273438, 263.99200439453125, 1.0, 848.3330688476562, 264.0634460449219, 1.0, 342.5438232421875, 321.9150390625, 1.0, 403.70050048828125, 321.4815979003906, 1.0, 463.4399108886719, 321.2008972167969, 1.0, 521.8726806640625, 320.8050842285156, 1.0, 579.1063232421875, 320.4932861328125, 1.0, 634.9718017578125, 320.23114013671875, 1.0, 690.0681762695312, 319.8861389160156, 1.0, 744.1616821289062, 319.6156311035156, 1.0, 797.4053955078125, 319.27984619140625, 1.0, 849.765625, 319.01202392578125, 1.0, 343.14410400390625, 381.6009826660156, 1.0, 404.4012756347656, 380.53338623046875, 1.0, 464.3209533691406, 379.5511779785156, 1.0, 522.8344116210938, 378.5729064941406, 1.0, 580.1471557617188, 377.6824951171875, 1.0, 636.194580078125, 376.7722473144531, 1.0, 691.3101806640625, 375.9779052734375, 1.0, 745.4701538085938, 375.2604675292969, 1.0, 798.8190307617188, 374.4826354980469, 1.0, 851.3120727539062, 373.7640686035156, 1.0, 343.7352600097656, 441.82275390625, 1.0, 405.01702880859375, 440.1639404296875, 1.0, 465.0958557128906, 438.5132141113281, 1.0, 523.752197265625, 436.8125305175781, 1.0, 581.18310546875, 435.2941589355469, 1.0, 637.3575439453125, 433.9209289550781, 1.0, 692.5679931640625, 432.60626220703125, 1.0, 746.9110107421875, 431.4403076171875, 1.0, 800.4124145507812, 430.2166442871094, 1.0, 852.9575805664062, 429.09588623046875, 1.0, 344.2466125488281, 502.4623107910156, 1.0, 405.5595397949219, 500.1525573730469, 1.0, 465.787353515625, 497.69781494140625, 1.0, 524.6061401367188, 495.54156494140625, 1.0, 582.1917114257812, 493.367431640625, 1.0, 638.5771484375, 491.44635009765625, 1.0, 694.0813598632812, 489.6000671386719, 1.0, 748.4590454101562, 487.8517761230469, 1.0, 802.119384765625, 486.2724609375, 1.0, 854.599853515625, 484.5357666015625, 1.0, 344.81610107421875, 563.3482666015625, 1.0, 406.1005554199219, 560.4839477539062, 1.0, 466.4613952636719, 557.5541381835938, 1.0, 525.4149169921875, 554.7409057617188, 1.0, 583.1797485351562, 552.0352172851562, 1.0, 639.8604125976562, 549.5336303710938, 1.0, 695.40087890625, 547.1099243164062, 1.0, 750.0079345703125, 544.8590698242188, 1.0, 803.6939086914062, 542.6697387695312, 1.0, 856.4340209960938, 540.4764404296875, 1.0, 345.60205078125, 624.21533203125, 1.0, 406.9267578125, 620.9830322265625, 1.0, 467.1268005371094, 617.5912475585938, 1.0, 526.2454223632812, 614.3289794921875, 1.0, 584.2667236328125, 611.1173095703125, 1.0, 640.9791870117188, 607.9124145507812, 1.0, 696.85400390625, 604.962890625, 1.0, 751.5724487304688, 602.0904541015625, 1.0, 805.25634765625, 599.3282470703125, 1.0, 857.9564819335938, 596.4180297851562, 1.0, 591.56640625, 133.4540252685547, 1.0, 645.7901611328125, 136.34703063964844, 1.0, 699.6241455078125, 139.07586669921875, 1.0, 752.8058471679688, 141.7236328125, 1.0, 805.6019897460938, 144.3719482421875, 1.0, 857.70849609375, 146.98397827148438, 1.0, 909.2447509765625, 149.74232482910156, 1.0, 960.0848999023438, 152.5624542236328, 1.0, 1010.1123657226562, 155.52029418945312, 1.0, 1059.0230712890625, 158.5565948486328, 1.0, 590.2000122070312, 187.92022705078125, 1.0, 644.5770874023438, 190.49244689941406, 1.0, 698.3612670898438, 192.91168212890625, 1.0, 751.8009033203125, 195.41983032226562, 1.0, 804.6279296875, 197.72671508789062, 1.0, 857.0435791015625, 200.1812744140625, 1.0, 908.7806396484375, 202.4865264892578, 1.0, 959.91259765625, 205.04811096191406, 1.0, 1010.0986328125, 207.6065216064453, 1.0, 1059.2886962890625, 210.29336547851562, 1.0, 588.8933715820312, 242.6225128173828, 1.0, 643.3588256835938, 244.9329071044922, 1.0, 697.294921875, 247.20135498046875, 1.0, 750.6737060546875, 249.31895446777344, 1.0, 803.7592163085938, 251.42945861816406, 1.0, 856.2665405273438, 253.56817626953125, 1.0, 908.2297973632812, 255.63067626953125, 1.0, 959.482177734375, 257.80670166015625, 1.0, 1009.9638671875, 260.0464782714844, 1.0, 1059.337158203125, 262.4143371582031, 1.0, 587.642333984375, 297.4708557128906, 1.0, 642.0918579101562, 299.45306396484375, 1.0, 696.1854248046875, 301.4026794433594, 1.0, 749.728759765625, 303.3357849121094, 1.0, 802.7847290039062, 305.27642822265625, 1.0, 855.5992431640625, 307.13848876953125, 1.0, 907.688720703125, 308.9786071777344, 1.0, 959.1355590820312, 310.8265075683594, 1.0, 1009.7185668945312, 312.718505859375, 1.0, 1059.3258056640625, 314.6477355957031, 1.0, 586.3575439453125, 352.4891357421875, 1.0, 640.904296875, 354.231689453125, 1.0, 694.9888916015625, 355.86602783203125, 1.0, 748.7357788085938, 357.5997009277344, 1.0, 802.0612182617188, 359.2803039550781, 1.0, 854.8219604492188, 360.96905517578125, 1.0, 907.1280517578125, 362.5740966796875, 1.0, 958.7881469726562, 364.31719970703125, 1.0, 1009.4879760742188, 365.8489990234375, 1.0, 1059.2294921875, 367.4820861816406, 1.0, 585.0493774414062, 407.478271484375, 1.0, 639.7964477539062, 408.9642639160156, 1.0, 694.0997924804688, 410.4486999511719, 1.0, 747.9385986328125, 411.931396484375, 1.0, 801.282470703125, 413.4278259277344, 1.0, 854.2606201171875, 414.86322021484375, 1.0, 906.7225341796875, 416.3661804199219, 1.0, 958.4158935546875, 417.66607666015625, 1.0, 1009.1939697265625, 418.9070129394531, 1.0, 1058.985595703125, 420.1217346191406, 1.0, 583.6063842773438, 463.2420349121094, 1.0, 638.6295776367188, 464.4143371582031, 1.0, 693.125732421875, 465.55126953125, 1.0, 747.1318969726562, 466.868408203125, 1.0, 800.7251586914062, 468.15423583984375, 1.0, 853.7955322265625, 469.38739013671875, 1.0, 906.261962890625, 470.41351318359375, 1.0, 957.9873046875, 471.568115234375, 1.0, 1008.8491821289062, 472.4116516113281, 1.0, 1058.611083984375, 473.1389465332031, 1.0, 582.26171875, 519.3651733398438, 1.0, 637.5200805664062, 520.3093872070312, 1.0, 692.211669921875, 521.2197875976562, 1.0, 746.3594360351562, 522.16650390625, 1.0, 800.1259765625, 523.2192993164062, 1.0, 853.2229614257812, 524.0376586914062, 1.0, 905.8582153320312, 524.837890625, 1.0, 957.5006713867188, 525.5385131835938, 1.0, 1008.2952880859375, 526.0714721679688, 1.0, 1058.1507568359375, 526.40478515625, 1.0, 580.8759155273438, 576.2457885742188, 1.0, 636.3489379882812, 576.6348266601562, 1.0, 691.2468872070312, 577.2515869140625, 1.0, 745.66259765625, 577.9999389648438, 1.0, 799.425048828125, 578.5601806640625, 1.0, 852.6754150390625, 579.0961303710938, 1.0, 905.22705078125, 579.5288696289062, 1.0, 956.8367919921875, 579.76611328125, 1.0, 1007.5563354492188, 579.8529052734375, 1.0, 1057.4571533203125, 579.7929077148438, 1.0, 579.54248046875, 633.3125610351562, 1.0, 635.1488647460938, 633.517333984375, 1.0, 690.28466796875, 633.722412109375, 1.0, 744.8412475585938, 633.9232177734375, 1.0, 798.7400512695312, 634.22705078125, 1.0, 852.0294189453125, 634.3370361328125, 1.0, 904.4754028320312, 634.2177124023438, 1.0, 956.0608520507812, 633.9159545898438, 1.0, 1006.7606201171875, 633.5948486328125, 1.0, 1056.80078125, 633.1903076171875, 1.0, 646.4349365234375, 81.8520278930664, 1.0, 699.701171875, 83.49674224853516, 1.0, 752.526123046875, 84.99017333984375, 1.0, 804.8425903320312, 86.56910705566406, 1.0, 856.789306640625, 88.19432830810547, 1.0, 908.1795043945312, 89.85881042480469, 1.0, 958.7842407226562, 91.78620147705078, 1.0, 1008.7570190429688, 93.71759033203125, 1.0, 1058.2017822265625, 95.82579803466797, 1.0, 1107.1658935546875, 97.6934585571289, 1.0, 645.9342041015625, 135.64468383789062, 1.0, 699.2338256835938, 136.8037872314453, 1.0, 752.0869140625, 138.19544982910156, 1.0, 804.5498046875, 139.56472778320312, 1.0, 856.6691284179688, 140.79830932617188, 1.0, 908.1819458007812, 142.25106811523438, 1.0, 958.9562377929688, 143.74427795410156, 1.0, 1009.2051391601562, 145.53228759765625, 1.0, 1058.518310546875, 147.28533935546875, 1.0, 1107.467529296875, 149.0304412841797, 1.0, 645.5472412109375, 189.41600036621094, 1.0, 698.701416015625, 190.4974822998047, 1.0, 751.6983032226562, 191.6084747314453, 1.0, 804.116455078125, 192.5684051513672, 1.0, 856.449951171875, 193.72567749023438, 1.0, 908.0618896484375, 194.7989501953125, 1.0, 959.0828857421875, 196.07608032226562, 1.0, 1009.4243774414062, 197.4962615966797, 1.0, 1058.8760986328125, 198.91734313964844, 1.0, 1107.7171630859375, 200.3538818359375, 1.0, 645.0777587890625, 243.00440979003906, 1.0, 698.218505859375, 243.96527099609375, 1.0, 751.2759399414062, 244.89593505859375, 1.0, 803.8907470703125, 245.8459014892578, 1.0, 856.1336669921875, 246.6429443359375, 1.0, 907.9163818359375, 247.62759399414062, 1.0, 959.0608520507812, 248.53561401367188, 1.0, 1009.5711669921875, 249.7063446044922, 1.0, 1059.1580810546875, 250.75352478027344, 1.0, 1108.089111328125, 251.84768676757812, 1.0, 644.5208740234375, 296.8437805175781, 1.0, 697.869384765625, 297.64764404296875, 1.0, 750.7371826171875, 298.2818603515625, 1.0, 803.4664916992188, 299.0349426269531, 1.0, 855.8489379882812, 299.8029479980469, 1.0, 907.7056274414062, 300.4166564941406, 1.0, 959.099609375, 301.1844482421875, 1.0, 1009.7555541992188, 302.083740234375, 1.0, 1059.408935546875, 302.91925048828125, 1.0, 1108.3360595703125, 303.7502746582031, 1.0, 644.2006225585938, 350.4757995605469, 1.0, 697.3926391601562, 350.96307373046875, 1.0, 750.4038696289062, 351.58837890625, 1.0, 803.1597900390625, 352.1058654785156, 1.0, 855.6434326171875, 352.68585205078125, 1.0, 907.573974609375, 353.26934814453125, 1.0, 958.975341796875, 353.830322265625, 1.0, 1009.6822509765625, 354.3092041015625, 1.0, 1059.435791015625, 354.862548828125, 1.0, 1108.36083984375, 355.3786315917969, 1.0, 643.6283569335938, 404.4250183105469, 1.0, 697.012939453125, 404.8159484863281, 1.0, 750.1416625976562, 405.17266845703125, 1.0, 802.9866333007812, 405.60693359375, 1.0, 855.4461669921875, 406.0074157714844, 1.0, 907.477783203125, 406.4427490234375, 1.0, 958.8698120117188, 406.744873046875, 1.0, 1009.6240844726562, 407.00537109375, 1.0, 1059.3973388671875, 407.2201843261719, 1.0, 1108.3804931640625, 407.3819580078125, 1.0, 643.2708129882812, 458.5924072265625, 1.0, 696.750732421875, 458.76177978515625, 1.0, 750.0053100585938, 459.04443359375, 1.0, 802.7421875, 459.2604675292969, 1.0, 855.279052734375, 459.5381774902344, 1.0, 907.3596801757812, 459.6695861816406, 1.0, 958.8186645507812, 459.7691955566406, 1.0, 1009.4320678710938, 459.7764587402344, 1.0, 1059.2020263671875, 459.5872802734375, 1.0, 1108.2330322265625, 459.4891662597656, 1.0, 642.7528686523438, 513.059814453125, 1.0, 696.4835205078125, 513.0325927734375, 1.0, 749.7467041015625, 513.0966186523438, 1.0, 802.6901245117188, 513.154052734375, 1.0, 855.1858520507812, 513.0887451171875, 1.0, 907.2161254882812, 513.1051025390625, 1.0, 958.5784301757812, 512.8857421875, 1.0, 1009.1349487304688, 512.4949340820312, 1.0, 1058.7890625, 512.0634765625, 1.0, 1108.0543212890625, 511.6503601074219, 1.0, 642.3670654296875, 567.9575805664062, 1.0, 696.1083984375, 567.6771850585938, 1.0, 749.5326538085938, 567.4755249023438, 1.0, 802.5594482421875, 567.2864990234375, 1.0, 855.0479125976562, 567.0264892578125, 1.0, 906.9910278320312, 566.5646362304688, 1.0, 958.2550659179688, 565.9981079101562, 1.0, 1008.7685546875, 565.3265380859375, 1.0, 1058.38525390625, 564.4978637695312, 1.0, 1107.5093994140625, 563.6917114257812, 1.0, 635.3739624023438, 83.37567138671875, 1.0, 688.705078125, 85.02459716796875, 1.0, 741.8296508789062, 86.59205627441406, 1.0, 794.25341796875, 88.28108215332031, 1.0, 846.3407592773438, 89.91934204101562, 1.0, 897.8245849609375, 91.64177703857422, 1.0, 948.6267700195312, 93.59905242919922, 1.0, 998.6367797851562, 95.5854263305664, 1.0, 1048.1822509765625, 97.70397186279297, 1.0, 1097.0576171875, 99.65660858154297, 1.0, 634.5855102539062, 137.27853393554688, 1.0, 688.0897827148438, 138.57203674316406, 1.0, 741.09765625, 139.96316528320312, 1.0, 793.8353271484375, 141.38906860351562, 1.0, 845.8939819335938, 142.66932678222656, 1.0, 897.7129516601562, 144.12818908691406, 1.0, 948.648681640625, 145.63351440429688, 1.0, 998.9403076171875, 147.44021606445312, 1.0, 1048.451416015625, 149.25344848632812, 1.0, 1097.31494140625, 150.92384338378906, 1.0, 634.0787353515625, 191.23602294921875, 1.0, 687.4046630859375, 192.3555450439453, 1.0, 740.4996337890625, 193.56378173828125, 1.0, 793.1865234375, 194.54026794433594, 1.0, 845.4541625976562, 195.73898315429688, 1.0, 897.2450561523438, 196.85479736328125, 1.0, 948.4916381835938, 198.10586547851562, 1.0, 998.93798828125, 199.51840209960938, 1.0, 1048.6309814453125, 200.9554443359375, 1.0, 1097.448974609375, 202.44650268554688, 1.0, 633.3709106445312, 245.09280395507812, 1.0, 686.7750244140625, 246.03292846679688, 1.0, 739.9298706054688, 246.94790649414062, 1.0, 792.633544921875, 247.93406677246094, 1.0, 844.98974609375, 248.75958251953125, 1.0, 897.0008544921875, 249.7366485595703, 1.0, 948.3328857421875, 250.65554809570312, 1.0, 998.9209594726562, 251.7789306640625, 1.0, 1048.746826171875, 252.8672637939453, 1.0, 1097.6851806640625, 254.02047729492188, 1.0, 632.6767578125, 299.048583984375, 1.0, 686.124755859375, 299.8314208984375, 1.0, 739.2723999023438, 300.5306396484375, 1.0, 792.0985717773438, 301.2836608886719, 1.0, 844.5786743164062, 301.97979736328125, 1.0, 896.6555786132812, 302.6929626464844, 1.0, 948.0933837890625, 303.45880126953125, 1.0, 998.8348999023438, 304.1815490722656, 1.0, 1048.787109375, 305.0987243652344, 1.0, 1097.6375732421875, 305.973876953125, 1.0, 632.147705078125, 352.7984924316406, 1.0, 685.5643310546875, 353.40850830078125, 1.0, 738.7216796875, 353.9409484863281, 1.0, 791.6480712890625, 354.41717529296875, 1.0, 844.1681518554688, 355.065185546875, 1.0, 896.3154907226562, 355.6219482421875, 1.0, 947.912353515625, 356.1407470703125, 1.0, 998.6802368164062, 356.5880126953125, 1.0, 1048.6968994140625, 357.1878967285156, 1.0, 1097.5535888671875, 357.62115478515625, 1.0, 631.4683227539062, 406.9959411621094, 1.0, 685.0079345703125, 407.3154602050781, 1.0, 738.33447265625, 407.7047119140625, 1.0, 791.318359375, 408.0414733886719, 1.0, 843.9478149414062, 408.4607238769531, 1.0, 896.1100463867188, 408.8235168457031, 1.0, 947.6112670898438, 409.1441955566406, 1.0, 998.5369262695312, 409.4580383300781, 1.0, 1048.451171875, 409.6409912109375, 1.0, 1097.4073486328125, 409.7857666015625, 1.0, 630.9254150390625, 461.3323669433594, 1.0, 684.5955200195312, 461.4971008300781, 1.0, 738.0401611328125, 461.7176208496094, 1.0, 790.9794311523438, 461.92919921875, 1.0, 843.6610717773438, 462.1027526855469, 1.0, 895.8714599609375, 462.2655334472656, 1.0, 947.3612060546875, 462.29376220703125, 1.0, 998.220703125, 462.2435607910156, 1.0, 1048.176025390625, 462.1064453125, 1.0, 1097.1500244140625, 461.81573486328125, 1.0, 630.3232421875, 516.14306640625, 1.0, 684.1530151367188, 516.044921875, 1.0, 737.7430419921875, 515.9657592773438, 1.0, 790.7312622070312, 516.0335083007812, 1.0, 843.4703369140625, 515.9102783203125, 1.0, 895.6240234375, 515.7966918945312, 1.0, 947.1597290039062, 515.583984375, 1.0, 997.9016723632812, 515.1868896484375, 1.0, 1047.7406005859375, 514.6891479492188, 1.0, 1096.845458984375, 514.0820922851562, 1.0, 629.8369750976562, 571.2006225585938, 1.0, 683.7930297851562, 570.8101806640625, 1.0, 737.370361328125, 570.538330078125, 1.0, 790.4984130859375, 570.2811279296875, 1.0, 843.2120361328125, 569.8831176757812, 1.0, 895.3331298828125, 569.488525390625, 1.0, 946.8419189453125, 568.8204956054688, 1.0, 997.3382568359375, 568.0089111328125, 1.0, 1047.1566162109375, 567.1489868164062, 1.0, 1096.3558349609375, 566.2891235351562, 1.0, 608.3167114257812, 90.3952865600586, 1.0, 661.9530639648438, 92.05773162841797, 1.0, 715.224365234375, 93.65296936035156, 1.0, 767.9812622070312, 95.33146667480469, 1.0, 820.1871948242188, 96.83180236816406, 1.0, 871.8640747070312, 98.44766998291016, 1.0, 922.8598022460938, 100.29996490478516, 1.0, 973.0626220703125, 102.29634094238281, 1.0, 1022.54248046875, 104.25901794433594, 1.0, 1071.328369140625, 106.30217742919922, 1.0, 607.688720703125, 144.50482177734375, 1.0, 661.4076538085938, 145.92701721191406, 1.0, 714.6328125, 147.2273712158203, 1.0, 767.4249267578125, 148.48553466796875, 1.0, 819.7911376953125, 149.84835815429688, 1.0, 871.6653442382812, 151.1426239013672, 1.0, 922.8381958007812, 152.5275115966797, 1.0, 973.3324584960938, 154.100830078125, 1.0, 1022.8392944335938, 155.7624969482422, 1.0, 1071.7607421875, 157.5201873779297, 1.0, 607.0962524414062, 198.62013244628906, 1.0, 660.7557983398438, 199.88217163085938, 1.0, 714.0933837890625, 200.8486328125, 1.0, 766.8739013671875, 201.95468139648438, 1.0, 819.3494873046875, 202.8737030029297, 1.0, 871.3561401367188, 203.9721221923828, 1.0, 922.794921875, 205.08547973632812, 1.0, 973.3858642578125, 206.21246337890625, 1.0, 1023.212646484375, 207.65481567382812, 1.0, 1072.2779541015625, 209.06869506835938, 1.0, 606.4531860351562, 252.87351989746094, 1.0, 660.2000122070312, 253.79917907714844, 1.0, 713.5513916015625, 254.5685577392578, 1.0, 766.3936157226562, 255.32261657714844, 1.0, 818.9324340820312, 256.08123779296875, 1.0, 870.993896484375, 256.9023742675781, 1.0, 922.6195678710938, 257.8327941894531, 1.0, 973.3658447265625, 258.69073486328125, 1.0, 1023.40966796875, 259.7257385253906, 1.0, 1072.4949951171875, 260.6850280761719, 1.0, 605.9700927734375, 307.0420227050781, 1.0, 659.7124633789062, 307.7272644042969, 1.0, 712.9573974609375, 308.2423095703125, 1.0, 766.0022583007812, 308.8944091796875, 1.0, 818.5872192382812, 309.5194396972656, 1.0, 870.7928466796875, 310.1051940917969, 1.0, 922.383056640625, 310.7121276855469, 1.0, 973.4122924804688, 311.3478698730469, 1.0, 1023.5090942382812, 312.052001953125, 1.0, 1072.6484375, 312.726806640625, 1.0, 605.3306884765625, 360.9922180175781, 1.0, 659.1182861328125, 361.46978759765625, 1.0, 712.5340576171875, 361.84173583984375, 1.0, 765.5909423828125, 362.1914367675781, 1.0, 818.3452758789062, 362.6445007324219, 1.0, 870.5492553710938, 363.0797119140625, 1.0, 922.3345336914062, 363.5086975097656, 1.0, 973.347900390625, 363.89178466796875, 1.0, 1023.5100708007812, 364.2532043457031, 1.0, 1072.698974609375, 364.50982666015625, 1.0, 604.7557373046875, 415.5726318359375, 1.0, 658.6396484375, 415.6422424316406, 1.0, 712.18115234375, 415.8442687988281, 1.0, 765.3087768554688, 416.0880126953125, 1.0, 818.0933837890625, 416.2861022949219, 1.0, 870.3873901367188, 416.5345153808594, 1.0, 922.1519165039062, 416.6242370605469, 1.0, 973.2294311523438, 416.77557373046875, 1.0, 1023.43994140625, 416.8230285644531, 1.0, 1072.688232421875, 416.8331298828125, 1.0, 604.1204833984375, 470.3007507324219, 1.0, 658.1571044921875, 470.207275390625, 1.0, 711.8966674804688, 470.10882568359375, 1.0, 765.0294189453125, 470.17852783203125, 1.0, 817.9962768554688, 470.1150207519531, 1.0, 870.298583984375, 470.1585998535156, 1.0, 922.1397705078125, 470.0409240722656, 1.0, 973.1030883789062, 469.8493957519531, 1.0, 1023.239990234375, 469.55145263671875, 1.0, 1072.498291015625, 469.0081481933594, 1.0, 603.5360107421875, 525.4186401367188, 1.0, 657.8292236328125, 525.0153198242188, 1.0, 711.5550537109375, 524.752685546875, 1.0, 764.9461059570312, 524.5057373046875, 1.0, 817.8876342773438, 524.1874389648438, 1.0, 870.1334228515625, 523.896728515625, 1.0, 921.9384155273438, 523.475341796875, 1.0, 972.9093627929688, 523.0096435546875, 1.0, 1022.9468383789062, 522.162109375, 1.0, 1072.206787109375, 521.4404296875, 1.0, 602.9309692382812, 580.8897094726562, 1.0, 657.2774047851562, 580.2903442382812, 1.0, 711.2978515625, 579.5917358398438, 1.0, 764.7193603515625, 579.077880859375, 1.0, 817.6292114257812, 578.509033203125, 1.0, 869.9642333984375, 577.7730712890625, 1.0, 921.6889038085938, 577.02490234375, 1.0, 972.5477294921875, 576.00244140625, 1.0, 1022.5692138671875, 574.980712890625, 1.0, 1071.6697998046875, 573.7130126953125, 1.0, 688.3078002929688, 170.2781524658203, 1.0, 741.9385986328125, 171.73257446289062, 1.0, 795.376708984375, 173.08993530273438, 1.0, 848.6396484375, 174.46774291992188, 1.0, 901.5034790039062, 175.965087890625, 1.0, 953.9945068359375, 177.51341247558594, 1.0, 1005.8472900390625, 179.22850036621094, 1.0, 1057.0164794921875, 181.059326171875, 1.0, 1107.662841796875, 182.90237426757812, 1.0, 1158.5628662109375, 184.4224853515625, 1.0, 687.7681884765625, 223.77597045898438, 1.0, 741.5736083984375, 224.858642578125, 1.0, 795.20458984375, 226.16427612304688, 1.0, 848.720947265625, 227.527099609375, 1.0, 901.9107055664062, 228.7939453125, 1.0, 954.5615844726562, 230.06837463378906, 1.0, 1006.6983032226562, 231.6945037841797, 1.0, 1058.273193359375, 233.2310333251953, 1.0, 1108.964599609375, 234.80059814453125, 1.0, 1159.852294921875, 236.33164978027344, 1.0, 687.2627563476562, 277.4449462890625, 1.0, 741.1592407226562, 278.5029296875, 1.0, 795.0238037109375, 279.7738037109375, 1.0, 848.7118530273438, 280.8348388671875, 1.0, 902.15576171875, 282.0505065917969, 1.0, 955.179931640625, 283.33197021484375, 1.0, 1007.6348876953125, 284.5890808105469, 1.0, 1059.281494140625, 285.9368591308594, 1.0, 1110.3182373046875, 287.307373046875, 1.0, 1161.0858154296875, 288.71441650390625, 1.0, 686.7015380859375, 331.27655029296875, 1.0, 740.8580932617188, 332.3177185058594, 1.0, 794.9391479492188, 333.48101806640625, 1.0, 848.9008178710938, 334.5506896972656, 1.0, 902.5281372070312, 335.78997802734375, 1.0, 955.7626342773438, 336.75274658203125, 1.0, 1008.4075317382812, 338.005859375, 1.0, 1060.257080078125, 338.9999694824219, 1.0, 1111.3321533203125, 340.08660888671875, 1.0, 1162.3404541015625, 341.26727294921875, 1.0, 686.3330078125, 385.60711669921875, 1.0, 740.643310546875, 386.6721496582031, 1.0, 794.9139404296875, 387.70269775390625, 1.0, 849.029052734375, 388.7762145996094, 1.0, 902.8984375, 389.8228759765625, 1.0, 956.3406372070312, 390.7840270996094, 1.0, 1009.117431640625, 391.79461669921875, 1.0, 1061.0836181640625, 392.5719299316406, 1.0, 1112.357666015625, 393.3868103027344, 1.0, 1163.4661865234375, 394.2679443359375, 1.0, 685.968994140625, 440.1662902832031, 1.0, 740.4911499023438, 441.0598449707031, 1.0, 794.9987182617188, 442.11798095703125, 1.0, 849.2451171875, 443.0438232421875, 1.0, 903.2002563476562, 444.0013427734375, 1.0, 956.7857666015625, 444.8608703613281, 1.0, 1009.6752319335938, 445.6401062011719, 1.0, 1061.7813720703125, 446.2008056640625, 1.0, 1113.215576171875, 446.77337646484375, 1.0, 1164.529296875, 447.4100341796875, 1.0, 685.5140380859375, 495.4683837890625, 1.0, 740.3410034179688, 496.38995361328125, 1.0, 795.020751953125, 497.2233581542969, 1.0, 849.4906005859375, 498.060546875, 1.0, 903.6123657226562, 498.9187927246094, 1.0, 957.2335815429688, 499.5230712890625, 1.0, 1010.2367553710938, 500.0314636230469, 1.0, 1062.3135986328125, 500.3619689941406, 1.0, 1113.8880615234375, 500.69061279296875, 1.0, 1165.718505859375, 501.2040100097656, 1.0, 685.2055053710938, 551.4117431640625, 1.0, 740.2010498046875, 552.1473999023438, 1.0, 795.106689453125, 552.9022216796875, 1.0, 849.7184448242188, 553.575439453125, 1.0, 903.9049072265625, 554.1073608398438, 1.0, 957.5718383789062, 554.507568359375, 1.0, 1010.452880859375, 554.6812133789062, 1.0, 1062.7174072265625, 554.7706909179688, 1.0, 1114.687744140625, 554.9008178710938, 1.0, 1166.9595947265625, 555.36669921875, 1.0, 684.6564331054688, 607.899169921875, 1.0, 740.03125, 608.4857788085938, 1.0, 795.1133422851562, 608.9832763671875, 1.0, 849.760986328125, 609.3836669921875, 1.0, 904.052978515625, 609.6381225585938, 1.0, 957.6390991210938, 609.691650390625, 1.0, 1010.5535888671875, 609.455078125, 1.0, 1062.9998779296875, 609.3486328125, 1.0, 1115.374755859375, 609.4432983398438, 1.0, 1168.35595703125, 610.0250854492188, 1.0, 684.355224609375, 664.7964477539062, 1.0, 739.79541015625, 665.0701293945312, 1.0, 794.9061279296875, 665.2808227539062, 1.0, 849.7059326171875, 665.3428955078125, 1.0, 903.8931884765625, 665.2157592773438, 1.0, 957.4719848632812, 664.889892578125, 1.0, 1010.64111328125, 664.4970703125, 1.0, 1063.3682861328125, 664.3037719726562, 1.0, 1116.4976806640625, 664.4486694335938, 1.0, 1170.02294921875, 664.9677124023438, 1.0, 696.3186645507812, 159.77845764160156, 1.0, 749.87646484375, 160.6954803466797, 1.0, 803.3926391601562, 161.69642639160156, 1.0, 856.625244140625, 162.6258087158203, 1.0, 909.541748046875, 163.77432250976562, 1.0, 962.046142578125, 165.00314331054688, 1.0, 1013.9151000976562, 166.40176391601562, 1.0, 1065.17138671875, 167.8755645751953, 1.0, 1116.002685546875, 169.34144592285156, 1.0, 1167.406494140625, 170.55584716796875, 1.0, 696.1398315429688, 213.13265991210938, 1.0, 749.9135131835938, 214.0642852783203, 1.0, 803.59765625, 214.91305541992188, 1.0, 857.0411987304688, 215.91680908203125, 1.0, 910.1746215820312, 216.78175354003906, 1.0, 963.0840454101562, 217.84097290039062, 1.0, 1015.143798828125, 218.90756225585938, 1.0, 1066.651123046875, 220.2158203125, 1.0, 1117.5166015625, 221.56056213378906, 1.0, 1168.7664794921875, 222.58033752441406, 1.0, 696.03564453125, 266.9335632324219, 1.0, 749.8451538085938, 267.8091735839844, 1.0, 803.76953125, 268.4652099609375, 1.0, 857.3903198242188, 269.37432861328125, 1.0, 910.8421630859375, 270.1641540527344, 1.0, 963.86328125, 271.0814514160156, 1.0, 1016.3164672851562, 272.1131591796875, 1.0, 1067.9642333984375, 273.14105224609375, 1.0, 1118.9432373046875, 274.1584777832031, 1.0, 1170.24560546875, 275.1192626953125, 1.0, 695.8375854492188, 320.94024658203125, 1.0, 749.9074096679688, 321.66094970703125, 1.0, 803.9901123046875, 322.38861083984375, 1.0, 857.8701782226562, 323.1573791503906, 1.0, 911.4974975585938, 323.92681884765625, 1.0, 964.7225341796875, 324.7074279785156, 1.0, 1017.3836059570312, 325.5229187011719, 1.0, 1069.219482421875, 326.2309265136719, 1.0, 1120.467041015625, 327.10577392578125, 1.0, 1171.608642578125, 327.80126953125, 1.0, 695.753173828125, 375.3008728027344, 1.0, 750.0064086914062, 375.9891052246094, 1.0, 804.2501831054688, 376.6938781738281, 1.0, 858.362060546875, 377.3775329589844, 1.0, 912.224853515625, 378.0657653808594, 1.0, 965.5332641601562, 378.7666931152344, 1.0, 1018.383056640625, 379.34979248046875, 1.0, 1070.34326171875, 379.9400634765625, 1.0, 1121.6390380859375, 380.34759521484375, 1.0, 1173.0572509765625, 381.101806640625, 1.0, 695.7562255859375, 429.8683776855469, 1.0, 750.2068481445312, 430.47509765625, 1.0, 804.6498413085938, 431.1391296386719, 1.0, 858.863037109375, 431.7785949707031, 1.0, 912.8995971679688, 432.3455505371094, 1.0, 966.4462280273438, 432.85931396484375, 1.0, 1019.2621459960938, 433.33209228515625, 1.0, 1071.2926025390625, 433.60931396484375, 1.0, 1122.8251953125, 433.9312438964844, 1.0, 1174.5272216796875, 434.34576416015625, 1.0, 695.7926635742188, 485.21246337890625, 1.0, 750.4476928710938, 485.7544250488281, 1.0, 805.0635986328125, 486.2894592285156, 1.0, 859.5164184570312, 486.9354553222656, 1.0, 913.6105346679688, 487.3184509277344, 1.0, 967.1817626953125, 487.66888427734375, 1.0, 1020.116943359375, 487.8735656738281, 1.0, 1072.2830810546875, 487.92291259765625, 1.0, 1123.868408203125, 487.9110412597656, 1.0, 1175.9678955078125, 488.2431945800781, 1.0, 695.85498046875, 541.0985107421875, 1.0, 750.7507934570312, 541.4894409179688, 1.0, 805.5746459960938, 542.025146484375, 1.0, 860.0576171875, 542.3256225585938, 1.0, 914.25048828125, 542.5963745117188, 1.0, 967.9192504882812, 542.6930541992188, 1.0, 1020.6870727539062, 542.64013671875, 1.0, 1072.9642333984375, 542.3768920898438, 1.0, 1125.00048828125, 542.326904296875, 1.0, 1177.6026611328125, 542.4982299804688, 1.0, 695.8729858398438, 597.6079711914062, 1.0, 751.0270385742188, 597.792236328125, 1.0, 805.977783203125, 598.1435546875, 1.0, 860.5523681640625, 598.2095947265625, 1.0, 914.7648315429688, 598.1557006835938, 1.0, 968.2537231445312, 597.9863891601562, 1.0, 1021.1741333007812, 597.5180053710938, 1.0, 1073.7010498046875, 597.1827392578125, 1.0, 1126.1842041015625, 596.99658203125, 1.0, 1179.3446044921875, 597.3068237304688, 1.0, 695.8717651367188, 654.472412109375, 1.0, 751.0980224609375, 654.505859375, 1.0, 806.267822265625, 654.433837890625, 1.0, 860.8751220703125, 654.1994018554688, 1.0, 915.0048828125, 653.85302734375, 1.0, 968.6504516601562, 653.2527465820312, 1.0, 1021.64306640625, 652.621337890625, 1.0, 1074.4427490234375, 652.1636352539062, 1.0, 1127.6170654296875, 652.0125122070312, 1.0, 1181.2313232421875, 652.4441528320312, 1.0, 718.9133911132812, 174.55799865722656, 1.0, 772.8286743164062, 175.84829711914062, 1.0, 826.525390625, 177.0081329345703, 1.0, 880.01708984375, 178.29396057128906, 1.0, 933.170166015625, 179.69247436523438, 1.0, 985.9475708007812, 181.24684143066406, 1.0, 1038.0302734375, 182.68809509277344, 1.0, 1089.587890625, 184.48622131347656, 1.0, 1141.02587890625, 186.07566833496094, 1.0, 1193.4385986328125, 187.35548400878906, 1.0, 718.4013061523438, 227.96652221679688, 1.0, 772.3280029296875, 229.08889770507812, 1.0, 826.33544921875, 230.20944213867188, 1.0, 880.1348876953125, 231.4594268798828, 1.0, 933.5449829101562, 232.689453125, 1.0, 986.5948486328125, 234.0460662841797, 1.0, 1038.9560546875, 235.4791717529297, 1.0, 1090.77197265625, 236.89683532714844, 1.0, 1142.3240966796875, 238.4720001220703, 1.0, 1194.362548828125, 239.60394287109375, 1.0, 717.7860107421875, 281.7048645019531, 1.0, 771.9972534179688, 282.7577209472656, 1.0, 826.0679931640625, 283.9335632324219, 1.0, 880.1500854492188, 285.1159362792969, 1.0, 933.87109375, 286.1755676269531, 1.0, 987.1446533203125, 287.44927978515625, 1.0, 1039.7581787109375, 288.6440124511719, 1.0, 1091.7281494140625, 290.02606201171875, 1.0, 1143.2889404296875, 291.3139953613281, 1.0, 1195.5496826171875, 292.5213928222656, 1.0, 717.2195434570312, 335.7480163574219, 1.0, 771.5601806640625, 336.7746276855469, 1.0, 825.9193115234375, 337.943359375, 1.0, 880.135986328125, 339.04669189453125, 1.0, 934.0659790039062, 340.1412353515625, 1.0, 987.5830078125, 341.2984313964844, 1.0, 1040.522705078125, 342.3377990722656, 1.0, 1092.567138671875, 343.50848388671875, 1.0, 1144.364990234375, 344.550048828125, 1.0, 1196.5882568359375, 345.5971984863281, 1.0, 716.579345703125, 390.18927001953125, 1.0, 771.19287109375, 391.264404296875, 1.0, 825.81103515625, 392.4002990722656, 1.0, 880.2247314453125, 393.5067443847656, 1.0, 934.314697265625, 394.5154724121094, 1.0, 988.1522216796875, 395.57476806640625, 1.0, 1041.068359375, 396.4911193847656, 1.0, 1093.318359375, 397.35626220703125, 1.0, 1145.2423095703125, 398.20684814453125, 1.0, 1197.697265625, 399.2044372558594, 1.0, 716.2030639648438, 444.8877258300781, 1.0, 770.9528198242188, 446.02783203125, 1.0, 825.7387084960938, 447.1316833496094, 1.0, 880.3619995117188, 448.11370849609375, 1.0, 934.6437377929688, 449.040771484375, 1.0, 988.4757690429688, 449.97174072265625, 1.0, 1041.5140380859375, 450.66204833984375, 1.0, 1093.8873291015625, 451.3067321777344, 1.0, 1146.1593017578125, 452.1065979003906, 1.0, 1199.017578125, 452.8612976074219, 1.0, 715.7879028320312, 500.507568359375, 1.0, 770.7196044921875, 501.46533203125, 1.0, 825.780517578125, 502.5498962402344, 1.0, 880.5107421875, 503.4931640625, 1.0, 934.879150390625, 504.2570495605469, 1.0, 988.8082885742188, 504.9719543457031, 1.0, 1041.958984375, 505.44427490234375, 1.0, 1094.4293212890625, 505.94989013671875, 1.0, 1146.878173828125, 506.4532165527344, 1.0, 1200.26953125, 507.2202453613281, 1.0, 715.3634033203125, 556.6130981445312, 1.0, 770.6463623046875, 557.5399780273438, 1.0, 825.8197021484375, 558.4860229492188, 1.0, 880.65380859375, 559.185302734375, 1.0, 935.0899047851562, 559.806640625, 1.0, 988.9046630859375, 560.1514282226562, 1.0, 1042.1749267578125, 560.4712524414062, 1.0, 1094.9759521484375, 560.7498779296875, 1.0, 1147.9986572265625, 561.2306518554688, 1.0, 1201.7301025390625, 562.0256958007812, 1.0, 714.9703369140625, 613.3232421875, 1.0, 770.4486694335938, 614.1456298828125, 1.0, 825.6747436523438, 614.7044067382812, 1.0, 880.6657104492188, 615.2719116210938, 1.0, 935.0804443359375, 615.5155029296875, 1.0, 988.9043579101562, 615.7138671875, 1.0, 1042.2760009765625, 615.6846313476562, 1.0, 1095.412109375, 615.912841796875, 1.0, 1149.1109619140625, 616.4705200195312, 1.0, 1203.25390625, 617.4022216796875, 1.0, 714.47265625, 670.335693359375, 1.0, 770.098876953125, 670.8014526367188, 1.0, 825.4706420898438, 671.205078125, 1.0, 880.3516235351562, 671.4058227539062, 1.0, 934.8304443359375, 671.4038696289062, 1.0, 988.7141723632812, 671.2356567382812, 1.0, 1042.35791015625, 671.1883544921875, 1.0, 1096.3111572265625, 671.4537353515625, 1.0, 1150.499267578125, 672.2022094726562, 1.0, 1205.0762939453125, 673.2001342773438, 1.0, 718.7106323242188, 174.55078125, 1.0, 772.5828247070312, 175.90771484375, 1.0, 826.4415283203125, 177.1700439453125, 1.0, 880.0050048828125, 178.4532470703125, 1.0, 933.095947265625, 179.9207305908203, 1.0, 985.89013671875, 181.44851684570312, 1.0, 1038.08642578125, 183.11398315429688, 1.0, 1089.605712890625, 184.74972534179688, 1.0, 1141.2012939453125, 186.39720153808594, 1.0, 1193.4486083984375, 187.73660278320312, 1.0, 718.0521240234375, 228.07229614257812, 1.0, 772.1224975585938, 229.24154663085938, 1.0, 826.0513916015625, 230.39102172851562, 1.0, 879.8955688476562, 231.74453735351562, 1.0, 933.3201293945312, 232.91371154785156, 1.0, 986.4415283203125, 234.33184814453125, 1.0, 1038.80810546875, 235.8300323486328, 1.0, 1090.672607421875, 237.4685516357422, 1.0, 1142.2899169921875, 238.88766479492188, 1.0, 1194.3089599609375, 240.0878448486328, 1.0, 717.3862915039062, 281.8550720214844, 1.0, 771.5869140625, 283.03961181640625, 1.0, 825.7526245117188, 284.0938720703125, 1.0, 879.8349609375, 285.3365173339844, 1.0, 933.5220947265625, 286.44287109375, 1.0, 986.9219970703125, 287.75341796875, 1.0, 1039.6241455078125, 289.1585388183594, 1.0, 1091.5279541015625, 290.44793701171875, 1.0, 1143.202880859375, 291.6874084472656, 1.0, 1195.3251953125, 293.0289001464844, 1.0, 716.6412963867188, 335.93817138671875, 1.0, 771.06982421875, 336.9728698730469, 1.0, 825.49658203125, 338.182861328125, 1.0, 879.732177734375, 339.3396911621094, 1.0, 933.7392578125, 340.3952331542969, 1.0, 987.3258056640625, 341.6374206542969, 1.0, 1040.2633056640625, 342.6761779785156, 1.0, 1092.2845458984375, 343.76885986328125, 1.0, 1143.978759765625, 344.9480895996094, 1.0, 1196.2557373046875, 346.06817626953125, 1.0, 716.1178588867188, 390.4072570800781, 1.0, 770.6798095703125, 391.4954528808594, 1.0, 825.23046875, 392.63848876953125, 1.0, 879.6903686523438, 393.7750549316406, 1.0, 933.96875, 394.88824462890625, 1.0, 987.6773681640625, 395.9314270019531, 1.0, 1040.7337646484375, 396.8448181152344, 1.0, 1092.9383544921875, 397.75616455078125, 1.0, 1144.89599609375, 398.6385498046875, 1.0, 1197.424560546875, 399.56695556640625, 1.0, 715.5460815429688, 445.1194763183594, 1.0, 770.3424072265625, 446.200927734375, 1.0, 825.1538696289062, 447.3185729980469, 1.0, 879.7899169921875, 448.3381652832031, 1.0, 934.1729125976562, 449.4006042480469, 1.0, 987.9584350585938, 450.1817626953125, 1.0, 1041.0743408203125, 450.9607849121094, 1.0, 1093.4541015625, 451.6669616699219, 1.0, 1145.6453857421875, 452.4111633300781, 1.0, 1198.3287353515625, 453.2452392578125, 1.0, 715.0379028320312, 500.65435791015625, 1.0, 770.1023559570312, 501.609130859375, 1.0, 825.0726318359375, 502.7596740722656, 1.0, 879.8348388671875, 503.6851806640625, 1.0, 934.2520751953125, 504.482666015625, 1.0, 988.17919921875, 505.15594482421875, 1.0, 1041.2998046875, 505.736328125, 1.0, 1093.82470703125, 506.1336975097656, 1.0, 1146.359130859375, 506.6990051269531, 1.0, 1199.6075439453125, 507.5831604003906, 1.0, 714.507568359375, 556.6929321289062, 1.0, 769.7667846679688, 557.639404296875, 1.0, 824.9852294921875, 558.5228271484375, 1.0, 879.8600463867188, 559.3119506835938, 1.0, 934.2691650390625, 559.9483032226562, 1.0, 988.1500244140625, 560.330322265625, 1.0, 1041.38720703125, 560.6427001953125, 1.0, 1094.140869140625, 560.9075927734375, 1.0, 1147.2576904296875, 561.3953857421875, 1.0, 1200.9097900390625, 562.1915893554688, 1.0, 714.0521850585938, 613.34765625, 1.0, 769.5221557617188, 614.11669921875, 1.0, 824.73876953125, 614.8501586914062, 1.0, 879.7642211914062, 615.3041381835938, 1.0, 934.1758422851562, 615.6290283203125, 1.0, 988.0409545898438, 615.8180541992188, 1.0, 1041.330810546875, 615.7739868164062, 1.0, 1094.5965576171875, 616.0288696289062, 1.0, 1148.1204833984375, 616.5402221679688, 1.0, 1202.4384765625, 617.4739379882812, 1.0, 713.4398193359375, 670.3319702148438, 1.0, 768.9853515625, 670.7906494140625, 1.0, 824.4131469726562, 671.1519165039062, 1.0, 879.2693481445312, 671.3775634765625, 1.0, 933.7617797851562, 671.3974609375, 1.0, 987.7183227539062, 671.26708984375, 1.0, 1041.35400390625, 671.2191162109375, 1.0, 1095.1365966796875, 671.382080078125, 1.0, 1149.2774658203125, 672.1461181640625, 1.0, 1203.942626953125, 673.2008666992188, 1.0, 724.6184692382812, 669.6865234375, 1.0, 724.9241943359375, 612.7450561523438, 1.0, 725.1722412109375, 555.9315795898438, 1.0, 725.3159790039062, 499.8235778808594, 1.0, 725.6085815429688, 444.3433532714844, 1.0, 725.8485107421875, 389.57470703125, 1.0, 726.1778564453125, 335.03802490234375, 1.0, 726.4718017578125, 280.9335632324219, 1.0, 726.92333984375, 227.13096618652344, 1.0, 727.5079345703125, 173.8141326904297, 1.0, 780.1622314453125, 670.1792602539062, 1.0, 780.4007568359375, 613.3783569335938, 1.0, 780.4976196289062, 556.9263916015625, 1.0, 780.4306640625, 500.8495178222656, 1.0, 780.4341430664062, 445.3383483886719, 1.0, 780.43212890625, 390.6623840332031, 1.0, 780.5850219726562, 336.08984375, 1.0, 780.810791015625, 282.0274963378906, 1.0, 781.0078735351562, 228.26638793945312, 1.0, 781.254150390625, 174.91835021972656, 1.0, 835.6328125, 670.6045532226562, 1.0, 835.7532958984375, 614.0758056640625, 1.0, 835.6461181640625, 557.78173828125, 1.0, 835.4056396484375, 501.849853515625, 1.0, 835.2128295898438, 446.415283203125, 1.0, 835.1527709960938, 391.7666015625, 1.0, 835.0064086914062, 337.1914978027344, 1.0, 834.9746704101562, 283.2015686035156, 1.0, 835.013671875, 229.3780059814453, 1.0, 835.0504150390625, 176.02236938476562, 1.0, 890.6309204101562, 670.6941528320312, 1.0, 890.6599731445312, 614.6348266601562, 1.0, 890.5553588867188, 558.566650390625, 1.0, 890.2796020507812, 502.8164978027344, 1.0, 889.9326782226562, 447.4116516113281, 1.0, 889.5957641601562, 392.7740173339844, 1.0, 889.2974243164062, 338.22906494140625, 1.0, 889.06396484375, 284.208984375, 1.0, 888.8602905273438, 230.5110626220703, 1.0, 888.6478881835938, 177.26138305664062, 1.0, 945.014892578125, 670.6635131835938, 1.0, 945.118408203125, 614.93408203125, 1.0, 945.0392456054688, 559.0933227539062, 1.0, 944.7655029296875, 503.56878662109375, 1.0, 944.2883911132812, 448.3834228515625, 1.0, 943.8063354492188, 393.82525634765625, 1.0, 943.3272705078125, 339.3682861328125, 1.0, 942.86181640625, 285.34747314453125, 1.0, 942.3668823242188, 231.77613830566406, 1.0, 941.8297119140625, 178.58615112304688, 1.0, 998.9496459960938, 670.5948486328125, 1.0, 998.9724731445312, 615.0123291015625, 1.0, 998.864501953125, 559.5099487304688, 1.0, 998.5413818359375, 504.23736572265625, 1.0, 998.1480712890625, 449.2371826171875, 1.0, 997.5447387695312, 394.7603759765625, 1.0, 996.9325561523438, 340.3904724121094, 1.0, 996.228759765625, 286.51300048828125, 1.0, 995.4796142578125, 233.00389099121094, 1.0, 994.6488647460938, 180.0962371826172, 1.0, 1052.73583984375, 670.5540161132812, 1.0, 1052.414794921875, 615.0183715820312, 1.0, 1052.0875244140625, 559.7102661132812, 1.0, 1051.7852783203125, 504.696044921875, 1.0, 1051.2529296875, 449.8807373046875, 1.0, 1050.5916748046875, 395.7174072265625, 1.0, 1049.832275390625, 341.5272521972656, 1.0, 1048.9410400390625, 287.8321228027344, 1.0, 1047.911865234375, 234.46665954589844, 1.0, 1046.7838134765625, 181.65853881835938, 1.0, 1106.952880859375, 670.9988403320312, 1.0, 1105.8983154296875, 615.2330932617188, 1.0, 1105.1275634765625, 560.06298828125, 1.0, 1104.48583984375, 505.1623840332031, 1.0, 1103.766845703125, 450.4924011230469, 1.0, 1102.892822265625, 396.5069274902344, 1.0, 1102.02734375, 342.5787048339844, 1.0, 1100.9263916015625, 289.0625305175781, 1.0, 1099.697509765625, 235.8424530029297, 1.0, 1098.499267578125, 183.38352966308594, 1.0, 1161.44189453125, 671.762451171875, 1.0, 1159.8006591796875, 615.91357421875, 1.0, 1158.4454345703125, 560.6168823242188, 1.0, 1157.3402099609375, 505.74334716796875, 1.0, 1156.1951904296875, 451.32403564453125, 1.0, 1155.0721435546875, 397.3337097167969, 1.0, 1153.9832763671875, 343.6336975097656, 1.0, 1152.7373046875, 290.30242919921875, 1.0, 1151.6080322265625, 237.31361389160156, 1.0, 1150.205078125, 184.88162231445312, 1.0, 1216.481201171875, 672.7322998046875, 1.0, 1214.47021484375, 616.9369506835938, 1.0, 1212.493408203125, 561.4658813476562, 1.0, 1210.843994140625, 506.614013671875, 1.0, 1209.4796142578125, 452.0860595703125, 1.0, 1208.0665283203125, 398.2809143066406, 1.0, 1206.6180419921875, 344.645263671875, 1.0, 1205.4310302734375, 291.4286193847656, 1.0, 1204.1219482421875, 238.4456787109375, 1.0, 1202.9237060546875, 185.93896484375, 1.0, 750.3049926757812, 137.12738037109375, 1.0, 804.0634155273438, 137.8693389892578, 1.0, 857.8197021484375, 138.62916564941406, 1.0, 911.1350708007812, 139.5989990234375, 1.0, 964.4414672851562, 140.63809204101562, 1.0, 1016.9462890625, 141.75912475585938, 1.0, 1069.11962890625, 143.09593200683594, 1.0, 1121.2755126953125, 144.24647521972656, 1.0, 1174.08837890625, 145.1267852783203, 1.0, 1227.630126953125, 145.65948486328125, 1.0, 750.0055541992188, 190.5411376953125, 1.0, 804.0428466796875, 191.15213012695312, 1.0, 857.8085327148438, 191.94090270996094, 1.0, 911.4717407226562, 192.67893981933594, 1.0, 964.9098510742188, 193.64273071289062, 1.0, 1017.8846435546875, 194.59715270996094, 1.0, 1070.1893310546875, 195.84463500976562, 1.0, 1122.27685546875, 196.82589721679688, 1.0, 1174.764404296875, 197.8075408935547, 1.0, 1228.2506103515625, 198.40292358398438, 1.0, 749.7052612304688, 244.1148223876953, 1.0, 803.798583984375, 244.7861785888672, 1.0, 857.8548583984375, 245.4713592529297, 1.0, 911.8803100585938, 246.1111297607422, 1.0, 965.410888671875, 247.05067443847656, 1.0, 1018.5576171875, 247.94125366210938, 1.0, 1071.0145263671875, 248.94606018066406, 1.0, 1123.251953125, 249.95240783691406, 1.0, 1175.6365966796875, 250.7977752685547, 1.0, 1229.072265625, 251.43914794921875, 1.0, 749.4348754882812, 297.89825439453125, 1.0, 803.7127075195312, 298.508544921875, 1.0, 857.9151611328125, 299.2630920410156, 1.0, 912.0404663085938, 299.9987487792969, 1.0, 965.8678588867188, 300.6783447265625, 1.0, 1019.1981201171875, 301.53741455078125, 1.0, 1071.985107421875, 302.2779541015625, 1.0, 1124.0936279296875, 303.1396789550781, 1.0, 1176.5618896484375, 303.951171875, 1.0, 1229.7296142578125, 304.52410888671875, 1.0, 749.2392578125, 351.9239501953125, 1.0, 803.59716796875, 352.64288330078125, 1.0, 858.0090942382812, 353.3170166015625, 1.0, 912.3692016601562, 354.10107421875, 1.0, 966.24365234375, 354.75244140625, 1.0, 1019.8020629882812, 355.46405029296875, 1.0, 1072.5528564453125, 356.116455078125, 1.0, 1124.812255859375, 356.8556823730469, 1.0, 1177.40576171875, 357.39752197265625, 1.0, 1230.8804931640625, 358.1722106933594, 1.0, 749.1487426757812, 405.97381591796875, 1.0, 803.560546875, 406.7398376464844, 1.0, 858.1776733398438, 407.47021484375, 1.0, 912.5455932617188, 408.1586608886719, 1.0, 966.6270751953125, 408.8178405761719, 1.0, 1020.2652587890625, 409.3962097167969, 1.0, 1073.1019287109375, 409.8858947753906, 1.0, 1125.4840087890625, 410.32830810546875, 1.0, 1178.2275390625, 410.94873046875, 1.0, 1231.9124755859375, 411.5606994628906, 1.0, 749.02587890625, 460.6697692871094, 1.0, 803.714599609375, 461.4322204589844, 1.0, 858.298095703125, 462.1714782714844, 1.0, 912.8739013671875, 462.8737487792969, 1.0, 966.942138671875, 463.35968017578125, 1.0, 1020.5572509765625, 463.8017578125, 1.0, 1073.468994140625, 464.14459228515625, 1.0, 1125.988525390625, 464.47161865234375, 1.0, 1179.013916015625, 464.95599365234375, 1.0, 1233.015869140625, 465.5888977050781, 1.0, 749.0299072265625, 515.7304077148438, 1.0, 803.8153686523438, 516.5081176757812, 1.0, 858.55224609375, 517.203857421875, 1.0, 913.1051025390625, 517.7117309570312, 1.0, 967.1846313476562, 518.1741333007812, 1.0, 1020.820068359375, 518.4146728515625, 1.0, 1073.7374267578125, 518.5310668945312, 1.0, 1126.5128173828125, 518.6985473632812, 1.0, 1180.0106201171875, 519.1798095703125, 1.0, 1234.22705078125, 519.8427734375, 1.0, 748.9243774414062, 571.3394775390625, 1.0, 803.9354248046875, 571.9204711914062, 1.0, 858.6261596679688, 572.4857788085938, 1.0, 913.1751098632812, 572.9694213867188, 1.0, 967.2474975585938, 573.0574340820312, 1.0, 1020.781005859375, 573.0691528320312, 1.0, 1073.8875732421875, 573.03662109375, 1.0, 1127.1265869140625, 573.18408203125, 1.0, 1180.9122314453125, 573.665771484375, 1.0, 1235.5460205078125, 574.6034545898438, 1.0, 748.8615112304688, 627.133544921875, 1.0, 803.8352661132812, 627.6339111328125, 1.0, 858.6240234375, 627.849365234375, 1.0, 913.1173095703125, 628.0333251953125, 1.0, 967.1702880859375, 627.9796142578125, 1.0, 1020.6674194335938, 627.7733764648438, 1.0, 1073.9326171875, 627.7291870117188, 1.0, 1127.8819580078125, 627.955322265625, 1.0, 1182.191162109375, 628.6109619140625, 1.0, 1237.0577392578125, 629.566162109375, 1.0, 756.1104125976562, 106.19416046142578, 1.0, 809.6223754882812, 107.29789733886719, 1.0, 863.0360107421875, 108.2171859741211, 1.0, 916.2985229492188, 109.46729278564453, 1.0, 969.2305297851562, 110.71602630615234, 1.0, 1021.46337890625, 112.2247085571289, 1.0, 1073.604248046875, 113.64434814453125, 1.0, 1125.793212890625, 115.0838623046875, 1.0, 1178.8162841796875, 115.78337097167969, 1.0, 1232.4427490234375, 116.53759002685547, 1.0, 755.2816772460938, 159.585205078125, 1.0, 809.0303955078125, 160.3105010986328, 1.0, 862.6375122070312, 161.3115997314453, 1.0, 916.11865234375, 162.25927734375, 1.0, 969.1174926757812, 163.48138427734375, 1.0, 1021.8380126953125, 164.67185974121094, 1.0, 1073.8660888671875, 166.14064025878906, 1.0, 1126.009765625, 167.4647674560547, 1.0, 1178.7718505859375, 168.4281768798828, 1.0, 1232.139892578125, 169.04351806640625, 1.0, 754.5286865234375, 212.86997985839844, 1.0, 808.277587890625, 213.73133850097656, 1.0, 862.1321411132812, 214.4763946533203, 1.0, 915.71044921875, 215.53662109375, 1.0, 969.1055908203125, 216.4647674560547, 1.0, 1021.9302978515625, 217.64495849609375, 1.0, 1074.200439453125, 218.82691955566406, 1.0, 1126.1068115234375, 220.11221313476562, 1.0, 1178.6812744140625, 221.1259307861328, 1.0, 1231.9029541015625, 222.00680541992188, 1.0, 753.7308349609375, 266.25958251953125, 1.0, 807.713623046875, 267.096435546875, 1.0, 861.5494384765625, 267.9752502441406, 1.0, 915.2817993164062, 268.806884765625, 1.0, 968.839111328125, 269.8245544433594, 1.0, 1021.895751953125, 270.73309326171875, 1.0, 1074.2484130859375, 271.89190673828125, 1.0, 1126.1798095703125, 272.86517333984375, 1.0, 1178.5802001953125, 273.9952087402344, 1.0, 1231.7857666015625, 274.7476501464844, 1.0, 752.8770141601562, 319.8523864746094, 1.0, 806.9620361328125, 320.6817932128906, 1.0, 860.9784545898438, 321.5384216308594, 1.0, 914.9364624023438, 322.3846740722656, 1.0, 968.6210327148438, 323.3077697753906, 1.0, 1021.7334594726562, 324.15338134765625, 1.0, 1074.27294921875, 325.1939392089844, 1.0, 1126.2613525390625, 326.0885925292969, 1.0, 1178.510009765625, 326.89227294921875, 1.0, 1231.802734375, 327.8685607910156, 1.0, 752.3372192382812, 373.3081359863281, 1.0, 806.36572265625, 374.0967712402344, 1.0, 860.5291748046875, 375.0538024902344, 1.0, 914.5543212890625, 375.9599914550781, 1.0, 968.3433837890625, 376.720947265625, 1.0, 1021.4615478515625, 377.5660095214844, 1.0, 1074.09228515625, 378.34906005859375, 1.0, 1126.2061767578125, 379.1169738769531, 1.0, 1178.546142578125, 379.8633728027344, 1.0, 1231.80712890625, 380.69805908203125, 1.0, 751.750244140625, 427.2110290527344, 1.0, 805.8916015625, 428.10113525390625, 1.0, 860.123046875, 428.9290771484375, 1.0, 914.2280883789062, 429.89581298828125, 1.0, 967.9900512695312, 430.6382141113281, 1.0, 1021.1494750976562, 431.3395080566406, 1.0, 1073.7845458984375, 431.8858947753906, 1.0, 1125.88916015625, 432.494873046875, 1.0, 1178.4910888671875, 433.2235107421875, 1.0, 1231.8521728515625, 434.0375061035156, 1.0, 751.1505126953125, 481.364013671875, 1.0, 805.4304809570312, 482.2796936035156, 1.0, 859.73046875, 483.16839599609375, 1.0, 913.7799072265625, 483.9444580078125, 1.0, 967.5134887695312, 484.6058654785156, 1.0, 1020.6979370117188, 485.1654968261719, 1.0, 1073.3182373046875, 485.60223388671875, 1.0, 1125.5574951171875, 485.96044921875, 1.0, 1178.5341796875, 486.6825256347656, 1.0, 1232.0479736328125, 487.5012512207031, 1.0, 750.5428466796875, 535.8338623046875, 1.0, 804.9132690429688, 536.6951904296875, 1.0, 859.2354125976562, 537.4735107421875, 1.0, 913.3757934570312, 538.1707763671875, 1.0, 967.0432739257812, 538.7468872070312, 1.0, 1020.12451171875, 539.0794677734375, 1.0, 1072.6748046875, 539.2767333984375, 1.0, 1125.273193359375, 539.669921875, 1.0, 1178.3836669921875, 540.2726440429688, 1.0, 1232.509765625, 541.248779296875, 1.0, 750.0974731445312, 590.5946655273438, 1.0, 804.400146484375, 591.297119140625, 1.0, 858.7158813476562, 591.9555053710938, 1.0, 912.7582397460938, 592.4749145507812, 1.0, 966.2960205078125, 592.818603515625, 1.0, 1019.2767944335938, 592.9058227539062, 1.0, 1072.09326171875, 593.0987548828125, 1.0, 1124.904541015625, 593.4097290039062, 1.0, 1178.4774169921875, 594.1689453125, 1.0, 1232.79736328125, 595.2103881835938, 1.0, 746.8294067382812, 83.08537292480469, 1.0, 800.2344970703125, 84.04643249511719, 1.0, 853.6276245117188, 85.21794891357422, 1.0, 906.6538696289062, 86.51608276367188, 1.0, 959.3909301757812, 87.85044860839844, 1.0, 1011.585205078125, 89.51557159423828, 1.0, 1063.637939453125, 91.09830474853516, 1.0, 1115.707763671875, 92.47382354736328, 1.0, 1168.4515380859375, 93.3962173461914, 1.0, 1221.7052001953125, 93.89762115478516, 1.0, 746.06591796875, 136.35568237304688, 1.0, 799.7171020507812, 137.38232421875, 1.0, 853.0354614257812, 138.34539794921875, 1.0, 906.3532104492188, 139.48382568359375, 1.0, 959.2958374023438, 140.6506805419922, 1.0, 1011.8359375, 142.08677673339844, 1.0, 1063.745849609375, 143.56393432617188, 1.0, 1115.556884765625, 145.0260009765625, 1.0, 1168.0035400390625, 146.18338012695312, 1.0, 1221.201171875, 146.8464813232422, 1.0, 745.3942260742188, 189.9607391357422, 1.0, 798.8980102539062, 190.7644805908203, 1.0, 852.6377563476562, 191.6998748779297, 1.0, 906.0064086914062, 192.61538696289062, 1.0, 959.068359375, 193.7961883544922, 1.0, 1011.8306884765625, 195.04541015625, 1.0, 1063.87158203125, 196.3734588623047, 1.0, 1115.5604248046875, 197.77847290039062, 1.0, 1167.754150390625, 198.83062744140625, 1.0, 1220.6759033203125, 199.67559814453125, 1.0, 744.53271484375, 243.37884521484375, 1.0, 798.2288818359375, 244.21563720703125, 1.0, 851.938232421875, 245.11839294433594, 1.0, 905.5272827148438, 245.97116088867188, 1.0, 958.840087890625, 246.9967041015625, 1.0, 1011.7532958984375, 248.16830444335938, 1.0, 1063.91015625, 249.3585662841797, 1.0, 1115.5799560546875, 250.5363311767578, 1.0, 1167.61328125, 251.6680145263672, 1.0, 1220.280517578125, 252.52503967285156, 1.0, 743.8602294921875, 296.9295959472656, 1.0, 797.6052856445312, 297.8812561035156, 1.0, 851.3704833984375, 298.6603698730469, 1.0, 905.099365234375, 299.5981750488281, 1.0, 958.4935913085938, 300.5105285644531, 1.0, 1011.4442138671875, 301.6489562988281, 1.0, 1063.815673828125, 302.4923400878906, 1.0, 1115.6124267578125, 303.64825439453125, 1.0, 1167.3848876953125, 304.5414733886719, 1.0, 1220.2828369140625, 305.4147644042969, 1.0, 743.2496337890625, 350.3013610839844, 1.0, 797.0215454101562, 351.23333740234375, 1.0, 850.8861083984375, 352.1598815917969, 1.0, 904.6212768554688, 353.066162109375, 1.0, 958.1295166015625, 353.9781494140625, 1.0, 1011.1638793945312, 354.80511474609375, 1.0, 1063.602783203125, 355.7251281738281, 1.0, 1115.339111328125, 356.5167236328125, 1.0, 1167.2784423828125, 357.4127197265625, 1.0, 1219.936767578125, 358.2457580566406, 1.0, 742.5833740234375, 404.16839599609375, 1.0, 796.53173828125, 405.0145568847656, 1.0, 850.40673828125, 405.9424743652344, 1.0, 904.2852172851562, 406.8385314941406, 1.0, 957.723388671875, 407.74566650390625, 1.0, 1010.9102172851562, 408.53387451171875, 1.0, 1063.1900634765625, 409.0736999511719, 1.0, 1115.11181640625, 409.88543701171875, 1.0, 1167.0035400390625, 410.52685546875, 1.0, 1219.91015625, 411.3986511230469, 1.0, 742.101806640625, 457.9742431640625, 1.0, 796.0609130859375, 458.9880065917969, 1.0, 850.0538940429688, 459.878173828125, 1.0, 903.8302001953125, 460.758544921875, 1.0, 957.3626708984375, 461.5619201660156, 1.0, 1010.4370727539062, 462.16607666015625, 1.0, 1062.7694091796875, 462.7568054199219, 1.0, 1114.7276611328125, 463.1924743652344, 1.0, 1166.8160400390625, 463.88702392578125, 1.0, 1219.88134765625, 464.6048583984375, 1.0, 741.6377563476562, 512.3115234375, 1.0, 795.6976928710938, 513.1994018554688, 1.0, 849.6572265625, 514.066650390625, 1.0, 903.447021484375, 514.8446044921875, 1.0, 956.93310546875, 515.4736328125, 1.0, 1009.8848266601562, 515.9389038085938, 1.0, 1062.2672119140625, 516.2420043945312, 1.0, 1114.2816162109375, 516.730712890625, 1.0, 1166.6201171875, 517.0858764648438, 1.0, 1219.937255859375, 518.09033203125, 1.0, 741.1475830078125, 566.737060546875, 1.0, 795.177001953125, 567.5769653320312, 1.0, 849.2437744140625, 568.3785400390625, 1.0, 902.9848022460938, 568.9769287109375, 1.0, 956.3507080078125, 569.3812255859375, 1.0, 1009.1190185546875, 569.6100463867188, 1.0, 1061.4049072265625, 569.7572021484375, 1.0, 1113.7020263671875, 570.0264282226562, 1.0, 1166.5098876953125, 570.6539916992188, 1.0, 1220.149658203125, 571.5894165039062, 1.0, 292.54638671875, 52.769474029541016, 1.0, 352.18328857421875, 56.77400207519531, 1.0, 410.0384826660156, 60.87625503540039, 1.0, 465.6617431640625, 64.92974853515625, 1.0, 519.340576171875, 69.06574249267578, 1.0, 571.0362548828125, 72.85541534423828, 1.0, 620.9534912109375, 76.58678436279297, 1.0, 669.072509765625, 80.18045806884766, 1.0, 715.7259521484375, 83.54143524169922, 1.0, 760.6669311523438, 86.78166198730469, 1.0, 293.08270263671875, 112.51262664794922, 1.0, 352.8552551269531, 115.58460998535156, 1.0, 410.5784912109375, 118.595947265625, 1.0, 466.20697021484375, 121.78897094726562, 1.0, 519.85693359375, 124.76994323730469, 1.0, 571.4063110351562, 127.72570037841797, 1.0, 621.0557250976562, 130.47491455078125, 1.0, 669.0411987304688, 133.0817413330078, 1.0, 715.5297241210938, 135.62669372558594, 1.0, 760.366943359375, 137.8969268798828, 1.0, 293.8236999511719, 172.23512268066406, 1.0, 353.5739440917969, 174.29896545410156, 1.0, 411.318115234375, 176.34988403320312, 1.0, 466.77069091796875, 178.4683074951172, 1.0, 520.293701171875, 180.40846252441406, 1.0, 571.6441040039062, 182.35418701171875, 1.0, 621.2564086914062, 184.1102294921875, 1.0, 668.9590454101562, 185.8269805908203, 1.0, 715.314453125, 187.35496520996094, 1.0, 760.066162109375, 188.7879180908203, 1.0, 294.6376037597656, 231.86402893066406, 1.0, 354.4441223144531, 232.79306030273438, 1.0, 412.09893798828125, 233.80332946777344, 1.0, 467.51641845703125, 234.71487426757812, 1.0, 520.7340087890625, 235.71868896484375, 1.0, 571.9592895507812, 236.50607299804688, 1.0, 621.3909301757812, 237.31712341308594, 1.0, 669.005859375, 238.07785034179688, 1.0, 715.1859741210938, 238.80801391601562, 1.0, 759.847900390625, 239.37123107910156, 1.0, 295.5802307128906, 291.2326354980469, 1.0, 355.2708435058594, 291.0132141113281, 1.0, 412.8489685058594, 290.861328125, 1.0, 468.0484313964844, 290.6748046875, 1.0, 521.25927734375, 290.5701904296875, 1.0, 572.2621459960938, 290.4252014160156, 1.0, 621.4598388671875, 290.2897033691406, 1.0, 668.9611206054688, 290.1223449707031, 1.0, 715.0556030273438, 289.9270324707031, 1.0, 759.6454467773438, 289.7238464355469, 1.0, 296.4932861328125, 350.0121154785156, 1.0, 356.0771179199219, 348.6853332519531, 1.0, 413.4853820800781, 347.33685302734375, 1.0, 468.6068115234375, 346.04229736328125, 1.0, 521.5859375, 344.8800048828125, 1.0, 572.5293579101562, 343.72222900390625, 1.0, 621.6264038085938, 342.636474609375, 1.0, 668.9874877929688, 341.6259460449219, 1.0, 714.953125, 340.5261535644531, 1.0, 759.3945922851562, 339.57293701171875, 1.0, 297.27471923828125, 408.8919372558594, 1.0, 356.7101745605469, 406.4145812988281, 1.0, 414.00421142578125, 403.8504333496094, 1.0, 469.03314208984375, 401.4818420410156, 1.0, 521.9319458007812, 399.1192626953125, 1.0, 572.755615234375, 397.0020751953125, 1.0, 621.7590942382812, 394.9626159667969, 1.0, 669.0291748046875, 393.0881652832031, 1.0, 714.8416748046875, 391.1908264160156, 1.0, 759.2688598632812, 389.5003967285156, 1.0, 298.1797790527344, 467.4698791503906, 1.0, 357.37799072265625, 463.7241516113281, 1.0, 414.4677734375, 460.174560546875, 1.0, 469.37677001953125, 456.619384765625, 1.0, 522.182373046875, 453.3536376953125, 1.0, 572.9302368164062, 450.2809753417969, 1.0, 622.0026245117188, 447.17010498046875, 1.0, 669.0905151367188, 444.4375915527344, 1.0, 714.9479370117188, 441.7330627441406, 1.0, 759.235595703125, 439.2518005371094, 1.0, 298.9760437011719, 525.7711181640625, 1.0, 358.0110168457031, 521.125, 1.0, 414.9244689941406, 516.3243408203125, 1.0, 469.66851806640625, 511.8095703125, 1.0, 522.3432006835938, 507.4117736816406, 1.0, 573.09765625, 503.283447265625, 1.0, 622.1310424804688, 499.38482666015625, 1.0, 669.2916870117188, 495.6650695800781, 1.0, 714.9856567382812, 492.2581481933594, 1.0, 759.2789306640625, 488.7879943847656, 1.0, 300.2080383300781, 583.6370849609375, 1.0, 358.7076110839844, 578.0108642578125, 1.0, 415.3780517578125, 572.41845703125, 1.0, 470.0079650878906, 566.7724609375, 1.0, 522.6723022460938, 561.4825439453125, 1.0, 573.3076171875, 556.4515991210938, 1.0, 622.22412109375, 551.5498657226562, 1.0, 669.4171752929688, 546.9080200195312, 1.0, 715.1151733398438, 542.6432495117188, 1.0, 759.242431640625, 538.3656005859375, 1.0, 285.1401672363281, 55.19179153442383, 1.0, 345.5185546875, 59.07418441772461, 1.0, 404.02178955078125, 63.093994140625, 1.0, 460.25701904296875, 67.16255950927734, 1.0, 514.520751953125, 71.08578491210938, 1.0, 566.695068359375, 74.8559341430664, 1.0, 617.1116943359375, 78.52804565429688, 1.0, 665.6405029296875, 82.02473449707031, 1.0, 712.4467163085938, 85.29293060302734, 1.0, 757.75830078125, 88.52542114257812, 1.0, 285.6384582519531, 115.41084289550781, 1.0, 346.2232666015625, 118.3567123413086, 1.0, 404.61181640625, 121.38638305664062, 1.0, 460.8218078613281, 124.3692398071289, 1.0, 515.019775390625, 127.3133316040039, 1.0, 566.9821166992188, 130.10960388183594, 1.0, 617.2213134765625, 132.68582153320312, 1.0, 665.6026611328125, 135.32284545898438, 1.0, 712.2450561523438, 137.6119842529297, 1.0, 757.4404296875, 139.76708984375, 1.0, 286.3458557128906, 175.6172332763672, 1.0, 346.99847412109375, 177.5068817138672, 1.0, 405.3645324707031, 179.48826599121094, 1.0, 461.5093688964844, 181.42910766601562, 1.0, 515.4660034179688, 183.27333068847656, 1.0, 567.351318359375, 185.00485229492188, 1.0, 617.3192749023438, 186.5876922607422, 1.0, 665.5087280273438, 188.18077087402344, 1.0, 712.0736083984375, 189.62306213378906, 1.0, 756.9456787109375, 190.9219207763672, 1.0, 287.2886962890625, 235.73309326171875, 1.0, 347.7753601074219, 236.38812255859375, 1.0, 406.0806579589844, 237.15789794921875, 1.0, 462.1419677734375, 238.02003479003906, 1.0, 516.00830078125, 238.74737548828125, 1.0, 567.6578369140625, 239.48609924316406, 1.0, 617.4371337890625, 240.0039825439453, 1.0, 665.4367065429688, 240.636962890625, 1.0, 711.910400390625, 241.1756134033203, 1.0, 756.6890258789062, 241.73861694335938, 1.0, 288.1562805175781, 295.5442199707031, 1.0, 348.6467590332031, 295.06182861328125, 1.0, 406.9220886230469, 294.63470458984375, 1.0, 462.7096862792969, 294.2649230957031, 1.0, 516.3465576171875, 293.95880126953125, 1.0, 567.9269409179688, 293.6302795410156, 1.0, 617.5357055664062, 293.29180908203125, 1.0, 665.3776245117188, 292.9089660644531, 1.0, 711.6146850585938, 292.4840393066406, 1.0, 756.4243774414062, 292.11865234375, 1.0, 289.1749572753906, 354.7245178222656, 1.0, 349.42926025390625, 353.1988830566406, 1.0, 407.5210266113281, 351.5195617675781, 1.0, 463.2820739746094, 350.0079040527344, 1.0, 516.8482666015625, 348.5515441894531, 1.0, 568.1702270507812, 347.1524353027344, 1.0, 617.6748657226562, 345.8583068847656, 1.0, 665.361328125, 344.4879150390625, 1.0, 711.5171508789062, 343.3401184082031, 1.0, 756.1805419921875, 342.1767578125, 1.0, 290.00469970703125, 414.17742919921875, 1.0, 350.172119140625, 411.2649841308594, 1.0, 408.10546875, 408.4591369628906, 1.0, 463.66680908203125, 405.69195556640625, 1.0, 517.076171875, 403.1414794921875, 1.0, 568.3888549804688, 400.6233825683594, 1.0, 617.7333374023438, 398.4563903808594, 1.0, 665.3550415039062, 396.31219482421875, 1.0, 711.3856811523438, 394.2208251953125, 1.0, 756.0834350585938, 392.28729248046875, 1.0, 290.8914794921875, 473.1341552734375, 1.0, 350.8450012207031, 469.0357666015625, 1.0, 408.6497497558594, 465.0644836425781, 1.0, 464.052001953125, 461.2909851074219, 1.0, 517.3211059570312, 457.5614929199219, 1.0, 568.5831909179688, 454.0814514160156, 1.0, 617.9309692382812, 450.81103515625, 1.0, 665.418701171875, 447.7342529296875, 1.0, 711.4078979492188, 444.88262939453125, 1.0, 755.9487915039062, 441.9566955566406, 1.0, 291.861572265625, 531.7486572265625, 1.0, 351.4629821777344, 526.6901245117188, 1.0, 409.0411376953125, 521.6244506835938, 1.0, 464.3210754394531, 516.739990234375, 1.0, 517.52490234375, 512.0211181640625, 1.0, 568.7075805664062, 507.5747375488281, 1.0, 617.988525390625, 503.3143310546875, 1.0, 665.4990234375, 499.2900695800781, 1.0, 711.4212036132812, 495.4606628417969, 1.0, 755.902099609375, 491.8099670410156, 1.0, 293.08209228515625, 590.0435180664062, 1.0, 352.2087097167969, 584.0609741210938, 1.0, 409.48675537109375, 578.0274047851562, 1.0, 464.6767883300781, 572.0722045898438, 1.0, 517.7720336914062, 566.3560180664062, 1.0, 568.7760009765625, 560.8023681640625, 1.0, 618.1466064453125, 555.6962280273438, 1.0, 665.5480346679688, 550.6367797851562, 1.0, 711.4603271484375, 545.9602661132812, 1.0, 755.8394165039062, 541.5432739257812, 1.0, 272.5629577636719, 54.43265914916992, 1.0, 333.6925048828125, 58.24739074707031, 1.0, 392.9742431640625, 62.10268020629883, 1.0, 449.8523864746094, 66.03743743896484, 1.0, 504.7457275390625, 69.90036010742188, 1.0, 557.4795532226562, 73.66666412353516, 1.0, 608.3112182617188, 77.2298812866211, 1.0, 657.2127685546875, 80.66532897949219, 1.0, 704.4481811523438, 83.923095703125, 1.0, 749.9801635742188, 87.18009185791016, 1.0, 273.17340087890625, 115.41850280761719, 1.0, 334.5091857910156, 118.21288299560547, 1.0, 393.6086120605469, 121.02828216552734, 1.0, 450.5421142578125, 123.89551544189453, 1.0, 505.28082275390625, 126.68466186523438, 1.0, 557.9540405273438, 129.50726318359375, 1.0, 608.4552612304688, 132.0801544189453, 1.0, 657.2978515625, 134.45986938476562, 1.0, 704.2765502929688, 136.6715087890625, 1.0, 749.8348388671875, 138.8076629638672, 1.0, 274.0409851074219, 176.34024047851562, 1.0, 335.40423583984375, 178.1346435546875, 1.0, 394.5585021972656, 179.82737731933594, 1.0, 451.3363037109375, 181.6012420654297, 1.0, 505.97998046875, 183.39991760253906, 1.0, 558.2687377929688, 185.03077697753906, 1.0, 608.7056884765625, 186.4381103515625, 1.0, 657.287109375, 187.98939514160156, 1.0, 704.2142333984375, 189.2954864501953, 1.0, 749.5418701171875, 190.46388244628906, 1.0, 275.1441650390625, 237.1006317138672, 1.0, 336.4207763671875, 237.74923706054688, 1.0, 395.4805603027344, 238.27781677246094, 1.0, 452.1290283203125, 238.8708038330078, 1.0, 506.48724365234375, 239.54791259765625, 1.0, 558.6596069335938, 240.02711486816406, 1.0, 608.9716186523438, 240.50262451171875, 1.0, 657.356201171875, 240.94398498535156, 1.0, 704.1114501953125, 241.37159729003906, 1.0, 749.267333984375, 241.73036193847656, 1.0, 276.2831115722656, 297.8139953613281, 1.0, 337.42547607421875, 297.1112976074219, 1.0, 396.40435791015625, 296.4567565917969, 1.0, 452.93731689453125, 295.85247802734375, 1.0, 507.1441345214844, 295.376708984375, 1.0, 559.110107421875, 294.7296447753906, 1.0, 609.2220458984375, 294.2189636230469, 1.0, 657.4429931640625, 293.7001037597656, 1.0, 703.9832153320312, 293.1179504394531, 1.0, 748.98291015625, 292.5573425292969, 1.0, 277.41741943359375, 357.7897644042969, 1.0, 338.4698181152344, 355.7697448730469, 1.0, 397.23944091796875, 353.9659118652344, 1.0, 453.5743103027344, 352.1865539550781, 1.0, 507.6938781738281, 350.42620849609375, 1.0, 559.5633544921875, 348.7473449707031, 1.0, 609.3759155273438, 347.2958984375, 1.0, 657.51416015625, 345.7582092285156, 1.0, 704.0239868164062, 344.26409912109375, 1.0, 748.8445434570312, 342.9285888671875, 1.0, 278.6043701171875, 417.67559814453125, 1.0, 339.4078369140625, 414.49481201171875, 1.0, 397.95849609375, 411.4114074707031, 1.0, 454.1885986328125, 408.4150390625, 1.0, 508.11456298828125, 405.51922607421875, 1.0, 559.9281005859375, 402.775390625, 1.0, 609.5958862304688, 400.3441162109375, 1.0, 657.6069946289062, 397.8138427734375, 1.0, 703.9786376953125, 395.51348876953125, 1.0, 748.8239135742188, 393.4380187988281, 1.0, 279.7218017578125, 477.33636474609375, 1.0, 340.32440185546875, 472.97186279296875, 1.0, 398.7091369628906, 468.6200866699219, 1.0, 454.703125, 464.4496765136719, 1.0, 508.5251770019531, 460.5083312988281, 1.0, 560.22314453125, 456.65130615234375, 1.0, 610.0430297851562, 453.16119384765625, 1.0, 657.7627563476562, 449.7888488769531, 1.0, 704.1332397460938, 446.6312255859375, 1.0, 748.8018798828125, 443.51470947265625, 1.0, 281.0206604003906, 536.5079345703125, 1.0, 341.16998291015625, 531.181396484375, 1.0, 399.3381042480469, 525.69970703125, 1.0, 455.2181091308594, 520.3984375, 1.0, 508.9226989746094, 515.3679809570312, 1.0, 560.506591796875, 510.49310302734375, 1.0, 610.1707763671875, 505.93353271484375, 1.0, 658.01123046875, 501.6950378417969, 1.0, 704.205810546875, 497.5239562988281, 1.0, 748.8909912109375, 493.7077331542969, 1.0, 282.5311279296875, 595.2536010742188, 1.0, 342.2391662597656, 588.8180541992188, 1.0, 400.1437072753906, 582.4826049804688, 1.0, 455.74810791015625, 576.1498413085938, 1.0, 509.310791015625, 570.1669921875, 1.0, 560.7603759765625, 564.283935546875, 1.0, 610.357421875, 558.69091796875, 1.0, 658.18115234375, 553.44873046875, 1.0, 704.36669921875, 548.3975830078125, 1.0, 748.9059448242188, 543.6685180664062, 1.0, 120.41571044921875, 41.985687255859375, 1.0, 186.60597229003906, 47.7946662902832, 1.0, 249.43528747558594, 52.92448806762695, 1.0, 309.6370849609375, 58.013431549072266, 1.0, 367.63201904296875, 62.98561477661133, 1.0, 423.2333984375, 68.08106994628906, 1.0, 476.528564453125, 72.92555236816406, 1.0, 527.5325317382812, 77.79962921142578, 1.0, 576.370361328125, 82.44564056396484, 1.0, 623.1277465820312, 86.83357238769531, 1.0, 120.92078399658203, 106.18269348144531, 1.0, 186.41685485839844, 110.21862030029297, 1.0, 249.04904174804688, 113.88784790039062, 1.0, 309.2596435546875, 117.6175308227539, 1.0, 367.2430725097656, 121.55775451660156, 1.0, 422.8807373046875, 125.47868347167969, 1.0, 476.0139465332031, 129.25491333007812, 1.0, 526.780517578125, 132.80410766601562, 1.0, 575.4576416015625, 136.36915588378906, 1.0, 622.035888671875, 139.57464599609375, 1.0, 121.2178726196289, 169.81890869140625, 1.0, 186.2440948486328, 172.3289337158203, 1.0, 248.8836212158203, 174.7148895263672, 1.0, 309.1082763671875, 177.3134765625, 1.0, 367.0929870605469, 179.9367218017578, 1.0, 422.5023498535156, 182.50099182128906, 1.0, 475.53045654296875, 185.09417724609375, 1.0, 526.1317749023438, 187.47982788085938, 1.0, 574.53173828125, 189.75961303710938, 1.0, 620.9066772460938, 191.87200927734375, 1.0, 121.53409576416016, 233.04661560058594, 1.0, 186.31068420410156, 234.06903076171875, 1.0, 248.84078979492188, 235.26271057128906, 1.0, 309.0209655761719, 236.46827697753906, 1.0, 366.8840026855469, 237.80690002441406, 1.0, 422.1908874511719, 239.07493591308594, 1.0, 475.056396484375, 240.3262481689453, 1.0, 525.5076904296875, 241.54055786132812, 1.0, 573.715576171875, 242.63827514648438, 1.0, 619.9088745117188, 243.71771240234375, 1.0, 121.98515319824219, 296.05328369140625, 1.0, 186.453369140625, 295.78216552734375, 1.0, 248.89353942871094, 295.497802734375, 1.0, 309.07415771484375, 295.3788146972656, 1.0, 366.72943115234375, 295.27349853515625, 1.0, 421.9295959472656, 295.2574157714844, 1.0, 474.53472900390625, 295.1336975097656, 1.0, 524.7800903320312, 295.1628112792969, 1.0, 572.8275756835938, 295.12457275390625, 1.0, 618.8522338867188, 295.07623291015625, 1.0, 122.56112670898438, 358.2004699707031, 1.0, 186.83932495117188, 356.5995788574219, 1.0, 249.09542846679688, 355.0413818359375, 1.0, 308.94769287109375, 353.524658203125, 1.0, 366.51220703125, 352.0186462402344, 1.0, 421.52911376953125, 350.6417541503906, 1.0, 474.05816650390625, 349.3857727050781, 1.0, 524.029541015625, 348.2002868652344, 1.0, 572.0269775390625, 346.9859313964844, 1.0, 617.83349609375, 345.83685302734375, 1.0, 123.46387481689453, 420.2611999511719, 1.0, 187.3916015625, 417.3843994140625, 1.0, 249.2408905029297, 414.45111083984375, 1.0, 308.95233154296875, 411.5464782714844, 1.0, 366.308349609375, 408.6569519042969, 1.0, 421.0820007324219, 406.0858154296875, 1.0, 473.3748779296875, 403.4498291015625, 1.0, 523.3226928710938, 400.9175109863281, 1.0, 571.0604248046875, 398.6157531738281, 1.0, 616.9032592773438, 396.5216979980469, 1.0, 124.43144989013672, 481.71929931640625, 1.0, 188.11599731445312, 477.5400695800781, 1.0, 249.58663940429688, 473.398193359375, 1.0, 308.9076232910156, 469.245849609375, 1.0, 365.92486572265625, 465.1742248535156, 1.0, 420.5452575683594, 461.0999450683594, 1.0, 472.7900695800781, 457.2266845703125, 1.0, 522.5402221679688, 453.5445251464844, 1.0, 570.2252807617188, 450.127197265625, 1.0, 615.9041748046875, 446.8903503417969, 1.0, 125.77613067626953, 542.4436645507812, 1.0, 188.98974609375, 537.069580078125, 1.0, 250.04217529296875, 531.7371826171875, 1.0, 308.8896179199219, 526.4437255859375, 1.0, 365.6263732910156, 521.1300659179688, 1.0, 419.9857482910156, 515.8558349609375, 1.0, 472.0492248535156, 510.77392578125, 1.0, 521.7744750976562, 506.0303649902344, 1.0, 569.2880249023438, 501.4830322265625, 1.0, 614.9376831054688, 497.2709045410156, 1.0, 126.92913055419922, 602.6445922851562, 1.0, 190.19723510742188, 595.8841552734375, 1.0, 250.67405700683594, 589.4678344726562, 1.0, 308.9761047363281, 583.0739135742188, 1.0, 365.35577392578125, 576.630859375, 1.0, 426.0, 550.0, 1.0, 471.34027099609375, 564.2515869140625, 1.0, 520.9330444335938, 558.300537109375, 1.0, 568.4940795898438, 552.6195068359375, 1.0, 614.0059814453125, 547.3668212890625, 1.0, 244.1690673828125, 183.7002716064453, 1.0, 298.709228515625, 186.43629455566406, 1.0, 351.6912841796875, 189.14141845703125, 1.0, 402.97705078125, 191.84776306152344, 1.0, 452.6423034667969, 194.57713317871094, 1.0, 500.5416564941406, 197.26039123535156, 1.0, 546.9510498046875, 199.71316528320312, 1.0, 591.8170776367188, 202.08148193359375, 1.0, 635.163330078125, 204.40512084960938, 1.0, 677.2647705078125, 206.5399932861328, 1.0, 243.52711486816406, 237.3186798095703, 1.0, 298.3771667480469, 239.05787658691406, 1.0, 351.61114501953125, 241.03018188476562, 1.0, 403.16552734375, 242.9029541015625, 1.0, 452.900634765625, 244.68600463867188, 1.0, 500.9800109863281, 246.45530700683594, 1.0, 547.4031982421875, 248.18649291992188, 1.0, 592.2413940429688, 249.76622009277344, 1.0, 635.6793823242188, 251.34158325195312, 1.0, 677.8675537109375, 252.7450408935547, 1.0, 242.97938537597656, 291.2392883300781, 1.0, 298.1409606933594, 292.24029541015625, 1.0, 351.57122802734375, 293.1596984863281, 1.0, 403.2629089355469, 294.14190673828125, 1.0, 453.1598205566406, 295.0757751464844, 1.0, 501.36248779296875, 295.98089599609375, 1.0, 547.85888671875, 296.6759338378906, 1.0, 592.7793579101562, 297.5270690917969, 1.0, 636.2885131835938, 298.38336181640625, 1.0, 678.4656372070312, 299.1392822265625, 1.0, 242.5828094482422, 345.49517822265625, 1.0, 297.8167419433594, 345.44317626953125, 1.0, 351.4597473144531, 345.4927673339844, 1.0, 403.3205871582031, 345.47906494140625, 1.0, 453.4045715332031, 345.5255126953125, 1.0, 501.63836669921875, 345.4898681640625, 1.0, 548.2699584960938, 345.5184326171875, 1.0, 593.3145751953125, 345.4984130859375, 1.0, 636.871826171875, 345.62890625, 1.0, 679.1571655273438, 345.5312805175781, 1.0, 242.11428833007812, 400.1525573730469, 1.0, 297.513427734375, 399.17138671875, 1.0, 351.29852294921875, 398.2559509277344, 1.0, 403.2881164550781, 397.23126220703125, 1.0, 453.4583435058594, 396.34185791015625, 1.0, 501.95709228515625, 395.40765380859375, 1.0, 548.6444702148438, 394.4812316894531, 1.0, 593.7744140625, 393.7311706542969, 1.0, 637.502685546875, 392.99072265625, 1.0, 679.9439086914062, 392.33990478515625, 1.0, 241.6909637451172, 454.8331298828125, 1.0, 297.1436767578125, 452.9864196777344, 1.0, 351.0417785644531, 451.0942077636719, 1.0, 403.257568359375, 449.0962219238281, 1.0, 453.57684326171875, 447.2375793457031, 1.0, 502.1336669921875, 445.4468688964844, 1.0, 549.0368041992188, 443.6392822265625, 1.0, 594.3025512695312, 442.1087341308594, 1.0, 638.1739501953125, 440.5933532714844, 1.0, 680.7063598632812, 439.2727966308594, 1.0, 241.42849731445312, 510.2021484375, 1.0, 296.9754638671875, 507.3731689453125, 1.0, 350.79974365234375, 504.47027587890625, 1.0, 403.1506652832031, 501.6938781738281, 1.0, 453.5924072265625, 498.8634338378906, 1.0, 502.3345642089844, 496.134033203125, 1.0, 549.3984375, 493.58880615234375, 1.0, 594.8570556640625, 491.1356201171875, 1.0, 638.8130493164062, 488.81695556640625, 1.0, 681.564697265625, 486.6434326171875, 1.0, 241.35595703125, 565.6506958007812, 1.0, 296.7702331542969, 562.0493774414062, 1.0, 350.6622619628906, 558.4262084960938, 1.0, 403.0384216308594, 554.56982421875, 1.0, 453.5478210449219, 550.8983154296875, 1.0, 502.43572998046875, 547.3182983398438, 1.0, 549.8009033203125, 543.8746948242188, 1.0, 595.3732299804688, 540.6663818359375, 1.0, 639.6690673828125, 537.5131225585938, 1.0, 682.3399658203125, 534.5574340820312, 1.0, 241.4559326171875, 621.337158203125, 1.0, 296.8483581542969, 616.8295288085938, 1.0, 350.6368408203125, 612.43408203125, 1.0, 402.99432373046875, 607.8809204101562, 1.0, 453.70831298828125, 603.4070434570312, 1.0, 502.7326354980469, 598.9456787109375, 1.0, 550.1077270507812, 594.6967163085938, 1.0, 596.0166015625, 590.508056640625, 1.0, 640.31298828125, 586.6211547851562, 1.0, 683.3328857421875, 582.8734741210938, 1.0, 241.76963806152344, 676.857421875, 1.0, 297.1396484375, 671.7684326171875, 1.0, 350.9295959472656, 666.6472778320312, 1.0, 403.1932678222656, 661.4139404296875, 1.0, 453.9209289550781, 656.0975952148438, 1.0, 503.0527648925781, 650.9722290039062, 1.0, 550.6077270507812, 645.7875366210938, 1.0, 596.5751953125, 640.806884765625, 1.0, 641.0762329101562, 636.115966796875, 1.0, 684.156494140625, 631.571044921875, 1.0, 319.8883972167969, 184.69638061523438, 1.0, 372.84637451171875, 188.7677001953125, 1.0, 424.5835876464844, 192.93467712402344, 1.0, 474.881103515625, 196.97012329101562, 1.0, 523.6417846679688, 200.79547119140625, 1.0, 570.9688110351562, 204.575927734375, 1.0, 617.328369140625, 208.130859375, 1.0, 662.0702514648438, 211.6507568359375, 1.0, 706.0455322265625, 214.94786071777344, 1.0, 748.7415771484375, 218.19285583496094, 1.0, 318.9389953613281, 233.04254150390625, 1.0, 372.787841796875, 236.61126708984375, 1.0, 425.1732177734375, 240.05307006835938, 1.0, 475.99163818359375, 243.42897033691406, 1.0, 525.5045166015625, 246.71066284179688, 1.0, 573.4278564453125, 249.86099243164062, 1.0, 620.0849609375, 252.90940856933594, 1.0, 665.5126342773438, 255.74851989746094, 1.0, 709.71533203125, 258.6665954589844, 1.0, 753.1942138671875, 261.408935546875, 1.0, 318.0116271972656, 282.70989990234375, 1.0, 372.66693115234375, 285.6842956542969, 1.0, 425.921142578125, 288.4136657714844, 1.0, 477.2998352050781, 291.1693420410156, 1.0, 527.3895874023438, 293.7334899902344, 1.0, 575.7667846679688, 296.35638427734375, 1.0, 623.0250854492188, 298.7331237792969, 1.0, 668.9085693359375, 301.2159729003906, 1.0, 713.6439208984375, 303.43719482421875, 1.0, 757.4878540039062, 305.6224365234375, 1.0, 317.00250244140625, 333.8990478515625, 1.0, 372.4897766113281, 336.0440979003906, 1.0, 426.34033203125, 338.13726806640625, 1.0, 478.5992431640625, 340.1030578613281, 1.0, 529.2619018554688, 342.0179748535156, 1.0, 578.3280029296875, 343.8526306152344, 1.0, 625.9857788085938, 345.6362609863281, 1.0, 672.5424194335938, 347.5113220214844, 1.0, 717.7205200195312, 349.26837158203125, 1.0, 762.174072265625, 350.8323669433594, 1.0, 316.074462890625, 386.5601806640625, 1.0, 372.2811279296875, 387.8887634277344, 1.0, 426.9341735839844, 389.0837097167969, 1.0, 479.8497009277344, 390.3094177246094, 1.0, 531.1862182617188, 391.484375, 1.0, 580.740478515625, 392.6664733886719, 1.0, 629.1436767578125, 393.8853759765625, 1.0, 676.15380859375, 395.1010437011719, 1.0, 722.0989379882812, 396.1865234375, 1.0, 766.780029296875, 397.4280700683594, 1.0, 314.9279479980469, 440.4734191894531, 1.0, 372.0397644042969, 440.9505615234375, 1.0, 427.3127136230469, 441.332763671875, 1.0, 481.06964111328125, 441.8052062988281, 1.0, 532.9677124023438, 442.1964111328125, 1.0, 583.3928833007812, 442.6742248535156, 1.0, 632.363037109375, 443.1562194824219, 1.0, 680.0372314453125, 443.7508850097656, 1.0, 726.4822998046875, 444.35394287109375, 1.0, 771.7228393554688, 444.8971252441406, 1.0, 313.86102294921875, 496.2335510253906, 1.0, 371.64556884765625, 495.85577392578125, 1.0, 427.8416748046875, 495.44366455078125, 1.0, 482.1934814453125, 495.0051574707031, 1.0, 534.8668212890625, 494.6712951660156, 1.0, 586.044921875, 494.3507385253906, 1.0, 635.6553344726562, 494.14410400390625, 1.0, 683.969970703125, 494.06610107421875, 1.0, 731.0372314453125, 493.9848937988281, 1.0, 776.8958740234375, 493.9570007324219, 1.0, 312.8924255371094, 553.556396484375, 1.0, 371.3948974609375, 552.4942626953125, 1.0, 428.29638671875, 551.27978515625, 1.0, 483.43597412109375, 549.965576171875, 1.0, 536.9049682617188, 548.814208984375, 1.0, 588.6814575195312, 547.6574096679688, 1.0, 639.1611328125, 546.770751953125, 1.0, 688.1293334960938, 545.7560424804688, 1.0, 735.68798828125, 545.0668334960938, 1.0, 782.1473388671875, 544.3175659179688, 1.0, 312.2518310546875, 612.5313110351562, 1.0, 371.21240234375, 610.7064208984375, 1.0, 428.8243713378906, 608.6969604492188, 1.0, 484.74066162109375, 606.670166015625, 1.0, 538.9622802734375, 604.6311645507812, 1.0, 591.54296875, 602.7417602539062, 1.0, 642.6393432617188, 600.932861328125, 1.0, 692.2882690429688, 599.3146362304688, 1.0, 740.5428466796875, 597.5833129882812, 1.0, 787.510009765625, 596.1465454101562, 1.0, 311.6173400878906, 672.7067260742188, 1.0, 371.32049560546875, 670.3372192382812, 1.0, 429.55938720703125, 667.5888061523438, 1.0, 486.2433166503906, 664.8253784179688, 1.0, 541.232177734375, 662.0409545898438, 1.0, 594.5372314453125, 659.2745971679688, 1.0, 646.4088745117188, 656.6439819335938, 1.0, 696.6226196289062, 654.163818359375, 1.0, 745.5366821289062, 651.60595703125, 1.0, 793.11962890625, 649.160888671875, 1.0, 329.535888671875, 185.98440551757812, 1.0, 382.389404296875, 189.80392456054688, 1.0, 434.03240966796875, 193.5609130859375, 1.0, 484.1376953125, 197.17662048339844, 1.0, 532.5894165039062, 200.7269744873047, 1.0, 580.0748291015625, 204.19981384277344, 1.0, 626.16357421875, 207.4828338623047, 1.0, 670.9686889648438, 210.56729125976562, 1.0, 714.9423828125, 213.63934326171875, 1.0, 757.6014404296875, 216.49176025390625, 1.0, 329.06488037109375, 234.24583435058594, 1.0, 382.7122497558594, 237.4875030517578, 1.0, 434.9443664550781, 240.51516723632812, 1.0, 485.70440673828125, 243.59710693359375, 1.0, 534.7685546875, 246.51104736328125, 1.0, 582.7211303710938, 249.3651580810547, 1.0, 629.3919067382812, 252.12643432617188, 1.0, 674.821044921875, 254.58506774902344, 1.0, 718.9559326171875, 257.3238220214844, 1.0, 762.4403076171875, 259.6437072753906, 1.0, 328.6471252441406, 283.7415466308594, 1.0, 383.06634521484375, 286.3183288574219, 1.0, 436.07269287109375, 288.6820373535156, 1.0, 487.3404235839844, 291.160888671875, 1.0, 537.2315673828125, 293.4472351074219, 1.0, 585.5731201171875, 295.632568359375, 1.0, 632.6825561523438, 297.7549133300781, 1.0, 678.5068359375, 299.88214111328125, 1.0, 723.351318359375, 301.7976989746094, 1.0, 767.1226806640625, 303.8934631347656, 1.0, 328.1720886230469, 334.6932373046875, 1.0, 383.4042053222656, 336.5005798339844, 1.0, 437.0638427734375, 338.17120361328125, 1.0, 488.9874572753906, 339.8800048828125, 1.0, 539.5042114257812, 341.5119934082031, 1.0, 588.47412109375, 342.9930725097656, 1.0, 636.138671875, 344.62066650390625, 1.0, 682.5236206054688, 346.11163330078125, 1.0, 727.7464599609375, 347.5833740234375, 1.0, 772.1383056640625, 348.9630432128906, 1.0, 327.6855773925781, 387.11053466796875, 1.0, 383.6204833984375, 388.0121154785156, 1.0, 438.0006103515625, 388.9835205078125, 1.0, 490.6812744140625, 389.8935852050781, 1.0, 541.7642211914062, 390.78125, 1.0, 591.4174194335938, 391.758056640625, 1.0, 639.5831298828125, 392.64984130859375, 1.0, 686.541748046875, 393.5493469238281, 1.0, 732.4986572265625, 394.4398193359375, 1.0, 777.2644653320312, 395.3620910644531, 1.0, 327.0045471191406, 440.8363952636719, 1.0, 383.8918762207031, 440.9289855957031, 1.0, 438.94842529296875, 441.0230712890625, 1.0, 492.3774719238281, 441.1203918457031, 1.0, 544.22265625, 441.24212646484375, 1.0, 594.3930053710938, 441.4586486816406, 1.0, 643.235107421875, 441.77703857421875, 1.0, 690.7645263671875, 442.04669189453125, 1.0, 737.2906494140625, 442.3843078613281, 1.0, 782.5203857421875, 442.8103332519531, 1.0, 326.5970764160156, 496.2979736328125, 1.0, 384.03887939453125, 495.6427307128906, 1.0, 439.96875, 494.8899230957031, 1.0, 494.0736999511719, 494.2509460449219, 1.0, 546.5674438476562, 493.57354736328125, 1.0, 597.4996337890625, 493.0040283203125, 1.0, 647.0475463867188, 492.58837890625, 1.0, 695.3013916015625, 492.2602233886719, 1.0, 742.2837524414062, 491.91497802734375, 1.0, 788.1425170898438, 491.6608581542969, 1.0, 326.0365905761719, 553.3751831054688, 1.0, 384.3065185546875, 551.934326171875, 1.0, 440.9014587402344, 550.4851684570312, 1.0, 495.7936706542969, 548.888427734375, 1.0, 549.1515502929688, 547.3931274414062, 1.0, 600.6446533203125, 546.2550048828125, 1.0, 651.0039672851562, 544.9534301757812, 1.0, 699.8143920898438, 543.8953247070312, 1.0, 747.4520263671875, 542.8761596679688, 1.0, 793.7589721679688, 541.8396606445312, 1.0, 325.822021484375, 612.03857421875, 1.0, 384.7398376464844, 609.8713989257812, 1.0, 442.0336608886719, 607.6124877929688, 1.0, 497.60455322265625, 605.3729858398438, 1.0, 551.6331176757812, 603.105712890625, 1.0, 604.1642456054688, 600.9637451171875, 1.0, 654.980224609375, 598.88818359375, 1.0, 704.5545654296875, 596.9926147460938, 1.0, 752.7060546875, 595.25439453125, 1.0, 799.6395263671875, 593.4564819335938, 1.0, 325.89337158203125, 672.0281982421875, 1.0, 385.3265380859375, 669.3152465820312, 1.0, 443.2992858886719, 666.3521728515625, 1.0, 499.65447998046875, 663.2677612304688, 1.0, 554.47802734375, 660.2301635742188, 1.0, 607.5488891601562, 657.2943115234375, 1.0, 659.2485961914062, 654.433837890625, 1.0, 709.3719482421875, 651.5560302734375, 1.0, 758.2092895507812, 648.9241333007812, 1.0, 805.5044555664062, 646.2761840820312, 1.0, 353.7980041503906, 70.94318389892578, 1.0, 419.3033752441406, 76.12572479248047, 1.0, 481.6103515625, 81.1209487915039, 1.0, 540.640625, 86.0314712524414, 1.0, 597.1256103515625, 90.50086212158203, 1.0, 650.7125244140625, 94.84162139892578, 1.0, 702.0791015625, 98.92076110839844, 1.0, 751.0172729492188, 102.74309539794922, 1.0, 797.8661499023438, 106.39209747314453, 1.0, 842.8817749023438, 110.05254364013672, 1.0, 357.0102844238281, 137.3702850341797, 1.0, 422.7539367675781, 141.01683044433594, 1.0, 485.3461608886719, 144.41795349121094, 1.0, 544.78564453125, 147.76968383789062, 1.0, 601.1317138671875, 150.87774658203125, 1.0, 654.8948974609375, 153.79156494140625, 1.0, 706.2987670898438, 156.44383239746094, 1.0, 755.4210205078125, 158.95587158203125, 1.0, 802.4002075195312, 161.4674072265625, 1.0, 847.4660034179688, 163.70262145996094, 1.0, 360.35443115234375, 204.64808654785156, 1.0, 426.4788818359375, 206.55343627929688, 1.0, 489.2756042480469, 208.42861938476562, 1.0, 548.69482421875, 210.09429931640625, 1.0, 605.2534790039062, 211.78323364257812, 1.0, 659.130615234375, 213.2195281982422, 1.0, 710.4983520507812, 214.3917999267578, 1.0, 759.6917724609375, 215.80030822753906, 1.0, 806.8492431640625, 216.81724548339844, 1.0, 851.9178466796875, 218.13552856445312, 1.0, 363.72784423828125, 272.5877685546875, 1.0, 430.2355651855469, 272.6742858886719, 1.0, 493.2565002441406, 272.77215576171875, 1.0, 552.7715454101562, 272.83990478515625, 1.0, 609.4054565429688, 272.8744812011719, 1.0, 663.2549438476562, 272.8346862792969, 1.0, 714.7636108398438, 272.8197937011719, 1.0, 764.221923828125, 272.74072265625, 1.0, 811.37060546875, 272.7267150878906, 1.0, 856.6337890625, 272.7085876464844, 1.0, 367.1205749511719, 341.29736328125, 1.0, 433.8410339355469, 339.43798828125, 1.0, 497.0573425292969, 337.6679382324219, 1.0, 556.7261352539062, 336.0614318847656, 1.0, 613.5001220703125, 334.51605224609375, 1.0, 667.529296875, 333.1117858886719, 1.0, 719.2175903320312, 331.6982421875, 1.0, 768.6219482421875, 330.35943603515625, 1.0, 815.9733276367188, 329.0583190917969, 1.0, 861.4110717773438, 327.91259765625, 1.0, 370.3951416015625, 410.30035400390625, 1.0, 437.36737060546875, 406.4679870605469, 1.0, 500.7826843261719, 402.7805480957031, 1.0, 560.682861328125, 399.4394836425781, 1.0, 617.6600341796875, 396.47906494140625, 1.0, 671.8760375976562, 393.4161376953125, 1.0, 723.6404418945312, 390.6448059082031, 1.0, 773.2125244140625, 388.06500244140625, 1.0, 820.6478271484375, 385.6077575683594, 1.0, 866.2445068359375, 383.2064208984375, 1.0, 373.59686279296875, 480.39404296875, 1.0, 440.84686279296875, 474.6162414550781, 1.0, 504.5350646972656, 469.1081237792969, 1.0, 564.6630249023438, 463.9236755371094, 1.0, 621.8539428710938, 459.2154541015625, 1.0, 676.2719116210938, 454.8145751953125, 1.0, 728.2310180664062, 450.60284423828125, 1.0, 777.9523315429688, 446.6534729003906, 1.0, 825.5457153320312, 442.8394775390625, 1.0, 871.1021728515625, 439.3497009277344, 1.0, 376.849365234375, 551.3897094726562, 1.0, 444.3314208984375, 543.6388549804688, 1.0, 508.19561767578125, 536.3761596679688, 1.0, 568.6668701171875, 529.3892822265625, 1.0, 626.1192016601562, 522.9576416015625, 1.0, 680.7810668945312, 516.9580078125, 1.0, 732.9534912109375, 511.3859558105469, 1.0, 782.6376953125, 505.8507385253906, 1.0, 830.4407348632812, 500.81121826171875, 1.0, 875.9784545898438, 495.8538513183594, 1.0, 380.318115234375, 623.2498779296875, 1.0, 447.7463073730469, 613.7874755859375, 1.0, 511.84332275390625, 604.5850219726562, 1.0, 572.6483764648438, 595.8055419921875, 1.0, 630.3875122070312, 587.7044677734375, 1.0, 685.3109741210938, 580.0819091796875, 1.0, 737.6219482421875, 572.7588500976562, 1.0, 787.5940551757812, 565.9110717773438, 1.0, 835.4154052734375, 559.3068237304688, 1.0, 880.9712524414062, 553.1328735351562, 1.0, 384.0848693847656, 695.2559814453125, 1.0, 451.5234375, 684.1630859375, 1.0, 515.8165893554688, 673.3355102539062, 1.0, 576.7986450195312, 662.9732666015625, 1.0, 634.7198486328125, 653.2152709960938, 1.0, 689.8262939453125, 643.6943359375, 1.0, 742.4880981445312, 634.8718872070312, 1.0, 792.4701538085938, 626.3097534179688, 1.0, 840.2001953125, 618.3394165039062, 1.0, 885.6417846679688, 610.4691162109375, 1.0, 450.1699523925781, 77.0503158569336, 1.0, 509.33551025390625, 80.278564453125, 1.0, 567.158447265625, 83.38044738769531, 1.0, 623.4000854492188, 86.44248962402344, 1.0, 678.2681274414062, 89.22122955322266, 1.0, 731.6982421875, 92.08392333984375, 1.0, 784.0354614257812, 94.7432861328125, 1.0, 834.9249267578125, 97.45980834960938, 1.0, 884.6686401367188, 100.0209732055664, 1.0, 932.9032592773438, 102.94779205322266, 1.0, 450.9908447265625, 137.25933837890625, 1.0, 510.5368347167969, 139.77259826660156, 1.0, 568.5755004882812, 142.20547485351562, 1.0, 625.0798950195312, 144.35533142089844, 1.0, 680.0619506835938, 146.5068359375, 1.0, 733.7655639648438, 148.53643798828125, 1.0, 786.3272094726562, 150.44906616210938, 1.0, 837.4765014648438, 152.41384887695312, 1.0, 887.4129028320312, 154.3343505859375, 1.0, 936.2055053710938, 156.2564697265625, 1.0, 452.0093994140625, 198.2504425048828, 1.0, 511.7690734863281, 200.02894592285156, 1.0, 569.9866943359375, 201.5406494140625, 1.0, 626.5844116210938, 203.036865234375, 1.0, 681.9130859375, 204.37078857421875, 1.0, 735.7606201171875, 205.613037109375, 1.0, 788.4606323242188, 206.83843994140625, 1.0, 839.960205078125, 207.9212188720703, 1.0, 890.3169555664062, 209.0604705810547, 1.0, 939.1903686523438, 210.55116271972656, 1.0, 452.75537109375, 259.91973876953125, 1.0, 512.9282836914062, 260.77362060546875, 1.0, 571.3591918945312, 261.53948974609375, 1.0, 628.2242431640625, 262.19488525390625, 1.0, 683.5272827148438, 262.777587890625, 1.0, 737.7138671875, 263.25927734375, 1.0, 790.6087036132812, 263.84954833984375, 1.0, 842.4896850585938, 264.2219543457031, 1.0, 892.9579467773438, 264.8385925292969, 1.0, 942.1991577148438, 265.244873046875, 1.0, 453.4644470214844, 322.1590576171875, 1.0, 513.9824829101562, 322.0640869140625, 1.0, 572.608642578125, 321.8134765625, 1.0, 629.6639404296875, 321.7786865234375, 1.0, 685.364013671875, 321.5262756347656, 1.0, 739.76123046875, 321.3385925292969, 1.0, 793.0223999023438, 321.2279968261719, 1.0, 845.0236206054688, 321.0874328613281, 1.0, 895.7830810546875, 320.8507995605469, 1.0, 945.3612060546875, 320.9028625488281, 1.0, 453.9298400878906, 384.9058837890625, 1.0, 514.78515625, 383.75396728515625, 1.0, 573.7114868164062, 382.6967468261719, 1.0, 631.1080322265625, 381.739013671875, 1.0, 687.1817016601562, 380.8044128417969, 1.0, 741.8057250976562, 379.9784240722656, 1.0, 795.2501220703125, 379.1637268066406, 1.0, 847.5835571289062, 378.2763366699219, 1.0, 898.6243896484375, 377.5578918457031, 1.0, 948.330078125, 376.6229248046875, 1.0, 454.131591796875, 448.706787109375, 1.0, 515.3336181640625, 446.6634826660156, 1.0, 574.7012329101562, 444.6942138671875, 1.0, 632.5611572265625, 442.8341979980469, 1.0, 688.8905639648438, 441.13140869140625, 1.0, 743.9195556640625, 439.5528259277344, 1.0, 797.5777587890625, 438.0511474609375, 1.0, 850.1477661132812, 436.53564453125, 1.0, 901.374267578125, 434.9994201660156, 1.0, 951.3082885742188, 433.51470947265625, 1.0, 453.9855651855469, 513.63037109375, 1.0, 515.6813354492188, 510.53466796875, 1.0, 575.5784301757812, 507.74359130859375, 1.0, 633.7423706054688, 504.9471435546875, 1.0, 690.541015625, 502.53948974609375, 1.0, 745.8352661132812, 500.2149658203125, 1.0, 799.9869384765625, 497.799072265625, 1.0, 852.6632690429688, 495.4576721191406, 1.0, 904.2131958007812, 493.2671813964844, 1.0, 954.0798950195312, 490.8424987792969, 1.0, 453.7724609375, 579.7721557617188, 1.0, 515.9241943359375, 575.7725219726562, 1.0, 576.2591552734375, 571.917236328125, 1.0, 635.0057983398438, 568.2546997070312, 1.0, 692.1006469726562, 564.9815673828125, 1.0, 747.9500732421875, 561.642333984375, 1.0, 802.2371826171875, 558.3525390625, 1.0, 855.1759643554688, 555.3641357421875, 1.0, 906.794677734375, 552.1127319335938, 1.0, 956.7803955078125, 549.0630493164062, 1.0, 453.51385498046875, 646.9511108398438, 1.0, 516.0609741210938, 642.0777587890625, 1.0, 576.9261474609375, 637.3546142578125, 1.0, 636.0046997070312, 632.7393798828125, 1.0, 693.5584106445312, 628.5022583007812, 1.0, 749.6181640625, 624.205322265625, 1.0, 804.3589477539062, 620.0388793945312, 1.0, 857.5169677734375, 615.751708984375, 1.0, 909.1746826171875, 611.9007568359375, 1.0, 959.2962646484375, 607.4714965820312, 1.0, 358.69708251953125, 124.42294311523438, 1.0, 413.02423095703125, 126.28511810302734, 1.0, 467.2465515136719, 128.19375610351562, 1.0, 520.8355712890625, 130.14515686035156, 1.0, 574.3688354492188, 131.9713897705078, 1.0, 627.57763671875, 133.8096923828125, 1.0, 680.4423828125, 135.5453338623047, 1.0, 733.0943603515625, 137.23570251464844, 1.0, 785.7064208984375, 138.80255126953125, 1.0, 837.8779907226562, 140.4903564453125, 1.0, 355.64154052734375, 175.7080841064453, 1.0, 410.5948791503906, 177.52931213378906, 1.0, 465.2781066894531, 179.40855407714844, 1.0, 519.4928588867188, 181.14512634277344, 1.0, 573.365478515625, 182.84228515625, 1.0, 626.8477783203125, 184.5492706298828, 1.0, 680.2238159179688, 186.281494140625, 1.0, 733.3493041992188, 187.7769775390625, 1.0, 786.3014526367188, 189.35812377929688, 1.0, 839.0060424804688, 190.8143768310547, 1.0, 352.6530456542969, 227.96160888671875, 1.0, 408.20452880859375, 229.6800537109375, 1.0, 463.3318786621094, 231.3831787109375, 1.0, 517.8584594726562, 233.0204315185547, 1.0, 572.268310546875, 234.6104736328125, 1.0, 626.228515625, 236.23333740234375, 1.0, 680.0527954101562, 237.78720092773438, 1.0, 733.52734375, 239.25535583496094, 1.0, 786.9608764648438, 240.5166778564453, 1.0, 840.1553955078125, 242.02780151367188, 1.0, 349.5762939453125, 281.16729736328125, 1.0, 405.53546142578125, 282.6756286621094, 1.0, 461.2445983886719, 284.2703552246094, 1.0, 516.4169921875, 285.7742004394531, 1.0, 571.1852416992188, 287.2299499511719, 1.0, 625.61181640625, 288.6027526855469, 1.0, 679.73388671875, 290.0713195800781, 1.0, 733.7221069335938, 291.38482666015625, 1.0, 787.59423828125, 292.733154296875, 1.0, 841.2872924804688, 294.1416931152344, 1.0, 346.3750305175781, 335.3604431152344, 1.0, 402.93475341796875, 336.6626281738281, 1.0, 459.1566467285156, 338.003173828125, 1.0, 514.7487182617188, 339.2872009277344, 1.0, 570.0829467773438, 340.63775634765625, 1.0, 624.8253784179688, 341.987548828125, 1.0, 679.5034790039062, 343.2693786621094, 1.0, 733.9732055664062, 344.5585632324219, 1.0, 788.3756713867188, 345.8554382324219, 1.0, 842.5581665039062, 347.2418518066406, 1.0, 343.10845947265625, 390.376953125, 1.0, 400.1974792480469, 391.45794677734375, 1.0, 456.85406494140625, 392.54638671875, 1.0, 513.0620727539062, 393.6805725097656, 1.0, 568.8470458984375, 394.7498779296875, 1.0, 624.1971435546875, 395.9852600097656, 1.0, 679.3357543945312, 397.1852111816406, 1.0, 734.2625122070312, 398.44140625, 1.0, 789.1190795898438, 399.63385009765625, 1.0, 843.8314208984375, 400.9519958496094, 1.0, 339.6663818359375, 446.70123291015625, 1.0, 397.2493591308594, 447.5938415527344, 1.0, 454.4874267578125, 448.5150146484375, 1.0, 511.2821044921875, 449.3274230957031, 1.0, 567.5474243164062, 450.30682373046875, 1.0, 623.549072265625, 451.33575439453125, 1.0, 679.2176513671875, 452.4898681640625, 1.0, 734.6688842773438, 453.6405944824219, 1.0, 790.0519409179688, 454.7820129394531, 1.0, 845.2581176757812, 455.9918518066406, 1.0, 336.1388244628906, 504.1318359375, 1.0, 394.225341796875, 504.84356689453125, 1.0, 451.9454040527344, 505.5506591796875, 1.0, 509.33624267578125, 506.3199462890625, 1.0, 566.2373046875, 507.0613708496094, 1.0, 622.7847290039062, 507.8537902832031, 1.0, 679.1088256835938, 508.8912048339844, 1.0, 735.1019287109375, 510.00616455078125, 1.0, 791.05029296875, 511.0771179199219, 1.0, 846.635498046875, 512.1798095703125, 1.0, 332.6033630371094, 562.6295776367188, 1.0, 391.13250732421875, 563.3704833984375, 1.0, 449.42864990234375, 563.912353515625, 1.0, 507.35797119140625, 564.5747680664062, 1.0, 564.8716430664062, 565.1666870117188, 1.0, 621.9630737304688, 565.8379516601562, 1.0, 678.9647216796875, 566.679443359375, 1.0, 735.566162109375, 567.5716552734375, 1.0, 792.0700073242188, 568.4789428710938, 1.0, 848.21240234375, 569.3414916992188, 1.0, 329.35198974609375, 621.8768920898438, 1.0, 388.2477722167969, 622.796142578125, 1.0, 446.905517578125, 623.4141235351562, 1.0, 505.34368896484375, 623.8970336914062, 1.0, 563.52392578125, 624.4432373046875, 1.0, 621.3123168945312, 625.00048828125, 1.0, 678.8524169921875, 625.6031494140625, 1.0, 736.0036010742188, 626.2853393554688, 1.0, 792.955322265625, 626.9462890625, 1.0, 849.423583984375, 627.366943359375, 1.0, 306.6508483886719, 603.2652587890625, 1.0, 309.53607177734375, 543.581787109375, 1.0, 312.644287109375, 484.7646789550781, 1.0, 315.6923828125, 427.0888977050781, 1.0, 318.785400390625, 370.24786376953125, 1.0, 321.6779479980469, 314.8243713378906, 1.0, 324.607177734375, 259.9715576171875, 1.0, 327.4705810546875, 206.21371459960938, 1.0, 330.26019287109375, 153.3494110107422, 1.0, 333.1555480957031, 101.40721130371094, 1.0, 365.9008483886719, 603.5093994140625, 1.0, 368.5408630371094, 543.7826538085938, 1.0, 371.22589111328125, 485.05328369140625, 1.0, 373.8374938964844, 427.48260498046875, 1.0, 376.4986267089844, 370.9399108886719, 1.0, 378.92303466796875, 315.68017578125, 1.0, 381.2970886230469, 261.0517883300781, 1.0, 383.521240234375, 207.45587158203125, 1.0, 385.7156982421875, 154.56088256835938, 1.0, 387.9454345703125, 102.65927124023438, 1.0, 425.1888427734375, 603.5245971679688, 1.0, 427.3730163574219, 543.8289184570312, 1.0, 429.4984130859375, 485.30743408203125, 1.0, 431.7037353515625, 427.8839111328125, 1.0, 433.74468994140625, 371.5508117675781, 1.0, 435.65234375, 316.5180969238281, 1.0, 437.5360107421875, 262.17724609375, 1.0, 439.3525390625, 208.60894775390625, 1.0, 441.08056640625, 155.98240661621094, 1.0, 442.6315002441406, 104.20694732666016, 1.0, 484.06561279296875, 603.5408935546875, 1.0, 485.6907958984375, 543.8862915039062, 1.0, 487.460205078125, 485.4140930175781, 1.0, 489.11322021484375, 428.2745056152344, 1.0, 490.5910949707031, 372.2220764160156, 1.0, 492.0123596191406, 317.44403076171875, 1.0, 493.369873046875, 263.242431640625, 1.0, 494.6459655761719, 209.99061584472656, 1.0, 495.9761047363281, 157.4408416748047, 1.0, 497.1615295410156, 105.68196105957031, 1.0, 542.614501953125, 603.4636840820312, 1.0, 543.7534790039062, 543.9583129882812, 1.0, 544.9130249023438, 485.6563720703125, 1.0, 545.9129028320312, 428.65447998046875, 1.0, 546.9862670898438, 372.8448486328125, 1.0, 547.8856201171875, 318.3253173828125, 1.0, 548.7451171875, 264.29815673828125, 1.0, 549.6203002929688, 211.22035217285156, 1.0, 550.3530883789062, 158.7482147216797, 1.0, 551.2919921875, 107.2101821899414, 1.0, 600.7420043945312, 603.4421997070312, 1.0, 601.3445434570312, 544.1776123046875, 1.0, 601.7733764648438, 486.0393371582031, 1.0, 602.303466796875, 429.20721435546875, 1.0, 602.7974243164062, 373.59014892578125, 1.0, 603.240478515625, 319.1916809082031, 1.0, 603.7061157226562, 265.3319396972656, 1.0, 604.1216430664062, 212.32968139648438, 1.0, 604.5969848632812, 160.13821411132812, 1.0, 604.897705078125, 108.5643310546875, 1.0, 658.5922241210938, 603.4994506835938, 1.0, 658.4730834960938, 544.3939208984375, 1.0, 658.3994140625, 486.51904296875, 1.0, 658.3553466796875, 429.7755126953125, 1.0, 658.2750854492188, 374.3391418457031, 1.0, 658.3010864257812, 320.0360412597656, 1.0, 658.294677734375, 266.31292724609375, 1.0, 658.3721923828125, 213.5936279296875, 1.0, 658.343017578125, 161.41148376464844, 1.0, 658.4848022460938, 110.01107025146484, 1.0, 716.0446166992188, 603.6810913085938, 1.0, 715.4507446289062, 544.7301025390625, 1.0, 714.7921752929688, 486.98284912109375, 1.0, 714.1011962890625, 430.50830078125, 1.0, 713.6347045898438, 375.0060119628906, 1.0, 713.06982421875, 320.8133239746094, 1.0, 712.7302856445312, 267.2688903808594, 1.0, 712.3710327148438, 214.4892120361328, 1.0, 712.0416870117188, 162.49522399902344, 1.0, 711.7713012695312, 111.38438415527344, 1.0, 773.2122802734375, 603.7901611328125, 1.0, 772.1001586914062, 545.139892578125, 1.0, 770.9622192382812, 487.5426330566406, 1.0, 769.8239135742188, 431.14141845703125, 1.0, 768.7884521484375, 375.7945556640625, 1.0, 767.8853149414062, 321.6988830566406, 1.0, 766.9866943359375, 268.1951904296875, 1.0, 766.2084350585938, 215.55758666992188, 1.0, 765.4676513671875, 163.7272186279297, 1.0, 764.6212158203125, 112.60456085205078, 1.0, 830.1841430664062, 603.8588256835938, 1.0, 828.5477905273438, 545.4935913085938, 1.0, 826.8709716796875, 488.1685485839844, 1.0, 825.3562622070312, 431.8247985839844, 1.0, 823.7169189453125, 376.5066223144531, 1.0, 822.410888671875, 322.4991455078125, 1.0, 821.019775390625, 269.0914306640625, 1.0, 819.7673950195312, 216.50592041015625, 1.0, 818.6351318359375, 164.76560974121094, 1.0, 817.3189086914062, 113.90296173095703, 1.0, 313.97161865234375, 92.08505249023438, 1.0, 369.3199157714844, 93.33875274658203, 1.0, 424.5108337402344, 94.56135559082031, 1.0, 479.41046142578125, 95.90203094482422, 1.0, 534.0236206054688, 97.38604736328125, 1.0, 588.16552734375, 98.6924057006836, 1.0, 642.1553344726562, 100.01612854003906, 1.0, 695.7432861328125, 101.32418823242188, 1.0, 749.037109375, 102.40767669677734, 1.0, 802.1157836914062, 103.71326446533203, 1.0, 310.9574890136719, 144.28936767578125, 1.0, 366.95367431640625, 145.3855743408203, 1.0, 422.70880126953125, 146.6373748779297, 1.0, 478.1122131347656, 147.9736785888672, 1.0, 533.1083984375, 149.25918579101562, 1.0, 587.861083984375, 150.49183654785156, 1.0, 642.1207275390625, 151.704345703125, 1.0, 696.1131591796875, 152.719970703125, 1.0, 749.7869873046875, 153.8080596923828, 1.0, 803.2438354492188, 154.77520751953125, 1.0, 308.1641845703125, 197.53504943847656, 1.0, 364.6424560546875, 198.51248168945312, 1.0, 421.0174865722656, 199.767822265625, 1.0, 476.837158203125, 200.84033203125, 1.0, 532.336181640625, 202.00994873046875, 1.0, 587.3486938476562, 203.10433959960938, 1.0, 642.0548706054688, 204.08148193359375, 1.0, 696.3103637695312, 205.0647735595703, 1.0, 750.4978637695312, 205.94570922851562, 1.0, 804.4378051757812, 206.7245330810547, 1.0, 305.29400634765625, 251.70648193359375, 1.0, 362.42022705078125, 252.62759399414062, 1.0, 419.2860107421875, 253.63816833496094, 1.0, 475.6411437988281, 254.48130798339844, 1.0, 531.5402221679688, 255.49632263183594, 1.0, 586.9119262695312, 256.3532409667969, 1.0, 642.00634765625, 257.1773681640625, 1.0, 696.7484130859375, 258.0205383300781, 1.0, 751.269775390625, 258.783447265625, 1.0, 805.6724243164062, 259.5240478515625, 1.0, 302.3778991699219, 306.930908203125, 1.0, 360.112548828125, 307.5931091308594, 1.0, 417.4335632324219, 308.3245849609375, 1.0, 474.3102722167969, 309.0472106933594, 1.0, 530.6464233398438, 309.798095703125, 1.0, 586.4880981445312, 310.50567626953125, 1.0, 642.003662109375, 311.1902770996094, 1.0, 697.0361938476562, 311.9040222167969, 1.0, 752.1559448242188, 312.4417724609375, 1.0, 806.916015625, 313.20819091796875, 1.0, 299.4371643066406, 362.7313537597656, 1.0, 357.59625244140625, 363.28399658203125, 1.0, 415.51141357421875, 363.7104187011719, 1.0, 472.8912658691406, 364.1990966796875, 1.0, 529.75634765625, 364.6706848144531, 1.0, 585.9862060546875, 365.16748046875, 1.0, 641.965576171875, 365.71087646484375, 1.0, 697.5985717773438, 366.25390625, 1.0, 753.0706787109375, 366.8179931640625, 1.0, 808.3512573242188, 367.4002380371094, 1.0, 296.39617919921875, 419.9400634765625, 1.0, 355.1092529296875, 420.18841552734375, 1.0, 413.455078125, 420.4613342285156, 1.0, 471.3776550292969, 420.5897216796875, 1.0, 528.7564086914062, 420.7899169921875, 1.0, 585.5467529296875, 421.0674743652344, 1.0, 642.030029296875, 421.5321350097656, 1.0, 698.0856323242188, 421.96405029296875, 1.0, 754.082763671875, 422.38983154296875, 1.0, 809.7734375, 422.83837890625, 1.0, 293.3817138671875, 478.1252746582031, 1.0, 352.51678466796875, 478.2461242675781, 1.0, 411.3543395996094, 478.2265930175781, 1.0, 469.6874084472656, 478.203857421875, 1.0, 527.6719970703125, 478.19580078125, 1.0, 585.0055541992188, 478.2484436035156, 1.0, 642.0932006835938, 478.4100036621094, 1.0, 698.6885375976562, 478.7031555175781, 1.0, 755.167724609375, 479.0627746582031, 1.0, 811.3567504882812, 479.35614013671875, 1.0, 290.4580078125, 537.2772216796875, 1.0, 349.79449462890625, 537.2780151367188, 1.0, 409.2420654296875, 537.1007080078125, 1.0, 468.06524658203125, 536.8866577148438, 1.0, 526.5357666015625, 536.6942749023438, 1.0, 584.5457153320312, 536.5875244140625, 1.0, 642.1632690429688, 536.5430908203125, 1.0, 699.3778076171875, 536.686767578125, 1.0, 756.3714599609375, 536.7965698242188, 1.0, 812.9877319335938, 537.0274658203125, 1.0, 287.6213073730469, 597.29638671875, 1.0, 347.38714599609375, 597.3792724609375, 1.0, 406.9443359375, 597.179931640625, 1.0, 466.4249572753906, 596.8087768554688, 1.0, 525.4024047851562, 596.5466918945312, 1.0, 584.0448608398438, 596.1166381835938, 1.0, 642.2442016601562, 595.9030151367188, 1.0, 700.0248413085938, 595.7808837890625, 1.0, 757.5565795898438, 595.7476806640625, 1.0, 814.6561279296875, 595.5823974609375, 1.0, 296.8892517089844, 95.14404296875, 1.0, 352.7386169433594, 95.94713592529297, 1.0, 408.5285339355469, 97.14013671875, 1.0, 464.0037536621094, 98.39030456542969, 1.0, 519.1376342773438, 99.70700073242188, 1.0, 573.8562622070312, 100.81312561035156, 1.0, 628.2998046875, 102.10398864746094, 1.0, 682.2696533203125, 103.20899200439453, 1.0, 736.1760864257812, 104.20503234863281, 1.0, 789.5725708007812, 105.3502197265625, 1.0, 293.9845275878906, 147.9398956298828, 1.0, 350.5769958496094, 148.85247802734375, 1.0, 406.87164306640625, 149.95433044433594, 1.0, 462.9093933105469, 151.12149047851562, 1.0, 518.4298706054688, 152.24208068847656, 1.0, 573.6973876953125, 153.39578247070312, 1.0, 628.3938598632812, 154.40261840820312, 1.0, 682.8727416992188, 155.35675048828125, 1.0, 737.12353515625, 156.21913146972656, 1.0, 791.0537719726562, 157.13546752929688, 1.0, 291.2637634277344, 201.9611053466797, 1.0, 348.373046875, 202.72496032714844, 1.0, 405.3501892089844, 203.68765258789062, 1.0, 461.75274658203125, 204.68568420410156, 1.0, 517.92236328125, 205.70758056640625, 1.0, 573.4432983398438, 206.58811950683594, 1.0, 628.5840454101562, 207.5324249267578, 1.0, 683.5011596679688, 208.2488555908203, 1.0, 738.1559448242188, 209.01954650878906, 1.0, 792.4221801757812, 209.7549591064453, 1.0, 288.41265869140625, 256.8511047363281, 1.0, 346.1528015136719, 257.608154296875, 1.0, 403.6189880371094, 258.33856201171875, 1.0, 460.680908203125, 259.081298828125, 1.0, 517.2125244140625, 259.905517578125, 1.0, 573.1650390625, 260.6456604003906, 1.0, 628.741943359375, 261.3067321777344, 1.0, 684.0037231445312, 261.98876953125, 1.0, 739.0504150390625, 262.56622314453125, 1.0, 793.9166870117188, 263.1116027832031, 1.0, 285.5141906738281, 312.8608093261719, 1.0, 343.91217041015625, 313.3655700683594, 1.0, 401.8579406738281, 313.9303283691406, 1.0, 459.43768310546875, 314.40234375, 1.0, 516.4506225585938, 314.9274597167969, 1.0, 572.8638916015625, 315.4813232421875, 1.0, 628.90966796875, 315.9566955566406, 1.0, 684.6002197265625, 316.4518737792969, 1.0, 740.0887451171875, 316.9797058105469, 1.0, 795.3822631835938, 317.48089599609375, 1.0, 282.58782958984375, 369.5839538574219, 1.0, 341.4418029785156, 369.8590087890625, 1.0, 400.0700988769531, 370.12860107421875, 1.0, 458.0722351074219, 370.3460388183594, 1.0, 515.6532592773438, 370.6483154296875, 1.0, 572.5634765625, 370.8384704589844, 1.0, 629.042236328125, 371.1936950683594, 1.0, 685.2224731445312, 371.6167297363281, 1.0, 741.189208984375, 371.9515686035156, 1.0, 796.89501953125, 372.30279541015625, 1.0, 279.5966491699219, 427.5830078125, 1.0, 338.9440612792969, 427.5841979980469, 1.0, 398.0123596191406, 427.6380615234375, 1.0, 456.5992126464844, 427.5875549316406, 1.0, 514.7145385742188, 427.5584411621094, 1.0, 572.1688842773438, 427.5902099609375, 1.0, 629.23193359375, 427.75579833984375, 1.0, 685.88427734375, 427.97320556640625, 1.0, 742.3908081054688, 428.2967224121094, 1.0, 798.6019287109375, 428.5817565917969, 1.0, 276.5882263183594, 486.5543212890625, 1.0, 336.3455505371094, 486.488037109375, 1.0, 395.94915771484375, 486.26580810546875, 1.0, 455.08428955078125, 485.9537658691406, 1.0, 513.6884765625, 485.6861572265625, 1.0, 571.7858276367188, 485.48468017578125, 1.0, 629.3887329101562, 485.40625, 1.0, 686.6203002929688, 485.44537353515625, 1.0, 743.6513061523438, 485.62109375, 1.0, 800.4546508789062, 485.746826171875, 1.0, 273.7018127441406, 546.5663452148438, 1.0, 333.73297119140625, 546.4503173828125, 1.0, 393.7567138671875, 546.0950927734375, 1.0, 453.4084167480469, 545.5863647460938, 1.0, 512.675537109375, 545.1099243164062, 1.0, 571.2911376953125, 544.7288208007812, 1.0, 629.5278930664062, 544.5078125, 1.0, 687.4000854492188, 544.35107421875, 1.0, 744.97216796875, 544.2291259765625, 1.0, 802.3071899414062, 544.189453125, 1.0, 271.0390930175781, 607.39453125, 1.0, 331.3667907714844, 607.370361328125, 1.0, 391.70562744140625, 606.9310913085938, 1.0, 451.7608947753906, 606.4649047851562, 1.0, 511.5834045410156, 605.793701171875, 1.0, 570.8412475585938, 605.2432250976562, 1.0, 629.7135620117188, 604.7095947265625, 1.0, 688.1810302734375, 604.3317260742188, 1.0, 746.3049926757812, 603.9056396484375, 1.0, 804.0278930664062, 603.5994873046875, 1.0, 260.9566345214844, 82.42631530761719, 1.0, 317.6853942871094, 82.82836151123047, 1.0, 374.52978515625, 83.36845397949219, 1.0, 430.94781494140625, 83.99442291259766, 1.0, 487.14410400390625, 84.85173797607422, 1.0, 542.8427124023438, 85.67693328857422, 1.0, 598.24267578125, 86.4360580444336, 1.0, 653.1502075195312, 87.26405334472656, 1.0, 707.6674194335938, 87.90425872802734, 1.0, 761.783447265625, 88.48574829101562, 1.0, 258.3793640136719, 136.00338745117188, 1.0, 315.7955627441406, 136.3417510986328, 1.0, 373.1758728027344, 136.830810546875, 1.0, 430.3249206542969, 137.4619903564453, 1.0, 486.96783447265625, 138.0888671875, 1.0, 543.1500854492188, 138.8403778076172, 1.0, 598.7919921875, 139.46815490722656, 1.0, 654.1058349609375, 139.98065185546875, 1.0, 708.9991455078125, 140.4222412109375, 1.0, 763.6514892578125, 140.82273864746094, 1.0, 255.88916015625, 190.6962127685547, 1.0, 314.0876770019531, 191.00482177734375, 1.0, 372.0453186035156, 191.36932373046875, 1.0, 429.6183166503906, 191.80630493164062, 1.0, 486.81890869140625, 192.27809143066406, 1.0, 543.35107421875, 192.71719360351562, 1.0, 599.4555053710938, 193.22177124023438, 1.0, 655.02490234375, 193.5970916748047, 1.0, 710.3878784179688, 193.78372192382812, 1.0, 765.4248046875, 193.9932861328125, 1.0, 253.51010131835938, 246.36521911621094, 1.0, 312.3487243652344, 246.4906005859375, 1.0, 370.8518371582031, 246.66378784179688, 1.0, 429.0341796875, 246.93106079101562, 1.0, 486.5991516113281, 247.1737060546875, 1.0, 543.65478515625, 247.4717559814453, 1.0, 600.0978393554688, 247.67825317382812, 1.0, 656.1609497070312, 247.82383728027344, 1.0, 711.8209838867188, 247.88876342773438, 1.0, 767.2823486328125, 247.8779296875, 1.0, 251.19386291503906, 303.17633056640625, 1.0, 310.4947814941406, 303.0459899902344, 1.0, 369.6361083984375, 303.0118103027344, 1.0, 428.38079833984375, 302.94097900390625, 1.0, 486.3614196777344, 302.9003601074219, 1.0, 543.869140625, 302.8948974609375, 1.0, 600.77490234375, 302.821044921875, 1.0, 657.1842041015625, 302.7596130371094, 1.0, 713.3531494140625, 302.69793701171875, 1.0, 769.180419921875, 302.6119079589844, 1.0, 248.836669921875, 360.52960205078125, 1.0, 308.6355285644531, 360.3075256347656, 1.0, 368.38372802734375, 359.9129638671875, 1.0, 427.5184631347656, 359.5826721191406, 1.0, 486.0862731933594, 359.24798583984375, 1.0, 544.0670776367188, 358.90069580078125, 1.0, 601.39501953125, 358.6542053222656, 1.0, 658.2675170898438, 358.4416198730469, 1.0, 714.8087158203125, 358.181396484375, 1.0, 771.2015991210938, 357.9858093261719, 1.0, 246.39198303222656, 419.3236999511719, 1.0, 306.7455749511719, 418.7654724121094, 1.0, 366.9902648925781, 418.16522216796875, 1.0, 426.6440734863281, 417.53662109375, 1.0, 485.767822265625, 416.8031311035156, 1.0, 544.2003784179688, 416.2917175292969, 1.0, 602.0635986328125, 415.67852783203125, 1.0, 659.4049072265625, 415.2513427734375, 1.0, 716.4605712890625, 414.8448791503906, 1.0, 773.2749633789062, 414.5089111328125, 1.0, 244.15921020507812, 478.9942932128906, 1.0, 304.8440246582031, 478.33636474609375, 1.0, 365.4908447265625, 477.38995361328125, 1.0, 425.6192321777344, 476.5004577636719, 1.0, 485.30584716796875, 475.41595458984375, 1.0, 544.3036499023438, 474.62945556640625, 1.0, 602.724853515625, 473.8197937011719, 1.0, 660.5921630859375, 473.116943359375, 1.0, 718.2933349609375, 472.578369140625, 1.0, 775.5112915039062, 472.0198059082031, 1.0, 242.0582733154297, 539.51513671875, 1.0, 302.9212646484375, 538.83837890625, 1.0, 363.8446960449219, 537.7350463867188, 1.0, 424.5864562988281, 536.6629638671875, 1.0, 484.7431335449219, 535.3682250976562, 1.0, 544.3602294921875, 534.2694702148438, 1.0, 603.3351440429688, 533.2251586914062, 1.0, 661.8108520507812, 532.3580932617188, 1.0, 720.0348510742188, 531.49365234375, 1.0, 777.7799682617188, 530.750732421875, 1.0, 240.1138458251953, 600.8367309570312, 1.0, 301.3034362792969, 600.2271728515625, 1.0, 362.5086669921875, 599.1571044921875, 1.0, 423.5204162597656, 597.8941650390625, 1.0, 484.2943115234375, 596.6040649414062, 1.0, 544.3450927734375, 595.1348876953125, 1.0, 604.03662109375, 593.8217163085938, 1.0, 663.1082763671875, 592.6506958007812, 1.0, 721.8103637695312, 591.5866088867188, 1.0, 780.1571044921875, 590.5408935546875, 1.0, 244.38864135742188, 57.31639099121094, 1.0, 301.2743225097656, 56.788272857666016, 1.0, 358.2739562988281, 56.38730239868164, 1.0, 415.077880859375, 56.29867172241211, 1.0, 471.7843322753906, 56.239322662353516, 1.0, 527.8106689453125, 56.2381591796875, 1.0, 583.5726928710938, 56.37381362915039, 1.0, 638.6142578125, 56.38056945800781, 1.0, 693.6315307617188, 56.355064392089844, 1.0, 748.1437377929688, 56.368194580078125, 1.0, 242.76683044433594, 110.83467102050781, 1.0, 300.4167785644531, 110.1409683227539, 1.0, 358.00274658203125, 109.85965728759766, 1.0, 415.4533386230469, 109.62311553955078, 1.0, 472.40509033203125, 109.51270294189453, 1.0, 529.0050659179688, 109.40449523925781, 1.0, 585.0234985351562, 109.307861328125, 1.0, 640.5812377929688, 109.11650085449219, 1.0, 695.8568725585938, 108.85821533203125, 1.0, 750.745361328125, 108.56730651855469, 1.0, 241.4107208251953, 165.3915252685547, 1.0, 299.6546325683594, 164.6421661376953, 1.0, 357.9005432128906, 164.2042694091797, 1.0, 415.8345947265625, 163.89089965820312, 1.0, 473.2738952636719, 163.62498474121094, 1.0, 530.2132568359375, 163.36727905273438, 1.0, 586.5518188476562, 163.03204345703125, 1.0, 642.4594116210938, 162.5907440185547, 1.0, 698.2070922851562, 162.1683807373047, 1.0, 753.3588256835938, 161.64675903320312, 1.0, 240.12237548828125, 220.82557678222656, 1.0, 299.10723876953125, 220.08004760742188, 1.0, 357.8700256347656, 219.476318359375, 1.0, 416.3575439453125, 218.91659545898438, 1.0, 474.1745300292969, 218.45004272460938, 1.0, 531.5264282226562, 217.89569091796875, 1.0, 588.2781982421875, 217.3905487060547, 1.0, 644.473876953125, 216.70721435546875, 1.0, 700.4644775390625, 216.04656982421875, 1.0, 756.0433959960938, 215.33908081054688, 1.0, 239.00706481933594, 277.41192626953125, 1.0, 298.5602722167969, 276.46575927734375, 1.0, 357.89691162109375, 275.6073303222656, 1.0, 416.8142395019531, 274.82342529296875, 1.0, 475.1004638671875, 273.98345947265625, 1.0, 532.72021484375, 273.2315368652344, 1.0, 589.8697509765625, 272.43280029296875, 1.0, 646.447265625, 271.6063232421875, 1.0, 702.6990356445312, 270.7257080078125, 1.0, 758.6585083007812, 269.85302734375, 1.0, 238.0730743408203, 334.546875, 1.0, 298.05059814453125, 333.45123291015625, 1.0, 357.90948486328125, 332.2812194824219, 1.0, 417.2986145019531, 331.2444152832031, 1.0, 476.048583984375, 330.0517272949219, 1.0, 534.1171264648438, 328.9454345703125, 1.0, 591.5587158203125, 327.94293212890625, 1.0, 648.5511474609375, 326.84381103515625, 1.0, 705.2517700195312, 325.8406677246094, 1.0, 761.5543212890625, 324.6946716308594, 1.0, 237.14456176757812, 392.8968505859375, 1.0, 297.4690246582031, 391.55462646484375, 1.0, 357.8349914550781, 390.169921875, 1.0, 417.5998229980469, 388.6800537109375, 1.0, 476.9543762207031, 387.2099609375, 1.0, 535.414794921875, 385.7467041015625, 1.0, 593.3668212890625, 384.4931945800781, 1.0, 650.6727905273438, 383.22357177734375, 1.0, 707.7543334960938, 381.984130859375, 1.0, 764.5380859375, 380.7422790527344, 1.0, 236.35650634765625, 452.1417541503906, 1.0, 297.0132751464844, 450.55157470703125, 1.0, 357.7118225097656, 448.8211364746094, 1.0, 418.0377197265625, 447.0473327636719, 1.0, 477.685791015625, 445.2648620605469, 1.0, 536.65478515625, 443.5211181640625, 1.0, 595.1238403320312, 441.88372802734375, 1.0, 652.9290161132812, 440.4321594238281, 1.0, 710.4563598632812, 439.0115051269531, 1.0, 767.678466796875, 437.6048583984375, 1.0, 235.59902954101562, 512.2688598632812, 1.0, 296.583984375, 510.50799560546875, 1.0, 357.5957946777344, 508.6040344238281, 1.0, 418.3041687011719, 506.5338134765625, 1.0, 478.44366455078125, 504.46160888671875, 1.0, 537.9457397460938, 502.4307556152344, 1.0, 596.8307495117188, 500.535400390625, 1.0, 655.2926025390625, 498.6565246582031, 1.0, 713.3531494140625, 497.0531005859375, 1.0, 770.9360961914062, 495.5361022949219, 1.0, 235.28077697753906, 572.9100341796875, 1.0, 296.3547668457031, 571.2650756835938, 1.0, 357.6462097167969, 569.207275390625, 1.0, 418.6728515625, 567.009033203125, 1.0, 479.26312255859375, 564.6893920898438, 1.0, 539.3074951171875, 562.3662719726562, 1.0, 598.6693115234375, 560.2539672851562, 1.0, 657.5946044921875, 558.242431640625, 1.0, 716.25, 556.2607421875, 1.0, 774.3623657226562, 554.3781127929688, 1.0, 331.38702392578125, 66.31144714355469, 1.0, 387.2265625, 65.1274185180664, 1.0, 443.25030517578125, 64.0546646118164, 1.0, 498.7843933105469, 63.029964447021484, 1.0, 554.3452758789062, 62.1325569152832, 1.0, 609.5474853515625, 61.102813720703125, 1.0, 664.5518188476562, 60.06117248535156, 1.0, 719.2849731445312, 59.08842086791992, 1.0, 773.8117065429688, 58.02892303466797, 1.0, 828.095703125, 57.15748596191406, 1.0, 331.4847412109375, 119.5956802368164, 1.0, 387.9728088378906, 118.29780578613281, 1.0, 444.40435791015625, 117.29666900634766, 1.0, 500.4873962402344, 116.23914337158203, 1.0, 556.3796997070312, 115.27733612060547, 1.0, 611.9735717773438, 114.11529541015625, 1.0, 667.2704467773438, 112.97578430175781, 1.0, 722.484130859375, 111.82303619384766, 1.0, 777.3316040039062, 110.63214874267578, 1.0, 832.1399536132812, 109.55361938476562, 1.0, 331.72149658203125, 173.81741333007812, 1.0, 388.77008056640625, 172.5113067626953, 1.0, 445.6895751953125, 171.47584533691406, 1.0, 502.1932373046875, 170.3311767578125, 1.0, 558.4212646484375, 169.2489013671875, 1.0, 614.28759765625, 168.05325317382812, 1.0, 669.9938354492188, 166.72525024414062, 1.0, 725.4620971679688, 165.4764862060547, 1.0, 780.8568725585938, 164.03689575195312, 1.0, 836.0073852539062, 162.77420043945312, 1.0, 332.11932373046875, 228.88241577148438, 1.0, 389.68292236328125, 227.63255310058594, 1.0, 446.9317932128906, 226.3555145263672, 1.0, 503.94091796875, 225.0772247314453, 1.0, 560.527099609375, 223.8831787109375, 1.0, 616.706298828125, 222.4754180908203, 1.0, 672.7573852539062, 221.11190795898438, 1.0, 728.6216430664062, 219.73619079589844, 1.0, 784.413818359375, 218.19741821289062, 1.0, 840.0046997070312, 216.7411651611328, 1.0, 332.4833068847656, 284.927734375, 1.0, 390.5203857421875, 283.4914855957031, 1.0, 448.31329345703125, 282.06927490234375, 1.0, 505.6285400390625, 280.5610046386719, 1.0, 562.5633544921875, 279.23309326171875, 1.0, 619.191162109375, 277.7519226074219, 1.0, 675.5798950195312, 276.2462463378906, 1.0, 731.7655029296875, 274.6502990722656, 1.0, 787.9385375976562, 273.2113952636719, 1.0, 844.0724487304688, 271.7356262207031, 1.0, 332.7581481933594, 341.5823059082031, 1.0, 391.3553466796875, 339.85247802734375, 1.0, 449.5505676269531, 338.1965637207031, 1.0, 507.35455322265625, 336.56549072265625, 1.0, 564.6514282226562, 334.9453125, 1.0, 621.560791015625, 333.4496765136719, 1.0, 678.44287109375, 331.8432312011719, 1.0, 735.041259765625, 330.2577209472656, 1.0, 791.6287841796875, 328.6319274902344, 1.0, 848.2421264648438, 327.09503173828125, 1.0, 333.0799255371094, 399.3621826171875, 1.0, 392.06011962890625, 397.4433288574219, 1.0, 450.74835205078125, 395.5361328125, 1.0, 508.83587646484375, 393.69061279296875, 1.0, 566.7211303710938, 391.8701171875, 1.0, 624.1985473632812, 390.1554260253906, 1.0, 681.3866577148438, 388.4717102050781, 1.0, 738.4513549804688, 386.803955078125, 1.0, 795.4798583984375, 385.20849609375, 1.0, 852.4392700195312, 383.59747314453125, 1.0, 333.2707824707031, 457.9400329589844, 1.0, 392.70416259765625, 455.8562316894531, 1.0, 451.78253173828125, 453.82135009765625, 1.0, 510.44964599609375, 451.6861877441406, 1.0, 568.7487182617188, 449.6803894042969, 1.0, 626.6285400390625, 447.8067932128906, 1.0, 684.396728515625, 446.1763916015625, 1.0, 741.9396362304688, 444.4481201171875, 1.0, 799.5090942382812, 442.73223876953125, 1.0, 856.7984008789062, 441.05474853515625, 1.0, 333.4801330566406, 517.5631103515625, 1.0, 393.322265625, 515.421142578125, 1.0, 452.88677978515625, 513.216796875, 1.0, 511.9911804199219, 510.98199462890625, 1.0, 570.8177490234375, 508.6988220214844, 1.0, 629.3317260742188, 506.7953796386719, 1.0, 687.5689086914062, 504.8127136230469, 1.0, 745.5851440429688, 503.05621337890625, 1.0, 803.5384521484375, 501.256591796875, 1.0, 861.3499755859375, 499.4419250488281, 1.0, 333.7627258300781, 578.0827026367188, 1.0, 393.8860168457031, 575.965576171875, 1.0, 453.87457275390625, 573.5985717773438, 1.0, 513.619384765625, 571.2516479492188, 1.0, 572.9703369140625, 568.9989013671875, 1.0, 631.947021484375, 566.8251342773438, 1.0, 690.7227783203125, 564.7560424804688, 1.0, 749.2933959960938, 562.7139892578125, 1.0, 807.7158203125, 560.869384765625, 1.0, 865.8280639648438, 558.7432250976562, 1.0, 467.7721252441406, 50.541175842285156, 1.0, 521.4026489257812, 52.03114318847656, 1.0, 574.8765869140625, 53.571983337402344, 1.0, 628.2111206054688, 55.09474563598633, 1.0, 681.6925048828125, 56.623390197753906, 1.0, 734.84814453125, 58.075035095214844, 1.0, 787.9786987304688, 59.617610931396484, 1.0, 840.99169921875, 61.29400634765625, 1.0, 893.6653442382812, 62.96323013305664, 1.0, 946.1473388671875, 64.69283294677734, 1.0, 465.71533203125, 100.36735534667969, 1.0, 519.7529296875, 101.93852233886719, 1.0, 573.6258544921875, 103.4357681274414, 1.0, 627.3268432617188, 104.95520782470703, 1.0, 681.0348510742188, 106.42422485351562, 1.0, 734.6992797851562, 107.78523254394531, 1.0, 788.28857421875, 109.20993041992188, 1.0, 841.7346801757812, 110.64987182617188, 1.0, 894.8449096679688, 112.12666320800781, 1.0, 947.96826171875, 113.77091217041016, 1.0, 463.59228515625, 150.90660095214844, 1.0, 517.9771728515625, 152.41476440429688, 1.0, 572.3209228515625, 154.00193786621094, 1.0, 626.34619140625, 155.4174346923828, 1.0, 680.4124145507812, 156.9347686767578, 1.0, 734.41748046875, 158.1389617919922, 1.0, 788.5294189453125, 159.4884796142578, 1.0, 842.3119506835938, 160.8533172607422, 1.0, 896.2225341796875, 162.21897888183594, 1.0, 949.5276489257812, 163.77200317382812, 1.0, 461.48388671875, 202.31153869628906, 1.0, 516.3855590820312, 203.8376007080078, 1.0, 571.0440673828125, 205.30250549316406, 1.0, 625.5016479492188, 206.76625061035156, 1.0, 679.900146484375, 208.08914184570312, 1.0, 734.2115478515625, 209.3489990234375, 1.0, 788.6223754882812, 210.5609588623047, 1.0, 842.993408203125, 211.8440704345703, 1.0, 897.24755859375, 213.26483154296875, 1.0, 951.2422485351562, 214.6495819091797, 1.0, 459.5333557128906, 254.359619140625, 1.0, 514.6558837890625, 255.72792053222656, 1.0, 569.73095703125, 257.2015380859375, 1.0, 624.5614013671875, 258.4619140625, 1.0, 679.333251953125, 259.9006042480469, 1.0, 733.9605712890625, 261.18359375, 1.0, 788.7802734375, 262.40069580078125, 1.0, 843.6654052734375, 263.62872314453125, 1.0, 898.4397583007812, 264.8821105957031, 1.0, 952.848388671875, 266.2051086425781, 1.0, 457.3913879394531, 306.8385314941406, 1.0, 512.9425048828125, 308.2452087402344, 1.0, 568.322509765625, 309.5697021484375, 1.0, 623.5963134765625, 310.8362121582031, 1.0, 678.626708984375, 312.1278381347656, 1.0, 733.8234252929688, 313.3612365722656, 1.0, 789.1055297851562, 314.5527038574219, 1.0, 844.3599243164062, 315.78216552734375, 1.0, 899.546142578125, 317.2289123535156, 1.0, 954.4664306640625, 318.5267639160156, 1.0, 455.1519775390625, 360.50201416015625, 1.0, 511.25811767578125, 361.57708740234375, 1.0, 567.1099243164062, 362.82733154296875, 1.0, 622.69384765625, 364.01751708984375, 1.0, 678.2877807617188, 365.36273193359375, 1.0, 733.7946166992188, 366.5826721191406, 1.0, 789.5023803710938, 367.8034362792969, 1.0, 845.17822265625, 369.117919921875, 1.0, 900.802734375, 370.4038391113281, 1.0, 956.1788330078125, 371.6942138671875, 1.0, 452.83941650390625, 414.8336486816406, 1.0, 509.4413146972656, 415.9193420410156, 1.0, 565.7122802734375, 417.0110168457031, 1.0, 621.7756958007812, 418.093017578125, 1.0, 677.8518676757812, 419.4151611328125, 1.0, 733.8726196289062, 420.6537170410156, 1.0, 790.0122680664062, 421.9267578125, 1.0, 846.0882568359375, 423.2735290527344, 1.0, 902.065673828125, 424.4646301269531, 1.0, 957.8114624023438, 425.6051330566406, 1.0, 450.51507568359375, 470.2347412109375, 1.0, 507.553955078125, 471.1822509765625, 1.0, 564.4015502929688, 472.1051940917969, 1.0, 620.8782958984375, 473.25885009765625, 1.0, 677.523193359375, 474.4219055175781, 1.0, 733.9855346679688, 475.69488525390625, 1.0, 790.601806640625, 477.03656005859375, 1.0, 847.1112670898438, 478.28118896484375, 1.0, 903.5673217773438, 479.4499206542969, 1.0, 959.5399169921875, 480.5431213378906, 1.0, 448.18463134765625, 526.5739135742188, 1.0, 505.6851806640625, 527.5567626953125, 1.0, 563.1080932617188, 528.4822387695312, 1.0, 620.1602172851562, 529.4149780273438, 1.0, 677.2771606445312, 530.6431274414062, 1.0, 734.289306640625, 531.822998046875, 1.0, 791.3129272460938, 533.0811767578125, 1.0, 848.2955322265625, 534.29345703125, 1.0, 904.9408569335938, 535.29345703125, 1.0, 961.30419921875, 536.224609375, 1.0, 386.50921630859375, 90.41997528076172, 1.0, 453.4575500488281, 89.29906463623047, 1.0, 520.5939331054688, 88.35904693603516, 1.0, 587.6065673828125, 87.45735168457031, 1.0, 654.5802612304688, 86.41761779785156, 1.0, 721.4019775390625, 85.35706329345703, 1.0, 788.5531616210938, 84.29907989501953, 1.0, 855.5183715820312, 83.31267547607422, 1.0, 922.3777465820312, 82.55215454101562, 1.0, 988.5923461914062, 82.21830749511719, 1.0, 393.43597412109375, 155.1787109375, 1.0, 458.63970947265625, 154.3166961669922, 1.0, 523.8352661132812, 153.48731994628906, 1.0, 588.9150390625, 152.51504516601562, 1.0, 654.0624389648438, 151.52088928222656, 1.0, 718.8269653320312, 150.45346069335938, 1.0, 784.240234375, 149.427490234375, 1.0, 849.4907836914062, 148.17575073242188, 1.0, 914.6447143554688, 147.37889099121094, 1.0, 979.3677368164062, 146.62423706054688, 1.0, 400.0773620605469, 216.64222717285156, 1.0, 463.5846252441406, 215.7394561767578, 1.0, 527.0167846679688, 214.900390625, 1.0, 590.218994140625, 214.06182861328125, 1.0, 653.5283203125, 213.05307006835938, 1.0, 716.5181884765625, 212.0395965576172, 1.0, 780.11572265625, 210.88180541992188, 1.0, 843.6185913085938, 209.8480987548828, 1.0, 907.2791748046875, 208.83485412597656, 1.0, 970.4656982421875, 208.03286743164062, 1.0, 406.4349365234375, 274.87127685546875, 1.0, 468.2898864746094, 273.9713134765625, 1.0, 529.9609375, 273.1335754394531, 1.0, 591.5157470703125, 272.2124328613281, 1.0, 653.015625, 271.2820129394531, 1.0, 714.3486328125, 270.2937927246094, 1.0, 776.2294311523438, 269.2603759765625, 1.0, 838.07421875, 268.2032165527344, 1.0, 900.0709838867188, 267.2386779785156, 1.0, 961.7973022460938, 266.2869567871094, 1.0, 412.3881530761719, 330.07415771484375, 1.0, 472.672607421875, 329.11212158203125, 1.0, 532.6946411132812, 328.2377014160156, 1.0, 592.71044921875, 327.2373046875, 1.0, 652.5096435546875, 326.3877868652344, 1.0, 712.3815307617188, 325.3690490722656, 1.0, 772.5543212890625, 324.4652404785156, 1.0, 832.8138427734375, 323.5352478027344, 1.0, 893.395263671875, 322.5927429199219, 1.0, 953.6814575195312, 321.9242248535156, 1.0, 417.94842529296875, 382.4625244140625, 1.0, 476.6262512207031, 381.38525390625, 1.0, 535.3797607421875, 380.4699401855469, 1.0, 593.7567749023438, 379.46075439453125, 1.0, 652.2255249023438, 378.6477355957031, 1.0, 710.4285888671875, 377.7283020019531, 1.0, 769.2691040039062, 377.0269470214844, 1.0, 827.8401489257812, 376.2479553222656, 1.0, 886.9031982421875, 375.46533203125, 1.0, 945.8015747070312, 374.5672607421875, 1.0, 423.2232360839844, 432.34564208984375, 1.0, 480.6138916015625, 431.2414245605469, 1.0, 537.6802368164062, 430.2545166015625, 1.0, 594.90771484375, 429.27423095703125, 1.0, 651.8340454101562, 428.4709777832031, 1.0, 708.6958618164062, 427.6544494628906, 1.0, 766.1150512695312, 426.8497314453125, 1.0, 823.4942626953125, 426.2521057128906, 1.0, 881.0690307617188, 425.46649169921875, 1.0, 938.4609985351562, 424.83489990234375, 1.0, 428.18719482421875, 479.9835510253906, 1.0, 484.1448669433594, 478.8968505859375, 1.0, 540.1253662109375, 477.8356018066406, 1.0, 595.800537109375, 476.8941345214844, 1.0, 651.6287841796875, 476.0894470214844, 1.0, 707.1754150390625, 475.3725891113281, 1.0, 763.2382202148438, 474.6764831542969, 1.0, 819.1763916015625, 473.9945373535156, 1.0, 875.3695068359375, 473.37689208984375, 1.0, 931.3886108398438, 472.5371398925781, 1.0, 432.83935546875, 525.5704345703125, 1.0, 487.65997314453125, 524.40869140625, 1.0, 542.3162231445312, 523.4266967773438, 1.0, 596.9161376953125, 522.5545654296875, 1.0, 651.3970336914062, 521.6319580078125, 1.0, 705.7130126953125, 520.9564208984375, 1.0, 760.443115234375, 520.2681884765625, 1.0, 815.2617797851562, 519.6559448242188, 1.0, 869.9576416015625, 518.9141845703125, 1.0, 924.642333984375, 518.1961669921875, 1.0, 437.47381591796875, 569.0297241210938, 1.0, 490.8380126953125, 568.0679321289062, 1.0, 544.4422607421875, 567.1192016601562, 1.0, 597.7433471679688, 566.2131958007812, 1.0, 651.2424926757812, 565.3102416992188, 1.0, 704.3572998046875, 564.651611328125, 1.0, 757.8521118164062, 563.9810180664062, 1.0, 811.3849487304688, 563.2593383789062, 1.0, 864.8711547851562, 562.74072265625, 1.0, 918.1403198242188, 561.798583984375, 1.0, 424.1822509765625, 598.1376953125, 1.0, 420.25628662109375, 556.820068359375, 1.0, 416.41021728515625, 513.6485595703125, 1.0, 412.1761474609375, 468.629638671875, 1.0, 407.7641296386719, 421.2728271484375, 1.0, 403.14312744140625, 371.8020935058594, 1.0, 398.1495056152344, 319.7194519042969, 1.0, 392.68975830078125, 264.897705078125, 1.0, 386.9725036621094, 207.09005737304688, 1.0, 380.9356384277344, 146.09226989746094, 1.0, 476.6064758300781, 598.1198120117188, 1.0, 474.1413879394531, 556.7998657226562, 1.0, 471.38134765625, 513.6213989257812, 1.0, 468.6329040527344, 468.5450439453125, 1.0, 465.55816650390625, 421.25439453125, 1.0, 462.3700866699219, 371.88861083984375, 1.0, 458.7711486816406, 320.0373840332031, 1.0, 455.0003356933594, 265.3279113769531, 1.0, 450.9554748535156, 207.49359130859375, 1.0, 446.6451110839844, 146.4963836669922, 1.0, 529.306640625, 597.9630126953125, 1.0, 527.7413330078125, 556.7577514648438, 1.0, 526.3670654296875, 513.451904296875, 1.0, 524.806884765625, 468.5519714355469, 1.0, 523.1588745117188, 421.3309631347656, 1.0, 521.232177734375, 372.0360412597656, 1.0, 519.3379516601562, 320.2080078125, 1.0, 517.13671875, 265.6449279785156, 1.0, 514.6957397460938, 208.0413360595703, 1.0, 512.2320556640625, 147.0310516357422, 1.0, 581.5343017578125, 598.03759765625, 1.0, 581.2935791015625, 556.72265625, 1.0, 581.0076904296875, 513.5849609375, 1.0, 580.6550903320312, 468.57049560546875, 1.0, 580.29541015625, 421.4378356933594, 1.0, 579.9541625976562, 372.2200927734375, 1.0, 579.3731689453125, 320.4676208496094, 1.0, 578.9415893554688, 265.9620666503906, 1.0, 578.2451171875, 208.3604278564453, 1.0, 577.6160888671875, 147.48818969726562, 1.0, 633.9476928710938, 598.2186279296875, 1.0, 634.7156372070312, 556.8306274414062, 1.0, 635.6282348632812, 513.7238159179688, 1.0, 636.5133666992188, 468.8490295410156, 1.0, 637.4279174804688, 421.66925048828125, 1.0, 638.4268188476562, 372.4727783203125, 1.0, 639.41943359375, 320.796142578125, 1.0, 640.5000610351562, 266.39166259765625, 1.0, 641.670166015625, 208.7842254638672, 1.0, 642.8084716796875, 147.93734741210938, 1.0, 685.9348754882812, 598.3770751953125, 1.0, 687.8716430664062, 557.1309814453125, 1.0, 689.9501953125, 514.0474243164062, 1.0, 692.1348266601562, 469.0340270996094, 1.0, 694.3436889648438, 422.0047607421875, 1.0, 696.6847534179688, 372.7450256347656, 1.0, 699.185546875, 320.9873046875, 1.0, 701.7802124023438, 266.56805419921875, 1.0, 704.64208984375, 209.0064239501953, 1.0, 707.6722412109375, 148.2964630126953, 1.0, 738.2401123046875, 598.6369018554688, 1.0, 741.3360595703125, 557.3472290039062, 1.0, 744.6066284179688, 514.447021484375, 1.0, 748.05859375, 469.3084411621094, 1.0, 751.5546875, 422.3623352050781, 1.0, 755.3123779296875, 373.02911376953125, 1.0, 759.299560546875, 321.2758483886719, 1.0, 763.5484619140625, 266.74822998046875, 1.0, 768.1112670898438, 209.2239990234375, 1.0, 772.8361206054688, 148.46434020996094, 1.0, 790.42138671875, 598.8495483398438, 1.0, 794.712158203125, 557.6881713867188, 1.0, 799.2111206054688, 514.7726440429688, 1.0, 803.8209838867188, 469.7929382324219, 1.0, 808.7970581054688, 422.7330017089844, 1.0, 813.9046020507812, 373.3104553222656, 1.0, 819.43603515625, 321.5857238769531, 1.0, 825.3090209960938, 267.097412109375, 1.0, 831.4404296875, 209.53524780273438, 1.0, 837.8041381835938, 148.79335021972656, 1.0, 842.5821533203125, 599.04541015625, 1.0, 848.1402587890625, 557.881103515625, 1.0, 853.7739868164062, 515.0753784179688, 1.0, 859.815185546875, 470.1009521484375, 1.0, 866.1166381835938, 423.05816650390625, 1.0, 872.67626953125, 373.73931884765625, 1.0, 879.6768798828125, 321.9425048828125, 1.0, 887.0678100585938, 267.3251953125, 1.0, 894.7588500976562, 209.86038208007812, 1.0, 902.8028564453125, 149.3086700439453, 1.0, 894.4312744140625, 599.0637817382812, 1.0, 901.416748046875, 558.1522216796875, 1.0, 908.302978515625, 515.270751953125, 1.0, 915.6181640625, 470.4214172363281, 1.0, 923.314697265625, 423.3450927734375, 1.0, 931.3248901367188, 374.11431884765625, 1.0, 939.7333984375, 322.0914001464844, 1.0, 948.572021484375, 267.6921081542969, 1.0, 957.6658325195312, 210.18222045898438, 1.0, 967.3153686523438, 149.9824676513672, 1.0, 393.8297424316406, 194.7563018798828, 1.0, 459.2734069824219, 195.3829345703125, 1.0, 524.6072387695312, 196.09910583496094, 1.0, 589.7449340820312, 196.61962890625, 1.0, 654.7000122070312, 197.18260192871094, 1.0, 719.6304931640625, 197.57984924316406, 1.0, 784.9951782226562, 197.98898315429688, 1.0, 850.1150512695312, 198.45474243164062, 1.0, 915.3496704101562, 198.84031677246094, 1.0, 980.0328369140625, 199.70494079589844, 1.0, 399.2080993652344, 254.9443359375, 1.0, 462.841796875, 255.51231384277344, 1.0, 526.5086669921875, 256.1051025390625, 1.0, 589.7852783203125, 256.69720458984375, 1.0, 653.174560546875, 257.1168212890625, 1.0, 716.0628051757812, 257.5921936035156, 1.0, 779.5753784179688, 258.05401611328125, 1.0, 843.2108154296875, 258.4256591796875, 1.0, 906.6936645507812, 259.0137634277344, 1.0, 969.9658813476562, 259.5090026855469, 1.0, 404.2528381347656, 312.03814697265625, 1.0, 466.3951721191406, 312.445556640625, 1.0, 528.2108154296875, 312.967041015625, 1.0, 589.8321533203125, 313.45562744140625, 1.0, 651.449462890625, 313.964111328125, 1.0, 712.8289184570312, 314.4560241699219, 1.0, 774.68798828125, 314.8857421875, 1.0, 836.5980834960938, 315.4409484863281, 1.0, 898.6963500976562, 315.93499755859375, 1.0, 960.40380859375, 316.472412109375, 1.0, 408.9872741699219, 366.1381530761719, 1.0, 469.4587707519531, 366.53173828125, 1.0, 529.7167358398438, 366.8796691894531, 1.0, 589.8308715820312, 367.347900390625, 1.0, 649.9508056640625, 367.8711853027344, 1.0, 709.7288818359375, 368.3857116699219, 1.0, 770.1180419921875, 368.891845703125, 1.0, 830.4370727539062, 369.45654296875, 1.0, 890.9073486328125, 370.1465759277344, 1.0, 951.2718505859375, 370.4950256347656, 1.0, 413.3587341308594, 417.69580078125, 1.0, 472.4224548339844, 418.0127868652344, 1.0, 531.2125854492188, 418.34979248046875, 1.0, 589.8768310546875, 418.7243347167969, 1.0, 648.516357421875, 419.1184997558594, 1.0, 706.9234619140625, 419.6767883300781, 1.0, 765.722412109375, 420.30975341796875, 1.0, 824.6965942382812, 420.97698974609375, 1.0, 883.7317504882812, 421.5036926269531, 1.0, 942.5438842773438, 422.1340637207031, 1.0, 417.49566650390625, 466.8861999511719, 1.0, 475.09124755859375, 467.1126403808594, 1.0, 532.6051635742188, 467.36004638671875, 1.0, 589.8580322265625, 467.6849365234375, 1.0, 647.2308349609375, 468.18798828125, 1.0, 704.2584838867188, 468.73870849609375, 1.0, 761.7343139648438, 469.3503723144531, 1.0, 819.2661743164062, 470.0211486816406, 1.0, 876.806640625, 470.6956481933594, 1.0, 934.183837890625, 471.091552734375, 1.0, 421.3819885253906, 513.9078979492188, 1.0, 477.6742248535156, 514.0354614257812, 1.0, 533.8493041992188, 514.2996215820312, 1.0, 589.9188842773438, 514.580322265625, 1.0, 645.9378662109375, 515.0213012695312, 1.0, 701.6920776367188, 515.5916137695312, 1.0, 757.8532104492188, 516.1831665039062, 1.0, 814.10009765625, 516.8919067382812, 1.0, 870.2357788085938, 517.4800415039062, 1.0, 926.3007202148438, 517.9818725585938, 1.0, 425.1658630371094, 558.79541015625, 1.0, 480.14874267578125, 559.02294921875, 1.0, 535.1846923828125, 559.0742797851562, 1.0, 589.9005737304688, 559.3916015625, 1.0, 644.73193359375, 560.0631713867188, 1.0, 699.3142700195312, 560.530029296875, 1.0, 754.27783203125, 561.141357421875, 1.0, 809.0802001953125, 561.6567993164062, 1.0, 864.04833984375, 562.1941528320312, 1.0, 918.6303100585938, 562.6035766601562, 1.0, 428.55963134765625, 601.8195190429688, 1.0, 482.5380859375, 602.050048828125, 1.0, 536.2570190429688, 602.3204345703125, 1.0, 589.8988037109375, 602.5390014648438, 1.0, 643.632080078125, 602.9371337890625, 1.0, 697.1204223632812, 603.4707641601562, 1.0, 750.7239379882812, 603.930419921875, 1.0, 804.4451293945312, 604.5458374023438, 1.0, 857.9659423828125, 604.9707641601562, 1.0, 911.3245849609375, 605.3023071289062, 1.0, 432.3031311035156, 642.7886962890625, 1.0, 484.7672424316406, 643.1226196289062, 1.0, 537.4141845703125, 643.4694213867188, 1.0, 589.8662109375, 643.7451171875, 1.0, 642.5113525390625, 644.175537109375, 1.0, 694.6671752929688, 644.5873413085938, 1.0, 747.3894653320312, 645.0680541992188, 1.0, 799.6577758789062, 645.3878173828125, 1.0, 852.120361328125, 645.6927490234375, 1.0, 904.2418212890625, 645.704345703125, 1.0, 448.72113037109375, 146.611083984375, 1.0, 515.7816772460938, 148.6020965576172, 1.0, 583.0280151367188, 150.66390991210938, 1.0, 650.3270263671875, 152.5623779296875, 1.0, 717.6525268554688, 154.52000427246094, 1.0, 785.2073364257812, 156.3843231201172, 1.0, 853.1979370117188, 158.25942993164062, 1.0, 920.9315185546875, 160.36334228515625, 1.0, 988.7183227539062, 162.6113739013672, 1.0, 1055.775146484375, 165.2153778076172, 1.0, 452.2490234375, 209.21334838867188, 1.0, 517.3952026367188, 211.31773376464844, 1.0, 582.5392456054688, 213.343017578125, 1.0, 647.7809448242188, 215.33847045898438, 1.0, 713.3659057617188, 217.189208984375, 1.0, 778.774169921875, 218.99476623535156, 1.0, 844.8326416015625, 220.87388610839844, 1.0, 910.984130859375, 222.82382202148438, 1.0, 977.0950317382812, 224.98568725585938, 1.0, 1042.5579833984375, 227.3519287109375, 1.0, 455.4114685058594, 268.3542785644531, 1.0, 518.790771484375, 270.4244079589844, 1.0, 582.2244262695312, 272.419677734375, 1.0, 645.5126953125, 274.4112548828125, 1.0, 709.2619018554688, 276.3208312988281, 1.0, 772.8219604492188, 278.27996826171875, 1.0, 837.1989135742188, 280.1733093261719, 1.0, 901.4998779296875, 282.211181640625, 1.0, 965.9967651367188, 284.1767883300781, 1.0, 1029.91650390625, 286.446044921875, 1.0, 458.5245056152344, 324.16485595703125, 1.0, 520.1502075195312, 326.16064453125, 1.0, 581.8101806640625, 328.16619873046875, 1.0, 643.4326782226562, 330.0865478515625, 1.0, 705.3917236328125, 332.075439453125, 1.0, 767.270751953125, 334.02996826171875, 1.0, 829.7918701171875, 336.1214294433594, 1.0, 892.5657958984375, 338.2459716796875, 1.0, 955.3695678710938, 340.4080505371094, 1.0, 1017.716796875, 342.4044494628906, 1.0, 461.32476806640625, 377.1109313964844, 1.0, 521.4470825195312, 379.0239562988281, 1.0, 581.3771362304688, 380.8377380371094, 1.0, 641.5010986328125, 382.89312744140625, 1.0, 701.6920776367188, 384.9337158203125, 1.0, 762.1189575195312, 387.0987243652344, 1.0, 823.041748046875, 389.2687072753906, 1.0, 884.1793823242188, 391.4458312988281, 1.0, 945.365966796875, 393.4140930175781, 1.0, 1006.1777954101562, 395.59271240234375, 1.0, 463.8746032714844, 427.42315673828125, 1.0, 522.4485473632812, 429.2563171386719, 1.0, 581.063720703125, 431.2025146484375, 1.0, 639.5484008789062, 433.16998291015625, 1.0, 698.3897094726562, 435.3130798339844, 1.0, 757.1760864257812, 437.4088134765625, 1.0, 816.5590209960938, 439.68609619140625, 1.0, 876.0181884765625, 441.73919677734375, 1.0, 935.6713256835938, 443.991455078125, 1.0, 994.957275390625, 445.99420166015625, 1.0, 466.2864685058594, 475.38848876953125, 1.0, 523.4562377929688, 477.2315368652344, 1.0, 580.5221557617188, 478.96612548828125, 1.0, 637.7109985351562, 481.0667724609375, 1.0, 695.242431640625, 483.2464904785156, 1.0, 752.589111328125, 485.44781494140625, 1.0, 810.4766235351562, 487.56329345703125, 1.0, 868.51318359375, 489.83575439453125, 1.0, 926.5992431640625, 491.94793701171875, 1.0, 984.4119873046875, 494.05462646484375, 1.0, 468.51483154296875, 521.1782836914062, 1.0, 524.2996826171875, 522.9649047851562, 1.0, 580.2655029296875, 524.8324584960938, 1.0, 636.1163940429688, 526.8577880859375, 1.0, 692.1901245117188, 529.0270385742188, 1.0, 748.1946411132812, 531.2239379882812, 1.0, 804.638671875, 533.4249267578125, 1.0, 861.2992553710938, 535.4968872070312, 1.0, 917.8367919921875, 537.577880859375, 1.0, 974.2109985351562, 539.48828125, 1.0, 470.63397216796875, 565.0159912109375, 1.0, 525.191650390625, 566.777587890625, 1.0, 579.7889404296875, 568.7064208984375, 1.0, 634.4772338867188, 570.6505737304688, 1.0, 689.3158569335938, 572.7189331054688, 1.0, 744.0576171875, 574.8646850585938, 1.0, 799.213134765625, 577.0563354492188, 1.0, 854.3814697265625, 579.2647094726562, 1.0, 909.5722045898438, 581.1387939453125, 1.0, 964.390625, 582.9302368164062, 1.0, 472.7275085449219, 606.673583984375, 1.0, 526.0217895507812, 608.6364135742188, 1.0, 579.4767456054688, 610.5494995117188, 1.0, 632.7870483398438, 612.5604248046875, 1.0, 686.5541381835938, 614.5625610351562, 1.0, 739.9789428710938, 616.6944580078125, 1.0, 793.8274536132812, 618.7529907226562, 1.0, 847.5945434570312, 620.7140502929688, 1.0, 901.44384765625, 622.66552734375, 1.0, 954.8556518554688, 624.2784423828125, 1.0, 298.49700927734375, 132.49554443359375, 1.0, 365.899169921875, 133.31564331054688, 1.0, 433.7948303222656, 134.20062255859375, 1.0, 501.6074523925781, 135.1619415283203, 1.0, 569.4920043945312, 136.22885131835938, 1.0, 637.0659790039062, 136.99830627441406, 1.0, 705.1846313476562, 137.74313354492188, 1.0, 773.3225708007812, 138.43096923828125, 1.0, 841.5969848632812, 139.3260498046875, 1.0, 909.7867431640625, 140.27130126953125, 1.0, 306.6373291015625, 195.81056213378906, 1.0, 372.3190612792969, 196.61138916015625, 1.0, 438.37628173828125, 197.6068115234375, 1.0, 504.2911376953125, 198.5762481689453, 1.0, 570.14208984375, 199.601318359375, 1.0, 635.659912109375, 200.43270874023438, 1.0, 701.6133422851562, 201.1859588623047, 1.0, 767.7808837890625, 201.9154510498047, 1.0, 834.3352661132812, 202.8219451904297, 1.0, 900.7283935546875, 203.74517822265625, 1.0, 314.427001953125, 255.5598907470703, 1.0, 378.54669189453125, 256.4490966796875, 1.0, 442.6882629394531, 257.4364318847656, 1.0, 506.7253112792969, 258.4476623535156, 1.0, 570.7059936523438, 259.4188232421875, 1.0, 634.3842163085938, 260.32781982421875, 1.0, 698.4778442382812, 261.05059814453125, 1.0, 762.711181640625, 261.9568176269531, 1.0, 827.478759765625, 262.69580078125, 1.0, 892.030029296875, 263.6610412597656, 1.0, 321.9742431640625, 312.1231689453125, 1.0, 384.329833984375, 312.9784851074219, 1.0, 446.7182922363281, 313.9819030761719, 1.0, 509.0986022949219, 314.8873291015625, 1.0, 571.2959594726562, 315.8014831542969, 1.0, 633.1365966796875, 316.6752624511719, 1.0, 695.4624633789062, 317.5558776855469, 1.0, 758.0318603515625, 318.45928955078125, 1.0, 820.8372802734375, 319.4006042480469, 1.0, 883.8592529296875, 320.3067321777344, 1.0, 328.9035339355469, 366.0212097167969, 1.0, 389.7427978515625, 366.7064514160156, 1.0, 450.544921875, 367.51434326171875, 1.0, 511.2957763671875, 368.3639221191406, 1.0, 571.7051391601562, 369.1257629394531, 1.0, 631.9981079101562, 370.1580505371094, 1.0, 692.6648559570312, 371.01654052734375, 1.0, 753.6036987304688, 372.1207275390625, 1.0, 814.7803344726562, 373.03326416015625, 1.0, 876.1299438476562, 374.1943359375, 1.0, 335.57244873046875, 416.8282165527344, 1.0, 394.71453857421875, 417.5870056152344, 1.0, 454.137451171875, 418.3360595703125, 1.0, 513.2214965820312, 419.1446228027344, 1.0, 572.2280883789062, 419.9247741699219, 1.0, 630.8756713867188, 420.82177734375, 1.0, 690.2010498046875, 421.83441162109375, 1.0, 749.394287109375, 422.8818054199219, 1.0, 809.1888427734375, 424.0900573730469, 1.0, 868.7211303710938, 425.08544921875, 1.0, 341.7196350097656, 465.29595947265625, 1.0, 399.52935791015625, 466.03765869140625, 1.0, 457.29425048828125, 466.8051452636719, 1.0, 514.9974365234375, 467.42034912109375, 1.0, 572.5717163085938, 468.3025817871094, 1.0, 629.8753051757812, 469.2399597167969, 1.0, 687.6806030273438, 470.2514343261719, 1.0, 745.5845947265625, 471.4111328125, 1.0, 803.630615234375, 472.56414794921875, 1.0, 861.9138793945312, 473.6809997558594, 1.0, 347.7005310058594, 511.5416564941406, 1.0, 403.89923095703125, 512.2772827148438, 1.0, 460.41094970703125, 512.9305419921875, 1.0, 516.56591796875, 513.6627197265625, 1.0, 572.9763793945312, 514.531005859375, 1.0, 628.888916015625, 515.3372192382812, 1.0, 685.4082641601562, 516.5174560546875, 1.0, 741.7593994140625, 517.5592041015625, 1.0, 798.5507202148438, 518.705078125, 1.0, 855.2672729492188, 519.89404296875, 1.0, 353.4043273925781, 555.4769287109375, 1.0, 408.3299865722656, 556.40380859375, 1.0, 463.23046875, 557.102294921875, 1.0, 518.2911987304688, 557.768798828125, 1.0, 573.2316284179688, 558.630859375, 1.0, 628.006591796875, 559.5305786132812, 1.0, 683.1749877929688, 560.64501953125, 1.0, 738.4064331054688, 561.7197875976562, 1.0, 793.6213989257812, 562.937744140625, 1.0, 849.0953979492188, 564.06396484375, 1.0, 358.86749267578125, 597.4620971679688, 1.0, 412.31890869140625, 598.389404296875, 1.0, 466.0976257324219, 599.1798095703125, 1.0, 519.6697387695312, 599.9327392578125, 1.0, 573.5616455078125, 600.83935546875, 1.0, 627.0084228515625, 601.719970703125, 1.0, 681.050048828125, 602.8076782226562, 1.0, 734.8388061523438, 603.899169921875, 1.0, 788.8862915039062, 604.9234008789062, 1.0, 843.0114135742188, 605.897216796875, 1.0, 280.7882385253906, 122.3553237915039, 1.0, 348.98992919921875, 122.34565734863281, 1.0, 417.7332763671875, 122.58446502685547, 1.0, 486.7311096191406, 123.0081787109375, 1.0, 555.9560546875, 123.44873809814453, 1.0, 625.0866088867188, 123.7329330444336, 1.0, 694.766845703125, 124.02314758300781, 1.0, 764.6527709960938, 124.20104217529297, 1.0, 835.0208740234375, 124.4121322631836, 1.0, 905.2792358398438, 124.80935668945312, 1.0, 290.4753112792969, 186.4105224609375, 1.0, 357.03076171875, 186.77528381347656, 1.0, 423.9518127441406, 187.1505126953125, 1.0, 490.97589111328125, 187.79229736328125, 1.0, 558.2352294921875, 188.23663330078125, 1.0, 625.1282958984375, 188.64398193359375, 1.0, 692.6995849609375, 188.9763946533203, 1.0, 760.529541015625, 189.22145080566406, 1.0, 828.7589721679688, 189.5655517578125, 1.0, 897.2388916015625, 189.94424438476562, 1.0, 299.83123779296875, 247.1748046875, 1.0, 364.71258544921875, 247.6411590576172, 1.0, 429.7526550292969, 248.20558166503906, 1.0, 494.94842529296875, 248.74957275390625, 1.0, 560.1778564453125, 249.29258728027344, 1.0, 625.1648559570312, 249.86561584472656, 1.0, 690.763916015625, 250.2468719482422, 1.0, 756.633544921875, 250.65155029296875, 1.0, 823.0712280273438, 251.0635223388672, 1.0, 889.5797119140625, 251.5560760498047, 1.0, 308.817138671875, 304.710693359375, 1.0, 371.8155517578125, 305.1161804199219, 1.0, 435.37347412109375, 305.76190185546875, 1.0, 498.5945129394531, 306.2845153808594, 1.0, 562.0595092773438, 306.8843994140625, 1.0, 625.1842041015625, 307.4907531738281, 1.0, 688.8896484375, 308.035888671875, 1.0, 752.903076171875, 308.5542907714844, 1.0, 817.4898681640625, 309.103759765625, 1.0, 882.1953125, 309.7287902832031, 1.0, 317.1728820800781, 359.156005859375, 1.0, 378.6640319824219, 359.68975830078125, 1.0, 440.3970947265625, 360.2430419921875, 1.0, 502.0247802734375, 360.75848388671875, 1.0, 563.6755981445312, 361.3758239746094, 1.0, 625.2095336914062, 362.0952453613281, 1.0, 687.173828125, 362.6825866699219, 1.0, 749.4898681640625, 363.3468933105469, 1.0, 812.2990112304688, 364.15130615234375, 1.0, 875.3053588867188, 364.90185546875, 1.0, 324.9947814941406, 410.802978515625, 1.0, 385.09991455078125, 411.378173828125, 1.0, 445.1851501464844, 411.8592834472656, 1.0, 505.18048095703125, 412.4559631347656, 1.0, 565.3151245117188, 412.9702453613281, 1.0, 625.15283203125, 413.7310791015625, 1.0, 685.5842895507812, 414.5402526855469, 1.0, 746.2703247070312, 415.3380126953125, 1.0, 807.425048828125, 416.2639465332031, 1.0, 868.6978759765625, 417.107421875, 1.0, 332.5296325683594, 459.93157958984375, 1.0, 391.01922607421875, 460.4472351074219, 1.0, 449.52520751953125, 461.0026550292969, 1.0, 508.059326171875, 461.5900573730469, 1.0, 566.690185546875, 462.2108154296875, 1.0, 625.1572265625, 463.0006408691406, 1.0, 684.1346435546875, 463.8392028808594, 1.0, 743.275634765625, 464.79742431640625, 1.0, 802.7911376953125, 465.8232116699219, 1.0, 862.5726318359375, 466.84600830078125, 1.0, 339.6094665527344, 506.6427917480469, 1.0, 396.5301513671875, 507.3124694824219, 1.0, 453.6866149902344, 507.84161376953125, 1.0, 510.7571105957031, 508.4844970703125, 1.0, 568.074951171875, 509.1451721191406, 1.0, 625.0584716796875, 509.9359130859375, 1.0, 682.6340942382812, 510.88653564453125, 1.0, 740.347412109375, 511.89959716796875, 1.0, 798.4609375, 513.0407104492188, 1.0, 856.7569580078125, 514.0452880859375, 1.0, 346.39056396484375, 551.1151123046875, 1.0, 401.89801025390625, 551.9404907226562, 1.0, 457.6004943847656, 552.5859375, 1.0, 513.4468994140625, 553.2443237304688, 1.0, 569.2821655273438, 553.9251708984375, 1.0, 625.0989990234375, 554.8340454101562, 1.0, 681.3328857421875, 555.8098754882812, 1.0, 737.70166015625, 556.88330078125, 1.0, 794.3532104492188, 557.9559326171875, 1.0, 851.2127685546875, 559.0607299804688, 1.0, 353.02386474609375, 593.4801635742188, 1.0, 407.065673828125, 594.5012817382812, 1.0, 461.4625244140625, 595.22314453125, 1.0, 515.8428344726562, 595.943359375, 1.0, 570.6019287109375, 596.7371215820312, 1.0, 624.9951171875, 597.6299438476562, 1.0, 680.1190795898438, 598.7217407226562, 1.0, 735.1126098632812, 599.751220703125, 1.0, 790.4010620117188, 600.8208618164062, 1.0, 845.6503295898438, 601.8348388671875, 1.0, 276.8302917480469, 98.10177612304688, 1.0, 346.0366516113281, 97.63280487060547, 1.0, 416.147216796875, 97.71147918701172, 1.0, 486.3822021484375, 97.79071044921875, 1.0, 556.9500732421875, 98.00105285644531, 1.0, 627.5211791992188, 98.09999084472656, 1.0, 698.479736328125, 98.18350219726562, 1.0, 769.8881225585938, 98.174072265625, 1.0, 841.6454467773438, 98.17465209960938, 1.0, 913.3997192382812, 98.30748748779297, 1.0, 287.01446533203125, 163.7912139892578, 1.0, 354.56549072265625, 163.9374237060547, 1.0, 422.5992736816406, 164.07542419433594, 1.0, 490.8504943847656, 164.45347595214844, 1.0, 559.35791015625, 164.81544494628906, 1.0, 627.626220703125, 164.92897033691406, 1.0, 696.5186157226562, 165.1118621826172, 1.0, 765.6427001953125, 165.19677734375, 1.0, 835.2645874023438, 165.3625946044922, 1.0, 905.0816040039062, 165.66513061523438, 1.0, 296.73748779296875, 226.165771484375, 1.0, 362.593017578125, 226.42257690429688, 1.0, 428.7987976074219, 226.72369384765625, 1.0, 495.1151123046875, 227.2592315673828, 1.0, 561.4965209960938, 227.6874237060547, 1.0, 627.6692504882812, 228.06309509277344, 1.0, 694.4615478515625, 228.31399536132812, 1.0, 761.625244140625, 228.4542236328125, 1.0, 829.2818603515625, 228.60446166992188, 1.0, 897.09912109375, 229.04638671875, 1.0, 306.26776123046875, 284.9633483886719, 1.0, 370.350830078125, 285.396484375, 1.0, 434.75665283203125, 285.8492126464844, 1.0, 499.1260681152344, 286.3153991699219, 1.0, 563.513671875, 286.77532958984375, 1.0, 627.6947021484375, 287.1930236816406, 1.0, 692.6251220703125, 287.62554931640625, 1.0, 757.78173828125, 288.00482177734375, 1.0, 823.578369140625, 288.3998718261719, 1.0, 889.5037231445312, 288.7869873046875, 1.0, 315.1231689453125, 340.7395935058594, 1.0, 377.5855712890625, 341.0752868652344, 1.0, 440.1930847167969, 341.6044921875, 1.0, 502.80975341796875, 342.0718688964844, 1.0, 565.4286499023438, 342.60589599609375, 1.0, 627.8313598632812, 343.0563659667969, 1.0, 690.8789672851562, 343.62384033203125, 1.0, 754.3403930664062, 344.22015380859375, 1.0, 818.272216796875, 344.8186950683594, 1.0, 882.3635864257812, 345.3768615722656, 1.0, 323.5418701171875, 393.4855651855469, 1.0, 384.29974365234375, 393.91534423828125, 1.0, 445.3699951171875, 394.3717956542969, 1.0, 506.30279541015625, 394.88916015625, 1.0, 567.2693481445312, 395.3226623535156, 1.0, 627.929931640625, 395.989990234375, 1.0, 689.4107055664062, 396.69219970703125, 1.0, 750.9515380859375, 397.36517333984375, 1.0, 813.2252807617188, 398.1640319824219, 1.0, 875.5563354492188, 398.85040283203125, 1.0, 331.4132995605469, 443.6388854980469, 1.0, 390.676513671875, 444.0418701171875, 1.0, 449.9790344238281, 444.49212646484375, 1.0, 509.4229736328125, 444.90472412109375, 1.0, 568.9169921875, 445.4763488769531, 1.0, 628.113525390625, 446.2681579589844, 1.0, 687.9542846679688, 446.9390869140625, 1.0, 747.9352416992188, 447.9740905761719, 1.0, 808.5220947265625, 448.81329345703125, 1.0, 869.3452758789062, 449.73046875, 1.0, 338.89703369140625, 491.0957946777344, 1.0, 396.54864501953125, 491.6976623535156, 1.0, 454.4759216308594, 492.2170104980469, 1.0, 512.408935546875, 492.72479248046875, 1.0, 570.4578857421875, 493.30303955078125, 1.0, 628.1927490234375, 494.13397216796875, 1.0, 686.57373046875, 494.92828369140625, 1.0, 745.1743774414062, 495.8342590332031, 1.0, 804.134765625, 496.82342529296875, 1.0, 863.3330688476562, 497.8143005371094, 1.0, 346.1585998535156, 536.4971313476562, 1.0, 402.3250427246094, 537.052001953125, 1.0, 458.70361328125, 537.6870727539062, 1.0, 515.2867431640625, 538.3331909179688, 1.0, 571.7145385742188, 538.8756103515625, 1.0, 628.2860717773438, 539.6895141601562, 1.0, 685.2979125976562, 540.652587890625, 1.0, 742.4970092773438, 541.607666015625, 1.0, 799.9220581054688, 542.7520751953125, 1.0, 857.6529541015625, 543.6170043945312, 1.0, 352.8918762207031, 579.65478515625, 1.0, 407.70660400390625, 580.4154052734375, 1.0, 462.7621154785156, 581.0079345703125, 1.0, 517.807861328125, 581.7631225585938, 1.0, 573.3394775390625, 582.5330810546875, 1.0, 628.4234619140625, 583.4172973632812, 1.0, 684.1640014648438, 584.3773803710938, 1.0, 739.84375, 585.2866821289062, 1.0, 795.9064331054688, 586.409912109375, 1.0, 852.1398315429688, 587.3116455078125, 1.0, 156.06788635253906, 103.69660949707031, 1.0, 223.9207000732422, 101.36224365234375, 1.0, 292.5720520019531, 99.20845794677734, 1.0, 362.0824279785156, 97.24358367919922, 1.0, 431.8614807128906, 95.62397003173828, 1.0, 501.51116943359375, 94.1503677368164, 1.0, 571.5767822265625, 92.58553314208984, 1.0, 641.649169921875, 91.0530014038086, 1.0, 711.9444580078125, 89.43486022949219, 1.0, 782.1815795898438, 87.82556915283203, 1.0, 169.9386444091797, 168.5078582763672, 1.0, 236.0329132080078, 166.60894775390625, 1.0, 303.19085693359375, 164.693359375, 1.0, 370.713134765625, 163.166748046875, 1.0, 438.6511535644531, 161.81582641601562, 1.0, 506.31884765625, 160.4521026611328, 1.0, 574.2113647460938, 159.0171356201172, 1.0, 641.9756469726562, 157.64720153808594, 1.0, 710.1185913085938, 155.97811889648438, 1.0, 778.3447265625, 154.40765380859375, 1.0, 183.22354125976562, 230.30831909179688, 1.0, 247.78521728515625, 228.42652893066406, 1.0, 313.2685852050781, 226.8103485107422, 1.0, 379.1558532714844, 225.50050354003906, 1.0, 445.15252685546875, 224.25173950195312, 1.0, 510.720947265625, 222.87002563476562, 1.0, 576.632080078125, 221.58697509765625, 1.0, 642.5011596679688, 220.25413513183594, 1.0, 708.5217895507812, 218.62899780273438, 1.0, 774.71240234375, 217.2166748046875, 1.0, 196.04440307617188, 288.4761962890625, 1.0, 259.07470703125, 286.9260559082031, 1.0, 322.9001159667969, 285.62530517578125, 1.0, 387.064697265625, 284.2479553222656, 1.0, 451.34112548828125, 282.9292907714844, 1.0, 514.9623413085938, 281.6869812011719, 1.0, 579.0203857421875, 280.3903503417969, 1.0, 642.8351440429688, 279.1121520996094, 1.0, 707.0618286132812, 277.7474060058594, 1.0, 771.3617553710938, 276.3386535644531, 1.0, 208.32574462890625, 343.8145751953125, 1.0, 269.8796691894531, 342.4411926269531, 1.0, 332.05133056640625, 341.1555480957031, 1.0, 394.5673522949219, 339.8322448730469, 1.0, 457.0083312988281, 338.54827880859375, 1.0, 518.9296875, 337.168212890625, 1.0, 581.2376708984375, 335.9918212890625, 1.0, 643.3571166992188, 334.7223205566406, 1.0, 705.7033081054688, 333.4444274902344, 1.0, 768.3294677734375, 332.2837829589844, 1.0, 220.0740966796875, 396.3027038574219, 1.0, 280.13958740234375, 395.06976318359375, 1.0, 340.779541015625, 393.7215270996094, 1.0, 401.5819091796875, 392.4054870605469, 1.0, 462.3830261230469, 391.10284423828125, 1.0, 522.7125244140625, 389.7848205566406, 1.0, 583.4003295898438, 388.6062316894531, 1.0, 643.7337036132812, 387.4024658203125, 1.0, 704.5344848632812, 386.3428039550781, 1.0, 765.3861694335938, 385.1944885253906, 1.0, 231.38998413085938, 446.1371154785156, 1.0, 289.8847351074219, 444.9314880371094, 1.0, 348.845947265625, 443.7261962890625, 1.0, 408.25250244140625, 442.409423828125, 1.0, 467.41668701171875, 441.1031799316406, 1.0, 526.2813720703125, 439.7027282714844, 1.0, 585.2944946289062, 438.5291442871094, 1.0, 644.2958984375, 437.4178771972656, 1.0, 703.4325561523438, 436.43450927734375, 1.0, 762.8613891601562, 435.5047607421875, 1.0, 242.20643615722656, 493.3624572753906, 1.0, 299.1268615722656, 492.36944580078125, 1.0, 356.5956726074219, 491.1534423828125, 1.0, 414.37213134765625, 489.89703369140625, 1.0, 472.2153015136719, 488.5840759277344, 1.0, 529.5158081054688, 487.3298034667969, 1.0, 587.1917114257812, 486.2138671875, 1.0, 644.7127685546875, 485.0351867675781, 1.0, 702.4330444335938, 484.2523193359375, 1.0, 760.3140869140625, 483.315673828125, 1.0, 252.47601318359375, 538.429443359375, 1.0, 308.1133117675781, 537.4408569335938, 1.0, 364.0621032714844, 536.5545654296875, 1.0, 420.4029846191406, 535.2079467773438, 1.0, 476.5472412109375, 534.04150390625, 1.0, 532.6099243164062, 532.7698974609375, 1.0, 588.796630859375, 531.5645751953125, 1.0, 645.119384765625, 530.6695556640625, 1.0, 701.5399780273438, 529.6973266601562, 1.0, 758.061767578125, 528.9264526367188, 1.0, 262.4659729003906, 581.0806884765625, 1.0, 316.5148010253906, 580.409912109375, 1.0, 371.18157958984375, 579.4638061523438, 1.0, 425.9656677246094, 578.4568481445312, 1.0, 480.92755126953125, 577.298095703125, 1.0, 535.607421875, 576.160400390625, 1.0, 590.6239013671875, 575.1017456054688, 1.0, 645.554443359375, 574.0968017578125, 1.0, 700.662109375, 573.2778930664062, 1.0, 755.7958374023438, 572.4601440429688, 1.0, 646.8663940429688, 141.31167602539062, 1.0, 692.3612670898438, 143.9011688232422, 1.0, 736.748291015625, 146.51876831054688, 1.0, 779.42041015625, 149.1177215576172, 1.0, 820.822265625, 151.5086669921875, 1.0, 860.8817138671875, 153.89657592773438, 1.0, 899.5447387695312, 156.26893615722656, 1.0, 937.0523071289062, 158.71432495117188, 1.0, 973.1856689453125, 160.94248962402344, 1.0, 1008.2005615234375, 163.5865478515625, 1.0, 650.7993774414062, 192.11495971679688, 1.0, 696.6497192382812, 194.0012664794922, 1.0, 740.8496704101562, 195.78665161132812, 1.0, 783.7559814453125, 197.5093536376953, 1.0, 825.1953735351562, 199.20738220214844, 1.0, 865.4515991210938, 200.891845703125, 1.0, 904.3456420898438, 202.4989471435547, 1.0, 941.9046630859375, 204.17649841308594, 1.0, 978.17919921875, 205.82708740234375, 1.0, 1013.0850830078125, 207.35179138183594, 1.0, 654.8370361328125, 243.23094177246094, 1.0, 700.599609375, 244.37132263183594, 1.0, 744.995361328125, 245.2723388671875, 1.0, 788.0390014648438, 246.3818359375, 1.0, 829.5515747070312, 247.27154541015625, 1.0, 869.9144897460938, 248.19586181640625, 1.0, 908.8576049804688, 248.9741973876953, 1.0, 946.6195678710938, 250.01885986328125, 1.0, 982.9921264648438, 250.81138610839844, 1.0, 1018.1174926757812, 251.93753051757812, 1.0, 658.70458984375, 294.663330078125, 1.0, 704.7716674804688, 294.9735107421875, 1.0, 749.0870361328125, 295.250732421875, 1.0, 792.2265014648438, 295.3345947265625, 1.0, 833.9725341796875, 295.59796142578125, 1.0, 874.4336547851562, 295.7651062011719, 1.0, 913.49609375, 295.8787841796875, 1.0, 951.2991333007812, 296.1999816894531, 1.0, 987.7745971679688, 296.41546630859375, 1.0, 1022.9100952148438, 296.6990051269531, 1.0, 662.6341552734375, 346.6125793457031, 1.0, 708.70703125, 346.0611877441406, 1.0, 753.2881469726562, 345.40325927734375, 1.0, 796.4884643554688, 344.8763427734375, 1.0, 838.2705078125, 344.3284912109375, 1.0, 878.933837890625, 343.94073486328125, 1.0, 918.130126953125, 343.33355712890625, 1.0, 956.0744018554688, 342.8993835449219, 1.0, 992.5321655273438, 342.3237609863281, 1.0, 1027.712158203125, 341.9149475097656, 1.0, 666.570556640625, 398.7958984375, 1.0, 712.76171875, 397.3393249511719, 1.0, 757.5447998046875, 396.0121765136719, 1.0, 800.8423461914062, 394.6256408691406, 1.0, 842.8795166015625, 393.3787841796875, 1.0, 883.5045166015625, 392.0828857421875, 1.0, 922.6663208007812, 390.8383483886719, 1.0, 960.62841796875, 389.6244201660156, 1.0, 997.1187133789062, 388.4157409667969, 1.0, 1032.4857177734375, 387.1438293457031, 1.0, 670.43212890625, 451.77392578125, 1.0, 716.851318359375, 449.47442626953125, 1.0, 761.805419921875, 447.3108825683594, 1.0, 805.1920166015625, 445.27264404296875, 1.0, 847.1393432617188, 443.0135192871094, 1.0, 888.0729370117188, 440.99639892578125, 1.0, 927.2364501953125, 439.03070068359375, 1.0, 965.2219848632812, 437.1191711425781, 1.0, 1001.8461303710938, 435.0456237792969, 1.0, 1037.0111083984375, 433.1435852050781, 1.0, 674.4705200195312, 505.39453125, 1.0, 720.9714965820312, 502.158203125, 1.0, 766.0180053710938, 499.2135009765625, 1.0, 809.6531982421875, 496.14874267578125, 1.0, 851.8008422851562, 493.36505126953125, 1.0, 892.5355224609375, 490.3719177246094, 1.0, 932.0715942382812, 487.73858642578125, 1.0, 969.7725219726562, 484.7431945800781, 1.0, 1006.2125854492188, 482.0642395019531, 1.0, 1041.6148681640625, 479.3279724121094, 1.0, 678.333984375, 559.7696533203125, 1.0, 725.1317138671875, 555.6361694335938, 1.0, 770.3265380859375, 551.6134643554688, 1.0, 813.8834838867188, 547.83642578125, 1.0, 856.331787109375, 544.0013427734375, 1.0, 897.0013427734375, 540.2940673828125, 1.0, 936.407958984375, 536.5611572265625, 1.0, 974.2665405273438, 532.8951416015625, 1.0, 1010.743408203125, 529.2482299804688, 1.0, 1045.8712158203125, 525.7185668945312, 1.0, 682.34716796875, 614.7701416015625, 1.0, 729.2687377929688, 609.5958862304688, 1.0, 774.5847778320312, 604.6446533203125, 1.0, 818.4351196289062, 599.7615966796875, 1.0, 860.6195678710938, 595.0882568359375, 1.0, 901.43896484375, 590.435546875, 1.0, 940.6480712890625, 585.8250732421875, 1.0, 978.6348876953125, 581.26318359375, 1.0, 1014.9824829101562, 576.8062133789062, 1.0, 1050.264892578125, 572.4521484375, 1.0, 585.6369018554688, 85.07100677490234, 1.0, 638.0250244140625, 89.76873779296875, 1.0, 688.6376342773438, 94.41863250732422, 1.0, 737.4068603515625, 98.78868103027344, 1.0, 784.3780517578125, 102.99575805664062, 1.0, 829.5142211914062, 107.21395111083984, 1.0, 873.2163696289062, 111.14241027832031, 1.0, 915.1644897460938, 114.98588562011719, 1.0, 955.4793701171875, 118.89669036865234, 1.0, 994.3518676757812, 122.88158416748047, 1.0, 587.6168823242188, 141.53794860839844, 1.0, 640.3428344726562, 145.31553649902344, 1.0, 691.1261596679688, 148.7259521484375, 1.0, 739.9854736328125, 152.23751831054688, 1.0, 787.0824584960938, 155.47714233398438, 1.0, 832.5466918945312, 158.47506713867188, 1.0, 876.3511352539062, 161.533447265625, 1.0, 918.5006103515625, 164.54403686523438, 1.0, 959.1104125976562, 167.5924835205078, 1.0, 998.0942993164062, 170.44493103027344, 1.0, 589.7841186523438, 198.56399536132812, 1.0, 642.598388671875, 201.279296875, 1.0, 693.5449829101562, 203.732421875, 1.0, 742.4410400390625, 206.100830078125, 1.0, 789.8259887695312, 208.19276428222656, 1.0, 835.4617309570312, 210.39129638671875, 1.0, 879.5286254882812, 212.4611358642578, 1.0, 921.8435668945312, 214.6138153076172, 1.0, 962.6764526367188, 216.65106201171875, 1.0, 1001.8883666992188, 218.7144317626953, 1.0, 591.8572998046875, 256.0183410644531, 1.0, 644.9053955078125, 257.5390625, 1.0, 695.976806640625, 258.8880310058594, 1.0, 745.1728515625, 260.17816162109375, 1.0, 792.5853271484375, 261.52484130859375, 1.0, 838.439453125, 262.6737365722656, 1.0, 882.5582885742188, 263.9294128417969, 1.0, 925.265625, 265.0669860839844, 1.0, 966.1151733398438, 266.24591064453125, 1.0, 1005.5352783203125, 267.51727294921875, 1.0, 593.9793090820312, 313.9143981933594, 1.0, 647.2364501953125, 314.3332824707031, 1.0, 698.47802734375, 314.5543212890625, 1.0, 747.8462524414062, 314.9473571777344, 1.0, 795.5018310546875, 315.2373352050781, 1.0, 841.5087890625, 315.604248046875, 1.0, 885.8062744140625, 315.8717346191406, 1.0, 928.5809936523438, 316.06658935546875, 1.0, 969.6637573242188, 316.3062438964844, 1.0, 1009.1310424804688, 316.6907653808594, 1.0, 596.1844482421875, 372.08538818359375, 1.0, 649.5426635742188, 371.3045349121094, 1.0, 701.0567016601562, 370.5724182128906, 1.0, 750.5194091796875, 369.8755798339844, 1.0, 798.4921264648438, 369.2048034667969, 1.0, 844.5867309570312, 368.49407958984375, 1.0, 889.2026977539062, 367.9471130371094, 1.0, 931.9402465820312, 367.2768249511719, 1.0, 973.2582397460938, 366.703369140625, 1.0, 1012.7174682617188, 366.00726318359375, 1.0, 598.3133544921875, 431.151611328125, 1.0, 651.9942626953125, 429.2425537109375, 1.0, 703.7005615234375, 427.35784912109375, 1.0, 753.48876953125, 425.5480651855469, 1.0, 801.5160522460938, 423.9063720703125, 1.0, 847.7940673828125, 422.2891845703125, 1.0, 892.4580688476562, 420.70233154296875, 1.0, 935.4411010742188, 419.2068786621094, 1.0, 976.7688598632812, 417.6545104980469, 1.0, 1016.31640625, 416.155029296875, 1.0, 600.4498901367188, 491.0191345214844, 1.0, 654.3935546875, 487.7757263183594, 1.0, 706.4280395507812, 484.82977294921875, 1.0, 756.357666015625, 481.9643859863281, 1.0, 804.59228515625, 479.3110656738281, 1.0, 851.0665893554688, 476.6312561035156, 1.0, 895.8824462890625, 474.11138916015625, 1.0, 938.8478393554688, 471.4676208496094, 1.0, 980.247802734375, 468.9455261230469, 1.0, 1019.80712890625, 466.4489440917969, 1.0, 602.512451171875, 551.7756958007812, 1.0, 656.9046020507812, 547.2701416015625, 1.0, 709.0963745117188, 543.0721435546875, 1.0, 759.3898315429688, 539.1192016601562, 1.0, 807.7451782226562, 535.2271118164062, 1.0, 854.3955078125, 531.5475463867188, 1.0, 899.2315063476562, 527.8749389648438, 1.0, 942.2315063476562, 524.346923828125, 1.0, 983.5905151367188, 520.6864624023438, 1.0, 1023.2274780273438, 517.2276611328125, 1.0, 604.6426391601562, 613.3728637695312, 1.0, 659.2919921875, 607.5862426757812, 1.0, 711.8089599609375, 602.1170043945312, 1.0, 762.3253784179688, 596.7864990234375, 1.0, 810.8215942382812, 591.7854614257812, 1.0, 857.5416870117188, 586.8265380859375, 1.0, 902.440185546875, 582.1293334960938, 1.0, 945.5558471679688, 577.3952026367188, 1.0, 986.6652221679688, 572.6937255859375, 1.0, 1026.390869140625, 568.1110229492188, 1.0, 537.4859008789062, 64.30732727050781, 1.0, 591.4857177734375, 69.40261840820312, 1.0, 643.4555053710938, 74.22761535644531, 1.0, 693.3045654296875, 78.80242156982422, 1.0, 741.3942260742188, 83.279052734375, 1.0, 787.4611206054688, 87.515625, 1.0, 831.8810424804688, 91.65677642822266, 1.0, 874.6978149414062, 95.68631744384766, 1.0, 915.7740478515625, 99.52832794189453, 1.0, 955.3992309570312, 103.59577941894531, 1.0, 539.8310546875, 121.5592269897461, 1.0, 594.1837768554688, 125.5053482055664, 1.0, 646.1572875976562, 129.31317138671875, 1.0, 696.2540893554688, 132.84609985351562, 1.0, 744.3283081054688, 136.2635498046875, 1.0, 790.6183471679688, 139.4509735107422, 1.0, 835.3104248046875, 142.60536193847656, 1.0, 878.1755981445312, 145.6787567138672, 1.0, 919.5650634765625, 148.70664978027344, 1.0, 959.3574829101562, 151.53260803222656, 1.0, 542.3822631835938, 179.52369689941406, 1.0, 596.7034912109375, 182.32350158691406, 1.0, 648.8729858398438, 184.83856201171875, 1.0, 699.0406494140625, 187.4144744873047, 1.0, 747.3797607421875, 189.65574645996094, 1.0, 793.7303466796875, 191.88978576660156, 1.0, 838.5269165039062, 193.9533233642578, 1.0, 881.6599731445312, 196.255859375, 1.0, 923.2332153320312, 198.26409912109375, 1.0, 963.1724243164062, 200.35946655273438, 1.0, 544.8392333984375, 237.82479858398438, 1.0, 599.4351196289062, 239.34292602539062, 1.0, 651.6921997070312, 240.8061065673828, 1.0, 701.8671875, 242.14263916015625, 1.0, 750.3724975585938, 243.49041748046875, 1.0, 796.8982543945312, 244.64027404785156, 1.0, 841.9408569335938, 245.9761505126953, 1.0, 885.2529907226562, 246.99830627441406, 1.0, 926.9285278320312, 248.24624633789062, 1.0, 967.0910034179688, 249.49493408203125, 1.0, 547.4434204101562, 296.5589294433594, 1.0, 602.0706787109375, 296.85595703125, 1.0, 654.453857421875, 297.21331787109375, 1.0, 704.81396484375, 297.52618408203125, 1.0, 753.45458984375, 297.70599365234375, 1.0, 800.2019653320312, 298.0550842285156, 1.0, 845.2704467773438, 298.18585205078125, 1.0, 888.7191162109375, 298.41876220703125, 1.0, 930.5264892578125, 298.6744079589844, 1.0, 970.7406616210938, 299.0772399902344, 1.0, 549.8013916015625, 355.522216796875, 1.0, 604.6559448242188, 354.5562438964844, 1.0, 657.3532104492188, 353.7339172363281, 1.0, 707.7979736328125, 352.8709716796875, 1.0, 756.5094604492188, 352.0932922363281, 1.0, 803.48291015625, 351.3912353515625, 1.0, 848.7864379882812, 350.744140625, 1.0, 892.2991943359375, 350.0472717285156, 1.0, 934.215576171875, 349.40521240234375, 1.0, 974.5183715820312, 348.70782470703125, 1.0, 552.3040161132812, 415.3233642578125, 1.0, 607.344482421875, 413.1783752441406, 1.0, 660.2050170898438, 411.1059875488281, 1.0, 710.7938232421875, 409.19903564453125, 1.0, 759.7482299804688, 407.3399658203125, 1.0, 806.8187255859375, 405.6441955566406, 1.0, 852.270751953125, 403.9537353515625, 1.0, 895.8861083984375, 402.3580627441406, 1.0, 937.8875732421875, 400.6260070800781, 1.0, 978.3423461914062, 399.2617492675781, 1.0, 554.6182250976562, 475.9206848144531, 1.0, 610.1178588867188, 472.4017028808594, 1.0, 663.0902099609375, 469.0819091796875, 1.0, 714.09375, 465.98193359375, 1.0, 763.1229858398438, 463.2041320800781, 1.0, 810.3963623046875, 460.4313049316406, 1.0, 855.924560546875, 457.65997314453125, 1.0, 899.6073608398438, 455.0703125, 1.0, 941.655029296875, 452.54571533203125, 1.0, 982.0382080078125, 449.83050537109375, 1.0, 557.0808715820312, 537.3750610351562, 1.0, 612.6881713867188, 532.5587768554688, 1.0, 666.1236572265625, 527.991455078125, 1.0, 717.3258056640625, 523.789794921875, 1.0, 766.5049438476562, 519.655517578125, 1.0, 813.8900756835938, 515.7689819335938, 1.0, 859.5003051757812, 512.0164794921875, 1.0, 903.3460693359375, 508.32232666015625, 1.0, 945.3943481445312, 504.57806396484375, 1.0, 985.801025390625, 501.0411682128906, 1.0, 559.4857788085938, 599.7319946289062, 1.0, 615.487548828125, 593.4991455078125, 1.0, 669.144775390625, 587.6190185546875, 1.0, 720.5325927734375, 582.1087646484375, 1.0, 769.9783325195312, 576.7926025390625, 1.0, 817.4937744140625, 571.6470947265625, 1.0, 863.1990356445312, 566.7611083984375, 1.0, 907.0078735351562, 561.8560791015625, 1.0, 948.919677734375, 557.2119140625, 1.0, 989.3281860351562, 552.4271240234375, 1.0, 356.4062805175781, 89.05880737304688, 1.0, 413.24395751953125, 97.0342788696289, 1.0, 467.533935546875, 104.5478744506836, 1.0, 519.0460815429688, 111.8569564819336, 1.0, 568.390380859375, 118.68861389160156, 1.0, 615.2346801757812, 125.3399887084961, 1.0, 660.1744384765625, 131.5079803466797, 1.0, 702.9529418945312, 137.43084716796875, 1.0, 744.1988525390625, 143.14418029785156, 1.0, 783.7244873046875, 148.50241088867188, 1.0, 356.21453857421875, 147.2082977294922, 1.0, 413.41015625, 153.64828491210938, 1.0, 468.0491638183594, 159.9227752685547, 1.0, 519.8156127929688, 166.02024841308594, 1.0, 569.0697021484375, 171.63247680664062, 1.0, 616.1240234375, 177.10546875, 1.0, 661.0560913085938, 182.24884033203125, 1.0, 704.0350341796875, 187.03932189941406, 1.0, 745.197998046875, 191.58583068847656, 1.0, 784.827392578125, 196.04368591308594, 1.0, 356.0887756347656, 205.8216094970703, 1.0, 413.6617431640625, 210.97879028320312, 1.0, 468.34295654296875, 215.9006805419922, 1.0, 520.3256225585938, 220.5545196533203, 1.0, 569.7820434570312, 224.99038696289062, 1.0, 616.8828735351562, 229.16119384765625, 1.0, 661.9878540039062, 233.1529083251953, 1.0, 704.9589233398438, 236.7901153564453, 1.0, 746.2991333007812, 240.3686981201172, 1.0, 786.0146484375, 243.8730010986328, 1.0, 356.0231628417969, 264.9609069824219, 1.0, 413.8074035644531, 268.5759582519531, 1.0, 468.7962341308594, 272.1282043457031, 1.0, 520.850341796875, 275.4203186035156, 1.0, 570.48046875, 278.51690673828125, 1.0, 617.7103271484375, 281.465576171875, 1.0, 662.7394409179688, 284.33709716796875, 1.0, 705.9724731445312, 286.85247802734375, 1.0, 747.5137329101562, 289.4794921875, 1.0, 787.2545166015625, 291.90869140625, 1.0, 355.8879699707031, 324.71746826171875, 1.0, 414.0679016113281, 326.7834167480469, 1.0, 469.1633605957031, 328.7070617675781, 1.0, 521.4907836914062, 330.6625671386719, 1.0, 571.2025756835938, 332.4537048339844, 1.0, 618.5076904296875, 334.2139892578125, 1.0, 663.8177490234375, 335.81195068359375, 1.0, 707.069580078125, 337.37432861328125, 1.0, 748.5712280273438, 338.85626220703125, 1.0, 788.5008544921875, 340.32904052734375, 1.0, 355.80322265625, 384.6300964355469, 1.0, 414.1204833984375, 385.16033935546875, 1.0, 469.4437561035156, 385.5301208496094, 1.0, 521.925048828125, 386.0488586425781, 1.0, 571.8759155273438, 386.5246276855469, 1.0, 619.3615112304688, 386.98675537109375, 1.0, 664.7489013671875, 387.51959228515625, 1.0, 708.157958984375, 387.97186279296875, 1.0, 749.9929809570312, 388.4984436035156, 1.0, 789.9559326171875, 388.90234375, 1.0, 355.5475158691406, 445.48260498046875, 1.0, 414.0710754394531, 444.4137878417969, 1.0, 469.7225036621094, 443.28265380859375, 1.0, 522.3970336914062, 442.2721862792969, 1.0, 572.403564453125, 441.2907409667969, 1.0, 620.159423828125, 440.54150390625, 1.0, 665.834716796875, 439.85980224609375, 1.0, 709.3258666992188, 439.2872009277344, 1.0, 751.1336669921875, 438.6193542480469, 1.0, 791.356201171875, 438.1502990722656, 1.0, 355.24212646484375, 506.9028015136719, 1.0, 414.01239013671875, 504.1808776855469, 1.0, 469.81683349609375, 501.5426330566406, 1.0, 522.7415771484375, 498.9910888671875, 1.0, 573.11181640625, 496.7988586425781, 1.0, 620.9251098632812, 494.7022399902344, 1.0, 666.8709106445312, 492.8254089355469, 1.0, 710.585693359375, 490.9695739746094, 1.0, 752.5465698242188, 489.2411193847656, 1.0, 792.845703125, 487.580078125, 1.0, 355.05743408203125, 568.7742919921875, 1.0, 413.8855285644531, 564.573974609375, 1.0, 469.9423522949219, 560.491943359375, 1.0, 523.1082153320312, 556.6339111328125, 1.0, 573.7098999023438, 552.9288330078125, 1.0, 621.9393310546875, 549.48681640625, 1.0, 667.9376220703125, 546.2816162109375, 1.0, 711.9091186523438, 543.3258056640625, 1.0, 753.9893188476562, 540.496826171875, 1.0, 794.333984375, 537.7431640625, 1.0, 355.03326416015625, 631.0560302734375, 1.0, 413.92230224609375, 625.4527587890625, 1.0, 470.15948486328125, 619.9298095703125, 1.0, 523.4691162109375, 614.6500854492188, 1.0, 574.36279296875, 609.6561889648438, 1.0, 622.6829223632812, 604.8200073242188, 1.0, 668.9575805664062, 600.4464111328125, 1.0, 713.1024169921875, 596.1017456054688, 1.0, 755.3527221679688, 592.123046875, 1.0, 795.8397216796875, 588.249755859375, 1.0, 75.1580810546875, 58.61427688598633, 1.0, 146.54949951171875, 68.43059539794922, 1.0, 213.15902709960938, 76.75491333007812, 1.0, 276.7757873535156, 85.03765869140625, 1.0, 337.9609680175781, 93.28105163574219, 1.0, 396.34466552734375, 101.26122283935547, 1.0, 452.20745849609375, 108.99088287353516, 1.0, 505.3485107421875, 116.54332733154297, 1.0, 555.9611206054688, 123.59881591796875, 1.0, 604.1483764648438, 130.50704956054688, 1.0, 70.26619720458984, 120.74008178710938, 1.0, 142.10791015625, 128.69886779785156, 1.0, 209.4578399658203, 136.02490234375, 1.0, 273.8112487792969, 142.95594787597656, 1.0, 335.58868408203125, 149.82395935058594, 1.0, 394.9295654296875, 156.7884521484375, 1.0, 451.0529479980469, 163.27845764160156, 1.0, 504.7863464355469, 169.67599487304688, 1.0, 555.5193481445312, 175.70872497558594, 1.0, 604.4000244140625, 181.44261169433594, 1.0, 65.37847137451172, 183.89303588867188, 1.0, 137.48423767089844, 190.38255310058594, 1.0, 205.42926025390625, 196.05746459960938, 1.0, 270.8245849609375, 201.82301330566406, 1.0, 333.48577880859375, 207.4671173095703, 1.0, 393.3205261230469, 213.14988708496094, 1.0, 450.158203125, 218.39120483398438, 1.0, 504.00335693359375, 223.57716369628906, 1.0, 555.408447265625, 228.54466247558594, 1.0, 604.286865234375, 233.16934204101562, 1.0, 60.25567626953125, 248.3260040283203, 1.0, 132.7722930908203, 253.13674926757812, 1.0, 201.5948486328125, 257.4691162109375, 1.0, 267.87554931640625, 261.95904541015625, 1.0, 331.2356872558594, 266.1383056640625, 1.0, 391.7718505859375, 270.35614013671875, 1.0, 448.88262939453125, 274.2826232910156, 1.0, 503.3343811035156, 278.1058349609375, 1.0, 555.0587768554688, 281.639404296875, 1.0, 604.1465454101562, 284.9932861328125, 1.0, 55.079803466796875, 313.7906188964844, 1.0, 128.49630737304688, 316.9796142578125, 1.0, 197.99835205078125, 320.03228759765625, 1.0, 265.09417724609375, 323.02740478515625, 1.0, 329.08612060546875, 325.7375183105469, 1.0, 389.8927001953125, 328.29644775390625, 1.0, 447.77801513671875, 330.77667236328125, 1.0, 502.5788879394531, 333.3359069824219, 1.0, 554.5372314453125, 335.5841979980469, 1.0, 604.0338134765625, 337.7614440917969, 1.0, 50.057395935058594, 380.4866638183594, 1.0, 124.11468505859375, 382.04925537109375, 1.0, 194.51918029785156, 383.4362487792969, 1.0, 261.8642578125, 384.81427001953125, 1.0, 326.49945068359375, 385.9394836425781, 1.0, 388.0888671875, 386.9601135253906, 1.0, 446.3255615234375, 388.0340881347656, 1.0, 501.6261901855469, 389.0533447265625, 1.0, 554.0797119140625, 390.0307922363281, 1.0, 603.8123168945312, 390.8734130859375, 1.0, 44.85639572143555, 448.4357604980469, 1.0, 120.03678131103516, 448.2080993652344, 1.0, 190.8321990966797, 448.1219482421875, 1.0, 258.8586120605469, 447.8687438964844, 1.0, 324.01739501953125, 447.4127197265625, 1.0, 386.2513732910156, 446.90167236328125, 1.0, 444.8705749511719, 446.3772888183594, 1.0, 500.61468505859375, 445.8633728027344, 1.0, 553.39208984375, 445.33740234375, 1.0, 603.7764282226562, 445.1195068359375, 1.0, 39.56404113769531, 517.6614379882812, 1.0, 115.97650909423828, 515.575439453125, 1.0, 187.58717346191406, 513.7340698242188, 1.0, 255.87770080566406, 511.8901672363281, 1.0, 321.5799255371094, 509.9122009277344, 1.0, 384.02691650390625, 507.78662109375, 1.0, 443.3050842285156, 505.6255798339844, 1.0, 499.4965515136719, 503.68212890625, 1.0, 552.8681640625, 501.8023681640625, 1.0, 603.4833374023438, 500.1021728515625, 1.0, 33.97446060180664, 588.1796875, 1.0, 112.25753021240234, 583.7630004882812, 1.0, 184.52581787109375, 580.2529907226562, 1.0, 253.21600341796875, 576.8594360351562, 1.0, 318.93768310546875, 573.3877563476562, 1.0, 381.85479736328125, 569.763916015625, 1.0, 441.71368408203125, 566.141845703125, 1.0, 498.3765563964844, 562.6029663085938, 1.0, 552.0709228515625, 559.2514038085938, 1.0, 603.3521118164062, 556.2796020507812, 1.0, 28.027713775634766, 660.1472778320312, 1.0, 107.89415740966797, 653.247314453125, 1.0, 181.5769805908203, 647.3367309570312, 1.0, 250.89874267578125, 642.3515014648438, 1.0, 316.8437194824219, 637.472900390625, 1.0, 379.8890380859375, 632.422119140625, 1.0, 440.12445068359375, 627.35107421875, 1.0, 497.1675720214844, 622.4716796875, 1.0, 551.5050048828125, 617.7576293945312, 1.0, 602.9705810546875, 613.3173828125, 1.0, 217.0646209716797, 38.4959831237793, 1.0, 283.26019287109375, 48.000877380371094, 1.0, 347.1270751953125, 57.38212585449219, 1.0, 408.5682678222656, 66.71602630615234, 1.0, 467.6751403808594, 75.85205078125, 1.0, 524.1681518554688, 84.77926635742188, 1.0, 578.4671020507812, 93.22496032714844, 1.0, 630.4769287109375, 101.34339904785156, 1.0, 680.6141967773438, 109.0471420288086, 1.0, 728.586669921875, 116.4219741821289, 1.0, 213.6695556640625, 102.0639877319336, 1.0, 280.5292053222656, 110.44168090820312, 1.0, 345.10565185546875, 118.75447845458984, 1.0, 407.1734924316406, 126.95220947265625, 1.0, 466.6299743652344, 134.97589111328125, 1.0, 523.6183471679688, 142.69114685058594, 1.0, 578.138671875, 150.0735321044922, 1.0, 630.38623046875, 157.08555603027344, 1.0, 680.4934692382812, 163.57679748535156, 1.0, 728.8826904296875, 169.91392517089844, 1.0, 210.43875122070312, 166.7550811767578, 1.0, 277.9166259765625, 173.95358276367188, 1.0, 343.3128356933594, 181.1903076171875, 1.0, 405.76934814453125, 188.05267333984375, 1.0, 465.7881774902344, 194.80335998535156, 1.0, 522.9132080078125, 201.21319580078125, 1.0, 577.7871704101562, 207.36094665527344, 1.0, 630.1544189453125, 213.1833953857422, 1.0, 680.6248779296875, 218.67160034179688, 1.0, 729.090087890625, 224.04299926757812, 1.0, 207.3065185546875, 232.60142517089844, 1.0, 275.6221618652344, 238.45993041992188, 1.0, 341.4649658203125, 244.21810913085938, 1.0, 404.535888671875, 249.763427734375, 1.0, 464.83038330078125, 255.1981658935547, 1.0, 522.3287963867188, 260.2544250488281, 1.0, 577.3627319335938, 265.1439514160156, 1.0, 630.0543212890625, 269.7739562988281, 1.0, 680.6666259765625, 274.1735534667969, 1.0, 729.354736328125, 278.3675842285156, 1.0, 204.3831329345703, 299.3590087890625, 1.0, 273.3219909667969, 303.8184814453125, 1.0, 339.6697082519531, 308.07244873046875, 1.0, 403.1766052246094, 312.21331787109375, 1.0, 463.8202209472656, 316.0777282714844, 1.0, 521.6875, 319.8655700683594, 1.0, 576.9950561523438, 323.4261474609375, 1.0, 629.8826904296875, 326.8377685546875, 1.0, 680.7306518554688, 330.1101379394531, 1.0, 729.7138671875, 333.39111328125, 1.0, 201.5587158203125, 366.8340759277344, 1.0, 270.89923095703125, 369.67333984375, 1.0, 337.7688293457031, 372.4312744140625, 1.0, 401.7298889160156, 375.04693603515625, 1.0, 462.7973937988281, 377.4944763183594, 1.0, 521.0313110351562, 379.76458740234375, 1.0, 576.6233520507812, 382.02362060546875, 1.0, 629.8478393554688, 384.26739501953125, 1.0, 680.965576171875, 386.47503662109375, 1.0, 730.108642578125, 388.4967041015625, 1.0, 198.79171752929688, 435.4536437988281, 1.0, 268.5361633300781, 436.8831787109375, 1.0, 335.80816650390625, 437.9710693359375, 1.0, 400.1926574707031, 438.9502258300781, 1.0, 461.6076965332031, 439.84405517578125, 1.0, 520.2503051757812, 440.75506591796875, 1.0, 576.1825561523438, 441.6512145996094, 1.0, 629.7468872070312, 442.5939025878906, 1.0, 681.2297973632812, 443.67095947265625, 1.0, 730.7341918945312, 444.69744873046875, 1.0, 196.45086669921875, 504.798583984375, 1.0, 266.41229248046875, 504.76739501953125, 1.0, 333.74658203125, 504.4593200683594, 1.0, 398.5404357910156, 503.8895263671875, 1.0, 460.4266052246094, 503.3053283691406, 1.0, 519.39404296875, 502.6924133300781, 1.0, 575.9223022460938, 502.29473876953125, 1.0, 629.7438354492188, 501.8988342285156, 1.0, 681.566650390625, 501.7098388671875, 1.0, 731.361572265625, 501.5553894042969, 1.0, 194.41494750976562, 574.8696899414062, 1.0, 264.38409423828125, 573.4542846679688, 1.0, 332.0321960449219, 571.6962280273438, 1.0, 396.9815368652344, 569.6841430664062, 1.0, 459.1709899902344, 567.635009765625, 1.0, 518.599609375, 565.6741943359375, 1.0, 575.406005859375, 563.8189086914062, 1.0, 629.8059692382812, 562.138671875, 1.0, 681.999267578125, 560.6317749023438, 1.0, 732.1508178710938, 559.3214111328125, 1.0, 192.58839416503906, 645.4222412109375, 1.0, 262.779052734375, 642.4849243164062, 1.0, 330.518798828125, 639.4608764648438, 1.0, 395.5983581542969, 636.2283935546875, 1.0, 458.1181640625, 632.8912963867188, 1.0, 517.83642578125, 629.5276489257812, 1.0, 575.0966796875, 626.344970703125, 1.0, 629.8426513671875, 623.3027954101562, 1.0, 682.39599609375, 620.514892578125, 1.0, 732.8087768554688, 617.8363647460938, 1.0, 265.6722717285156, 87.16837310791016, 1.0, 329.6620788574219, 95.52115631103516, 1.0, 391.3765869140625, 103.86668395996094, 1.0, 450.5158386230469, 112.14190673828125, 1.0, 507.35870361328125, 120.05915069580078, 1.0, 561.7372436523438, 127.68757629394531, 1.0, 613.9524536132812, 134.9790496826172, 1.0, 663.9025268554688, 141.86703491210938, 1.0, 712.1408081054688, 148.4609832763672, 1.0, 758.4702758789062, 154.77085876464844, 1.0, 262.6058044433594, 148.47708129882812, 1.0, 327.3480529785156, 155.80364990234375, 1.0, 389.7252502441406, 163.12673950195312, 1.0, 449.4107360839844, 170.20655822753906, 1.0, 506.4184875488281, 176.96551513671875, 1.0, 561.1438598632812, 183.4580078125, 1.0, 613.5321655273438, 189.57376098632812, 1.0, 663.8695678710938, 195.4969940185547, 1.0, 712.2467651367188, 201.0576629638672, 1.0, 758.8665161132812, 206.4827117919922, 1.0, 259.6123962402344, 210.94189453125, 1.0, 325.1536560058594, 217.14768981933594, 1.0, 388.04095458984375, 223.18295288085938, 1.0, 448.1783447265625, 229.0010986328125, 1.0, 505.6842346191406, 234.5310821533203, 1.0, 560.6495971679688, 239.76211547851562, 1.0, 613.261962890625, 244.84144592285156, 1.0, 663.7927856445312, 249.57833862304688, 1.0, 712.42138671875, 254.20883178710938, 1.0, 759.3053588867188, 258.6257019042969, 1.0, 256.778076171875, 274.4736633300781, 1.0, 322.90887451171875, 279.25909423828125, 1.0, 386.3719482421875, 283.8466491699219, 1.0, 446.89569091796875, 288.3688659667969, 1.0, 504.8600769042969, 292.6256103515625, 1.0, 560.0516967773438, 296.66357421875, 1.0, 613.0067749023438, 300.5882263183594, 1.0, 663.7669677734375, 304.28955078125, 1.0, 712.6768798828125, 307.787841796875, 1.0, 759.7948608398438, 311.2117004394531, 1.0, 253.87905883789062, 338.9320068359375, 1.0, 320.5760803222656, 342.35955810546875, 1.0, 384.59747314453125, 345.5508117675781, 1.0, 445.5987854003906, 348.53778076171875, 1.0, 503.8952941894531, 351.4991455078125, 1.0, 559.5422973632812, 354.3671569824219, 1.0, 612.7694702148438, 356.8790588378906, 1.0, 663.7875366210938, 359.587158203125, 1.0, 713.0143432617188, 362.1622314453125, 1.0, 760.357666015625, 364.5622253417969, 1.0, 251.20074462890625, 404.1488037109375, 1.0, 318.2645263671875, 406.0742492675781, 1.0, 382.7299499511719, 407.6719055175781, 1.0, 444.24591064453125, 409.213623046875, 1.0, 502.94207763671875, 410.7507629394531, 1.0, 558.876708984375, 412.31048583984375, 1.0, 612.4649047851562, 413.768798828125, 1.0, 663.86572265625, 415.2647399902344, 1.0, 713.4219970703125, 416.7420959472656, 1.0, 761.055419921875, 418.2640686035156, 1.0, 248.4537811279297, 470.5498046875, 1.0, 315.82781982421875, 470.99737548828125, 1.0, 380.77191162109375, 471.1697692871094, 1.0, 442.6378173828125, 471.2730712890625, 1.0, 501.7503356933594, 471.3722229003906, 1.0, 558.2388916015625, 471.5340576171875, 1.0, 612.2564086914062, 471.80218505859375, 1.0, 664.08642578125, 472.1465759277344, 1.0, 713.88916015625, 472.5434875488281, 1.0, 761.879638671875, 473.074951171875, 1.0, 245.9327850341797, 537.7089233398438, 1.0, 313.6253662109375, 536.7964477539062, 1.0, 378.78704833984375, 535.585693359375, 1.0, 441.075927734375, 534.3488159179688, 1.0, 500.7604064941406, 532.9818725585938, 1.0, 557.5420532226562, 531.8047485351562, 1.0, 612.0597534179688, 530.794677734375, 1.0, 664.2384033203125, 529.9712524414062, 1.0, 714.3997192382812, 529.2802124023438, 1.0, 762.6122436523438, 528.4834594726562, 1.0, 243.57872009277344, 605.696533203125, 1.0, 311.51519775390625, 603.490478515625, 1.0, 376.9011535644531, 601.02197265625, 1.0, 439.5452880859375, 598.4092407226562, 1.0, 499.5797119140625, 595.6718139648438, 1.0, 556.857421875, 593.1338500976562, 1.0, 611.862060546875, 590.8310546875, 1.0, 664.4348754882812, 588.769287109375, 1.0, 714.879150390625, 586.7494506835938, 1.0, 763.4862060546875, 584.8585205078125, 1.0, 241.863525390625, 674.0333251953125, 1.0, 309.9228210449219, 670.4901733398438, 1.0, 375.3623352050781, 666.8560791015625, 1.0, 438.2323303222656, 663.0234375, 1.0, 498.5910949707031, 659.28076171875, 1.0, 556.3403930664062, 655.4149780273438, 1.0, 611.6182250976562, 651.8282470703125, 1.0, 664.6499633789062, 648.3299560546875, 1.0, 715.3665771484375, 645.1223754882812, 1.0, 764.2164306640625, 641.8475341796875, 1.0, 241.74728393554688, 41.62019729614258, 1.0, 306.9685974121094, 49.958229064941406, 1.0, 369.7813415527344, 58.161827087402344, 1.0, 430.2421569824219, 66.46646881103516, 1.0, 488.1965026855469, 74.46976470947266, 1.0, 543.7067260742188, 82.16545104980469, 1.0, 596.9105834960938, 89.49640655517578, 1.0, 647.9212036132812, 96.59352111816406, 1.0, 696.9066162109375, 103.3377685546875, 1.0, 743.906005859375, 109.74923706054688, 1.0, 239.07101440429688, 103.8618392944336, 1.0, 304.99041748046875, 111.10443115234375, 1.0, 368.55316162109375, 118.28492736816406, 1.0, 429.4732666015625, 125.4218978881836, 1.0, 487.8556823730469, 132.32040405273438, 1.0, 543.5673828125, 138.93359375, 1.0, 596.9620361328125, 145.1319122314453, 1.0, 648.1917724609375, 151.1304931640625, 1.0, 697.3092651367188, 156.70652770996094, 1.0, 744.6697387695312, 162.1701202392578, 1.0, 236.62550354003906, 167.38905334472656, 1.0, 303.3131408691406, 173.41282653808594, 1.0, 367.37188720703125, 179.34262084960938, 1.0, 428.7031555175781, 185.22256469726562, 1.0, 487.4263000488281, 190.77923583984375, 1.0, 543.4678955078125, 196.2638397216797, 1.0, 597.0798950195312, 201.31100463867188, 1.0, 648.4411010742188, 206.0848388671875, 1.0, 697.8557739257812, 210.61337280273438, 1.0, 745.2617797851562, 215.09579467773438, 1.0, 234.37957763671875, 231.626953125, 1.0, 301.6529846191406, 236.4365997314453, 1.0, 366.40899658203125, 240.94175720214844, 1.0, 428.1370544433594, 245.5042724609375, 1.0, 487.0942687988281, 249.7716064453125, 1.0, 543.4225463867188, 253.8383331298828, 1.0, 597.1928100585938, 257.7158508300781, 1.0, 648.7018432617188, 261.4146728515625, 1.0, 698.2867431640625, 264.8526611328125, 1.0, 745.955322265625, 268.24774169921875, 1.0, 232.3373260498047, 296.9748229980469, 1.0, 300.2003479003906, 300.3025817871094, 1.0, 365.2933044433594, 303.4439392089844, 1.0, 427.4522705078125, 306.3985290527344, 1.0, 486.76776123046875, 309.3099060058594, 1.0, 543.3173217773438, 312.1406555175781, 1.0, 597.3088989257812, 314.6532897949219, 1.0, 649.0768432617188, 317.2508239746094, 1.0, 698.8218383789062, 319.5971984863281, 1.0, 746.6924438476562, 321.9377746582031, 1.0, 230.2113494873047, 362.75628662109375, 1.0, 298.52789306640625, 364.52264404296875, 1.0, 364.14544677734375, 366.17413330078125, 1.0, 426.65594482421875, 367.60491943359375, 1.0, 486.287109375, 369.107666015625, 1.0, 543.1404418945312, 370.5079650878906, 1.0, 597.4821166992188, 371.83026123046875, 1.0, 649.4752807617188, 373.166015625, 1.0, 699.4622192382812, 374.5620422363281, 1.0, 747.5223999023438, 375.82379150390625, 1.0, 228.33975219726562, 429.7104187011719, 1.0, 296.98883056640625, 429.8874816894531, 1.0, 362.8487243652344, 429.92523193359375, 1.0, 425.7570495605469, 429.8937072753906, 1.0, 485.8145751953125, 429.8860778808594, 1.0, 542.9563598632812, 429.95086669921875, 1.0, 597.605712890625, 429.9989013671875, 1.0, 649.9280395507812, 430.1346740722656, 1.0, 700.1072387695312, 430.3722229003906, 1.0, 748.5026245117188, 430.6122741699219, 1.0, 226.57110595703125, 497.2997741699219, 1.0, 295.3635559082031, 495.9492492675781, 1.0, 361.57427978515625, 494.4937438964844, 1.0, 424.85064697265625, 492.90142822265625, 1.0, 485.1737976074219, 491.43182373046875, 1.0, 542.7141723632812, 490.0371398925781, 1.0, 597.7485961914062, 488.84539794921875, 1.0, 650.3639526367188, 487.7364501953125, 1.0, 700.9252319335938, 486.86407470703125, 1.0, 749.4367065429688, 485.9224853515625, 1.0, 225.1519012451172, 565.4049682617188, 1.0, 293.914306640625, 562.718994140625, 1.0, 360.3255920410156, 559.86572265625, 1.0, 423.80145263671875, 556.9481811523438, 1.0, 484.5730285644531, 553.9965209960938, 1.0, 542.47119140625, 551.1690063476562, 1.0, 597.8372192382812, 548.5985717773438, 1.0, 650.8916015625, 546.30615234375, 1.0, 701.77783203125, 544.0994262695312, 1.0, 750.5470581054688, 542.091796875, 1.0, 223.99253845214844, 633.7633666992188, 1.0, 292.8194580078125, 629.900146484375, 1.0, 359.2912292480469, 625.7538452148438, 1.0, 422.96136474609375, 621.5648193359375, 1.0, 483.9530334472656, 617.2753295898438, 1.0, 542.249755859375, 613.1876831054688, 1.0, 598.0210571289062, 609.2073974609375, 1.0, 651.3577270507812, 605.4827880859375, 1.0, 702.4761352539062, 602.0712890625, 1.0, 751.566162109375, 598.76220703125, 1.0, 282.069580078125, 22.68131446838379, 1.0, 348.7615966796875, 29.510894775390625, 1.0, 412.99139404296875, 36.338706970214844, 1.0, 474.6212463378906, 43.250022888183594, 1.0, 533.7206420898438, 49.785213470458984, 1.0, 590.2371215820312, 56.21916580200195, 1.0, 644.589111328125, 62.31487274169922, 1.0, 696.6065673828125, 68.0818862915039, 1.0, 746.81103515625, 73.59904479980469, 1.0, 794.9081420898438, 79.069580078125, 1.0, 282.5731506347656, 87.36117553710938, 1.0, 349.94146728515625, 93.06295013427734, 1.0, 414.6457824707031, 98.7208480834961, 1.0, 476.7167663574219, 104.42366790771484, 1.0, 536.153564453125, 109.84857177734375, 1.0, 592.8655395507812, 115.10969543457031, 1.0, 647.3714599609375, 119.8785400390625, 1.0, 699.6405029296875, 124.54963684082031, 1.0, 749.8338623046875, 128.88809204101562, 1.0, 798.2330322265625, 133.15501403808594, 1.0, 283.3454284667969, 153.23753356933594, 1.0, 351.3594665527344, 157.65957641601562, 1.0, 416.634521484375, 162.159912109375, 1.0, 478.89764404296875, 166.482666015625, 1.0, 538.5220336914062, 170.5481719970703, 1.0, 595.525146484375, 174.5019989013672, 1.0, 650.103271484375, 178.19810485839844, 1.0, 702.421875, 181.5576629638672, 1.0, 753.01806640625, 184.7957763671875, 1.0, 801.4436645507812, 187.9337921142578, 1.0, 284.2960510253906, 220.15711975097656, 1.0, 352.9853210449219, 223.18618774414062, 1.0, 418.59259033203125, 226.17373657226562, 1.0, 481.3125305175781, 229.05604553222656, 1.0, 541.0294189453125, 231.77760314941406, 1.0, 598.23779296875, 234.3840789794922, 1.0, 652.8461303710938, 236.7132568359375, 1.0, 705.4535522460938, 238.96151733398438, 1.0, 756.1172485351562, 241.19046020507812, 1.0, 804.7550659179688, 243.1884765625, 1.0, 285.4328308105469, 287.90679931640625, 1.0, 354.5760192871094, 289.3731384277344, 1.0, 420.6627502441406, 290.8125305175781, 1.0, 483.5198669433594, 292.2218933105469, 1.0, 543.5309448242188, 293.4820861816406, 1.0, 600.7981567382812, 294.6719665527344, 1.0, 655.7421875, 295.8276062011719, 1.0, 708.4483032226562, 296.9231872558594, 1.0, 759.2510986328125, 297.9640197753906, 1.0, 808.1328125, 298.956787109375, 1.0, 286.55926513671875, 356.2387390136719, 1.0, 356.12225341796875, 355.9927673339844, 1.0, 422.5273742675781, 355.76226806640625, 1.0, 485.6725769042969, 355.56787109375, 1.0, 546.0098266601562, 355.3865051269531, 1.0, 603.5072631835938, 355.3013610839844, 1.0, 658.6519165039062, 355.1714172363281, 1.0, 711.5195922851562, 355.07122802734375, 1.0, 762.558349609375, 355.0123596191406, 1.0, 811.5449829101562, 354.84619140625, 1.0, 287.7167663574219, 425.7080993652344, 1.0, 357.5586242675781, 423.72979736328125, 1.0, 424.384521484375, 421.82861328125, 1.0, 487.90191650390625, 420.0414733886719, 1.0, 548.4425659179688, 418.2986145019531, 1.0, 606.2741088867188, 416.7615966796875, 1.0, 661.5965576171875, 415.39971923828125, 1.0, 714.7913208007812, 414.22216796875, 1.0, 765.9464111328125, 412.89349365234375, 1.0, 815.2791748046875, 411.8138732910156, 1.0, 288.9620666503906, 495.8880920410156, 1.0, 359.0484619140625, 492.35235595703125, 1.0, 426.1722717285156, 488.7279357910156, 1.0, 490.0021057128906, 485.32794189453125, 1.0, 550.9043579101562, 482.07452392578125, 1.0, 609.081298828125, 479.1525573730469, 1.0, 664.6776123046875, 476.4375305175781, 1.0, 718.1399536132812, 473.83489990234375, 1.0, 769.5636596679688, 471.5076599121094, 1.0, 818.9788208007812, 469.2444152832031, 1.0, 290.3272705078125, 566.927978515625, 1.0, 360.57318115234375, 561.7616577148438, 1.0, 427.80181884765625, 556.6818237304688, 1.0, 492.0828857421875, 551.6917724609375, 1.0, 553.395263671875, 546.9088134765625, 1.0, 611.8228149414062, 542.5339965820312, 1.0, 667.883544921875, 538.3306884765625, 1.0, 721.66845703125, 534.6139526367188, 1.0, 773.2066650390625, 530.8754272460938, 1.0, 822.862060546875, 527.4674072265625, 1.0, 292.2575988769531, 638.324462890625, 1.0, 362.401611328125, 631.8583984375, 1.0, 429.72674560546875, 625.3529663085938, 1.0, 494.2907409667969, 618.8651733398438, 1.0, 555.85400390625, 612.72021484375, 1.0, 614.7030639648438, 606.7639770507812, 1.0, 671.1846313476562, 601.2582397460938, 1.0, 725.1199951171875, 595.9903564453125, 1.0, 777.0099487304688, 591.0689086914062, 1.0, 826.6473388671875, 586.1451416015625, 1.0, 302.2193298339844, 81.02742767333984, 1.0, 368.1343994140625, 87.55921173095703, 1.0, 431.49853515625, 94.18647003173828, 1.0, 492.0810852050781, 100.44641876220703, 1.0, 550.2485961914062, 106.46427154541016, 1.0, 605.8566284179688, 112.3729476928711, 1.0, 659.3433837890625, 117.77566528320312, 1.0, 710.4290161132812, 123.12454223632812, 1.0, 759.9752807617188, 128.0767059326172, 1.0, 807.390380859375, 132.9405059814453, 1.0, 302.2966003417969, 145.19732666015625, 1.0, 369.0350036621094, 150.58026123046875, 1.0, 432.8069152832031, 155.73529052734375, 1.0, 493.8653869628906, 160.9532470703125, 1.0, 552.296142578125, 165.74078369140625, 1.0, 608.2904052734375, 170.45899963378906, 1.0, 661.7899780273438, 174.75262451171875, 1.0, 713.4340209960938, 178.8702392578125, 1.0, 762.8627319335938, 182.76734924316406, 1.0, 810.6634521484375, 186.52804565429688, 1.0, 302.63165283203125, 210.5892791748047, 1.0, 369.8854675292969, 214.5938720703125, 1.0, 434.2937316894531, 218.47947692871094, 1.0, 495.7305908203125, 222.28265380859375, 1.0, 554.4232788085938, 225.7924041748047, 1.0, 610.49658203125, 229.17860412597656, 1.0, 664.4462890625, 232.33287048339844, 1.0, 716.2548217773438, 235.40196228027344, 1.0, 766.04052734375, 238.07740783691406, 1.0, 814.0633544921875, 240.84519958496094, 1.0, 302.93145751953125, 277.01806640625, 1.0, 370.9044189453125, 279.50482177734375, 1.0, 435.7663269042969, 281.892578125, 1.0, 497.5482177734375, 284.26141357421875, 1.0, 556.545654296875, 286.43310546875, 1.0, 613.0254516601562, 288.4930725097656, 1.0, 667.0659790039062, 290.4400329589844, 1.0, 719.068115234375, 292.2342834472656, 1.0, 769.2196655273438, 294.0375061035156, 1.0, 817.4397583007812, 295.7510986328125, 1.0, 303.4242248535156, 344.4953308105469, 1.0, 371.8136291503906, 345.4167175292969, 1.0, 437.07281494140625, 346.2560729980469, 1.0, 499.4042053222656, 347.0144348144531, 1.0, 558.71044921875, 347.800537109375, 1.0, 615.4345092773438, 348.5587463378906, 1.0, 669.7766723632812, 349.3356018066406, 1.0, 722.2002563476562, 350.0331115722656, 1.0, 772.4639282226562, 350.69158935546875, 1.0, 820.9939575195312, 351.46649169921875, 1.0, 303.70550537109375, 412.7840270996094, 1.0, 372.5904235839844, 412.00860595703125, 1.0, 438.4739990234375, 411.2249450683594, 1.0, 501.1803894042969, 410.4362487792969, 1.0, 560.9656372070312, 409.6946716308594, 1.0, 618.0094604492188, 409.1947021484375, 1.0, 672.6820678710938, 408.699462890625, 1.0, 725.3118896484375, 408.3041076660156, 1.0, 775.9961547851562, 407.9057922363281, 1.0, 824.7213134765625, 407.4947509765625, 1.0, 304.1163330078125, 482.528076171875, 1.0, 373.42462158203125, 480.0856628417969, 1.0, 439.7450866699219, 477.57269287109375, 1.0, 502.77056884765625, 475.2109069824219, 1.0, 563.1284790039062, 473.05548095703125, 1.0, 620.5377807617188, 471.0938415527344, 1.0, 675.611572265625, 469.3190612792969, 1.0, 728.5859375, 467.7414245605469, 1.0, 779.4725341796875, 466.1842346191406, 1.0, 828.525634765625, 464.7383728027344, 1.0, 304.58428955078125, 553.1715087890625, 1.0, 374.2295227050781, 549.2051391601562, 1.0, 440.9942626953125, 545.148193359375, 1.0, 504.5635681152344, 541.1990356445312, 1.0, 565.2528686523438, 537.5796508789062, 1.0, 623.2352905273438, 534.1806030273438, 1.0, 678.6102905273438, 531.0691528320312, 1.0, 731.9371337890625, 528.2001342773438, 1.0, 783.2402954101562, 525.451416015625, 1.0, 832.4840087890625, 522.6868896484375, 1.0, 305.36370849609375, 624.7694702148438, 1.0, 375.1231689453125, 619.3850708007812, 1.0, 442.2310485839844, 613.9246215820312, 1.0, 506.2729797363281, 608.5568237304688, 1.0, 567.3740234375, 603.4185180664062, 1.0, 625.7383422851562, 598.5928344726562, 1.0, 681.7264404296875, 593.984375, 1.0, 735.43359375, 589.7069091796875, 1.0, 786.8760986328125, 585.5545654296875, 1.0, 836.3497924804688, 581.62744140625, 1.0, 306.547607421875, 696.7658081054688, 1.0, 376.55096435546875, 690.1327514648438, 1.0, 443.6748046875, 683.359375, 1.0, 507.9519348144531, 676.6069946289062, 1.0, 569.6142578125, 670.1307373046875, 1.0, 628.4801025390625, 663.77197265625, 1.0, 684.7914428710938, 657.7296142578125, 1.0, 738.6642456054688, 651.94677734375, 1.0, 790.5437622070312, 646.4471435546875, 1.0, 840.1873168945312, 640.9918212890625, 1.0, 546.7528686523438, 26.154333114624023, 1.0, 606.3428344726562, 32.87259292602539, 1.0, 664.2105102539062, 39.34615707397461, 1.0, 720.1055908203125, 45.61650848388672, 1.0, 774.4771728515625, 51.6893310546875, 1.0, 826.9465942382812, 57.582069396972656, 1.0, 878.00830078125, 63.4993782043457, 1.0, 927.2724609375, 69.34516906738281, 1.0, 975.0409545898438, 75.02650451660156, 1.0, 1021.1257934570312, 80.66111755371094, 1.0, 545.6826171875, 86.75354766845703, 1.0, 605.5045166015625, 92.55362701416016, 1.0, 663.4981689453125, 98.15373229980469, 1.0, 719.6571044921875, 103.50867462158203, 1.0, 774.0728149414062, 108.66029357910156, 1.0, 826.955810546875, 113.6854248046875, 1.0, 878.0629272460938, 118.66903686523438, 1.0, 927.7591552734375, 123.50482177734375, 1.0, 975.6533813476562, 128.3703155517578, 1.0, 1022.0715942382812, 133.27786254882812, 1.0, 544.5916137695312, 147.96820068359375, 1.0, 604.566650390625, 152.82435607910156, 1.0, 662.614990234375, 157.4044189453125, 1.0, 718.8541259765625, 161.7927703857422, 1.0, 773.7162475585938, 166.096923828125, 1.0, 826.6690673828125, 170.14846801757812, 1.0, 878.0086669921875, 174.0282745361328, 1.0, 927.978271484375, 178.45738220214844, 1.0, 976.36669921875, 182.254638671875, 1.0, 1022.7350463867188, 186.35940551757812, 1.0, 543.5491333007812, 209.4468536376953, 1.0, 603.7105102539062, 213.38836669921875, 1.0, 661.8429565429688, 217.0145721435547, 1.0, 718.2855224609375, 220.499267578125, 1.0, 773.1336059570312, 223.87843322753906, 1.0, 826.4225463867188, 227.10791015625, 1.0, 878.0616455078125, 230.32379150390625, 1.0, 928.212890625, 233.5313720703125, 1.0, 976.7206420898438, 236.70001220703125, 1.0, 1023.4346923828125, 239.75210571289062, 1.0, 542.4869995117188, 271.27130126953125, 1.0, 602.7921142578125, 274.1892395019531, 1.0, 661.0787963867188, 276.9094543457031, 1.0, 717.7083740234375, 279.5172424316406, 1.0, 772.7097778320312, 281.9548645019531, 1.0, 826.1683959960938, 284.45684814453125, 1.0, 878.0733642578125, 286.83526611328125, 1.0, 928.4086303710938, 289.27532958984375, 1.0, 977.1011962890625, 291.54205322265625, 1.0, 1023.9694213867188, 293.9689636230469, 1.0, 541.385009765625, 333.166748046875, 1.0, 601.8567504882812, 334.9916076660156, 1.0, 660.3408813476562, 336.7362365722656, 1.0, 717.0700073242188, 338.4665832519531, 1.0, 772.338623046875, 340.22222900390625, 1.0, 825.9111938476562, 341.92108154296875, 1.0, 878.0932006835938, 343.5140075683594, 1.0, 928.6343994140625, 345.0579528808594, 1.0, 977.3745727539062, 346.55047607421875, 1.0, 1024.55615234375, 347.9673156738281, 1.0, 540.3330688476562, 395.6864318847656, 1.0, 600.9193115234375, 396.5491027832031, 1.0, 659.6556396484375, 397.37481689453125, 1.0, 716.5653076171875, 398.293701171875, 1.0, 772.0465698242188, 399.0872802734375, 1.0, 825.7918090820312, 400.03570556640625, 1.0, 878.0000610351562, 400.7244567871094, 1.0, 928.73291015625, 401.51129150390625, 1.0, 977.6299438476562, 402.12823486328125, 1.0, 1024.900634765625, 402.856201171875, 1.0, 539.06005859375, 458.8503723144531, 1.0, 600.0398559570312, 458.5970458984375, 1.0, 658.9998168945312, 458.5687561035156, 1.0, 716.2034912109375, 458.45025634765625, 1.0, 771.8305053710938, 458.4839172363281, 1.0, 825.7807006835938, 458.4020080566406, 1.0, 878.1817626953125, 458.4395446777344, 1.0, 928.8814086914062, 458.2881774902344, 1.0, 978.0004272460938, 458.1585388183594, 1.0, 1025.1082763671875, 457.7805480957031, 1.0, 537.7335205078125, 522.8189697265625, 1.0, 599.0555419921875, 521.4363403320312, 1.0, 658.373779296875, 520.2517700195312, 1.0, 715.8339233398438, 519.3245849609375, 1.0, 771.6224975585938, 518.3831787109375, 1.0, 825.760009765625, 517.5244750976562, 1.0, 878.1142578125, 516.43994140625, 1.0, 929.1279296875, 515.4747314453125, 1.0, 978.0595703125, 514.3373413085938, 1.0, 1025.205322265625, 513.1707153320312, 1.0, 536.5569458007812, 587.4104614257812, 1.0, 598.0315551757812, 584.9973754882812, 1.0, 657.74072265625, 582.8004150390625, 1.0, 715.47216796875, 580.7260131835938, 1.0, 771.4540405273438, 578.7775268554688, 1.0, 825.70361328125, 576.8453369140625, 1.0, 878.2403564453125, 574.8868408203125, 1.0, 929.0034790039062, 572.80126953125, 1.0, 978.105224609375, 570.7454223632812, 1.0, 1025.0931396484375, 568.516845703125, 1.0, 590.4033203125, 101.17904663085938, 1.0, 649.989013671875, 107.4345932006836, 1.0, 708.3077392578125, 113.3592300415039, 1.0, 764.8309936523438, 119.24452209472656, 1.0, 819.9778442382812, 124.95047760009766, 1.0, 873.6303100585938, 130.53744506835938, 1.0, 925.8197631835938, 136.12338256835938, 1.0, 976.4951171875, 141.67832946777344, 1.0, 1025.5689697265625, 147.14840698242188, 1.0, 1073.0020751953125, 152.67298889160156, 1.0, 589.29150390625, 162.24205017089844, 1.0, 649.1942749023438, 167.6539764404297, 1.0, 707.6083374023438, 172.957763671875, 1.0, 764.6777954101562, 178.04457092285156, 1.0, 820.1138305664062, 182.87330627441406, 1.0, 874.2392578125, 187.6637420654297, 1.0, 926.655517578125, 192.59136962890625, 1.0, 977.7940673828125, 197.31869506835938, 1.0, 1027.1688232421875, 202.1850128173828, 1.0, 1075.047119140625, 206.77833557128906, 1.0, 588.1347045898438, 224.01023864746094, 1.0, 648.2769775390625, 228.68101501464844, 1.0, 707.1639404296875, 233.12655639648438, 1.0, 764.3001098632812, 237.42794799804688, 1.0, 820.275634765625, 241.5752716064453, 1.0, 874.62255859375, 245.6929168701172, 1.0, 927.599609375, 249.63059997558594, 1.0, 978.9596557617188, 253.81607055664062, 1.0, 1028.7855224609375, 257.7768859863281, 1.0, 1076.88427734375, 261.7832946777344, 1.0, 586.8107299804688, 286.365966796875, 1.0, 647.4747314453125, 290.1697998046875, 1.0, 706.4478149414062, 293.7556457519531, 1.0, 764.07275390625, 297.3249816894531, 1.0, 820.33935546875, 300.80474853515625, 1.0, 875.1122436523438, 304.30157470703125, 1.0, 928.4805297851562, 307.5928955078125, 1.0, 980.2207641601562, 310.8933410644531, 1.0, 1030.2120361328125, 314.1746826171875, 1.0, 1078.5721435546875, 317.3458557128906, 1.0, 585.4664306640625, 349.34991455078125, 1.0, 646.4484252929688, 352.31878662109375, 1.0, 705.8876342773438, 355.1483154296875, 1.0, 763.8473510742188, 358.1561584472656, 1.0, 820.3965454101562, 360.7638244628906, 1.0, 875.5016479492188, 363.5524597167969, 1.0, 929.1497802734375, 366.2657775878906, 1.0, 981.2308349609375, 368.7544860839844, 1.0, 1031.525634765625, 371.290283203125, 1.0, 1080.130126953125, 373.5997314453125, 1.0, 584.1070556640625, 412.7633056640625, 1.0, 645.4002075195312, 414.8807067871094, 1.0, 705.2644653320312, 417.0806884765625, 1.0, 763.5247802734375, 419.1677551269531, 1.0, 820.5310668945312, 421.3907470703125, 1.0, 875.9976806640625, 423.3245849609375, 1.0, 929.9285278320312, 425.3547058105469, 1.0, 982.23974609375, 426.9959716796875, 1.0, 1032.65283203125, 428.61920166015625, 1.0, 1081.3912353515625, 430.2519836425781, 1.0, 582.3914184570312, 477.70404052734375, 1.0, 644.2989501953125, 478.9627990722656, 1.0, 704.637451171875, 480.2703857421875, 1.0, 763.3123168945312, 481.6108093261719, 1.0, 820.5870971679688, 482.9227294921875, 1.0, 876.35400390625, 484.2682189941406, 1.0, 930.5247802734375, 485.2738037109375, 1.0, 982.958984375, 486.3030090332031, 1.0, 1033.6265869140625, 486.9618225097656, 1.0, 1082.452392578125, 487.70062255859375, 1.0, 580.7749633789062, 543.7329711914062, 1.0, 643.18408203125, 544.10791015625, 1.0, 704.0255126953125, 544.5516967773438, 1.0, 763.1256713867188, 544.8951416015625, 1.0, 820.7507934570312, 545.412353515625, 1.0, 876.7118530273438, 545.72119140625, 1.0, 931.1694946289062, 545.9987182617188, 1.0, 983.6823120117188, 545.9208984375, 1.0, 1034.32373046875, 545.8345336914062, 1.0, 1083.508056640625, 545.6043701171875, 1.0, 579.0519409179688, 610.9476928710938, 1.0, 642.0274658203125, 610.272705078125, 1.0, 703.298583984375, 609.6921997070312, 1.0, 762.831298828125, 609.291015625, 1.0, 820.7457275390625, 608.6879272460938, 1.0, 876.9201049804688, 608.0938110351562, 1.0, 931.3319702148438, 607.197021484375, 1.0, 984.08984375, 606.22607421875, 1.0, 1034.896728515625, 605.0618286132812, 1.0, 1084.4864501953125, 604.1534423828125, 1.0, 577.27880859375, 678.9196166992188, 1.0, 640.832763671875, 677.2119750976562, 1.0, 702.4951171875, 675.661865234375, 1.0, 762.4541015625, 674.1255493164062, 1.0, 820.5411376953125, 672.453125, 1.0, 876.875732421875, 670.6251220703125, 1.0, 931.4609375, 668.7208862304688, 1.0, 984.2398681640625, 666.6107788085938, 1.0, 1035.4744873046875, 664.778076171875, 1.0, 1085.539794921875, 663.1416015625, 1.0, 578.4254150390625, 110.25397491455078, 1.0, 637.787353515625, 117.17393493652344, 1.0, 695.7294921875, 123.7783432006836, 1.0, 752.013916015625, 130.3494110107422, 1.0, 806.8082885742188, 136.40504455566406, 1.0, 860.2237548828125, 142.70635986328125, 1.0, 912.193359375, 148.6826629638672, 1.0, 962.5172729492188, 154.6915740966797, 1.0, 1011.31787109375, 160.65223693847656, 1.0, 1058.581787109375, 166.6800537109375, 1.0, 576.3142700195312, 171.0828399658203, 1.0, 636.0614013671875, 177.24444580078125, 1.0, 694.2919921875, 182.94598388671875, 1.0, 750.910888671875, 188.65980529785156, 1.0, 806.1113891601562, 194.18643188476562, 1.0, 859.9098510742188, 199.49026489257812, 1.0, 912.08642578125, 204.804931640625, 1.0, 962.9281005859375, 210.16098022460938, 1.0, 1012.0103149414062, 215.2803955078125, 1.0, 1059.6717529296875, 220.51243591308594, 1.0, 574.2106323242188, 232.59706115722656, 1.0, 634.2200927734375, 238.02880859375, 1.0, 692.7108154296875, 242.90916442871094, 1.0, 749.762939453125, 247.89968872070312, 1.0, 805.3353271484375, 252.57327270507812, 1.0, 859.4652099609375, 257.2113342285156, 1.0, 912.1616821289062, 261.6868591308594, 1.0, 963.2973022460938, 266.3384094238281, 1.0, 1012.9024047851562, 270.7187194824219, 1.0, 1060.7017822265625, 275.18975830078125, 1.0, 572.04052734375, 294.74346923828125, 1.0, 632.471923828125, 299.2263488769531, 1.0, 691.3439331054688, 303.44158935546875, 1.0, 748.619140625, 307.5837097167969, 1.0, 804.6185302734375, 311.5493469238281, 1.0, 859.1109619140625, 315.53021240234375, 1.0, 912.1728515625, 319.42156982421875, 1.0, 963.6216430664062, 323.0857238769531, 1.0, 1013.4669799804688, 326.7316589355469, 1.0, 1061.604248046875, 330.4019775390625, 1.0, 569.6942749023438, 357.70294189453125, 1.0, 630.56689453125, 361.25189208984375, 1.0, 689.863037109375, 364.6388854980469, 1.0, 747.5208740234375, 368.1435546875, 1.0, 803.8717041015625, 371.3957824707031, 1.0, 858.7210693359375, 374.5912170410156, 1.0, 912.1589965820312, 377.6512756347656, 1.0, 963.9688720703125, 380.6641845703125, 1.0, 1014.1195678710938, 383.6035461425781, 1.0, 1062.4598388671875, 386.45648193359375, 1.0, 567.4108276367188, 421.15411376953125, 1.0, 628.7576293945312, 423.72796630859375, 1.0, 688.4586181640625, 426.45849609375, 1.0, 746.5836181640625, 429.0357360839844, 1.0, 803.2332153320312, 431.57440185546875, 1.0, 858.467529296875, 434.1005859375, 1.0, 912.2094116210938, 436.4809875488281, 1.0, 964.2665405273438, 438.7754821777344, 1.0, 1014.519775390625, 440.7495422363281, 1.0, 1063.0404052734375, 442.72100830078125, 1.0, 565.0388793945312, 485.9591979980469, 1.0, 626.861083984375, 487.679931640625, 1.0, 687.0219116210938, 489.44464111328125, 1.0, 745.5563354492188, 491.3216247558594, 1.0, 802.6160888671875, 493.0943298339844, 1.0, 858.1847534179688, 494.7156982421875, 1.0, 912.1885986328125, 496.3285827636719, 1.0, 964.4771728515625, 497.6556701660156, 1.0, 1014.8540649414062, 498.83355712890625, 1.0, 1063.5152587890625, 499.91400146484375, 1.0, 562.4473266601562, 552.0502319335938, 1.0, 624.9401245117188, 552.7255859375, 1.0, 685.5934448242188, 553.5296630859375, 1.0, 744.6492309570312, 554.588623046875, 1.0, 802.1420288085938, 555.450439453125, 1.0, 857.9329833984375, 556.166259765625, 1.0, 912.1257934570312, 556.8065185546875, 1.0, 964.4693603515625, 557.1868896484375, 1.0, 1014.9732666015625, 557.4089965820312, 1.0, 1063.944580078125, 557.5870971679688, 1.0, 559.9093627929688, 619.2546997070312, 1.0, 622.8815307617188, 618.94482421875, 1.0, 684.207763671875, 618.8002319335938, 1.0, 743.568115234375, 618.6726684570312, 1.0, 801.3873291015625, 618.420166015625, 1.0, 857.470947265625, 618.2626342773438, 1.0, 911.7786865234375, 617.7595825195312, 1.0, 964.2166748046875, 617.2655639648438, 1.0, 1014.9419555664062, 616.367919921875, 1.0, 1064.2415771484375, 615.7344970703125, 1.0, 557.3331298828125, 687.1026611328125, 1.0, 620.8814086914062, 685.8397216796875, 1.0, 682.5840454101562, 684.69287109375, 1.0, 742.431640625, 683.4129028320312, 1.0, 800.4953002929688, 682.0435180664062, 1.0, 856.78564453125, 680.7364501953125, 1.0, 911.2135620117188, 679.1220092773438, 1.0, 963.8939208984375, 677.4247436523438, 1.0, 1014.8111572265625, 675.822509765625, 1.0, 1064.6065673828125, 674.5272827148438, 1.0, 551.6962280273438, 92.456298828125, 1.0, 611.4652099609375, 99.3901138305664, 1.0, 669.6236572265625, 106.01167297363281, 1.0, 725.9685668945312, 112.47633361816406, 1.0, 780.850341796875, 118.66117095947266, 1.0, 834.24658203125, 124.72216796875, 1.0, 886.2667236328125, 130.65374755859375, 1.0, 936.4990234375, 136.69436645507812, 1.0, 985.4296875, 142.4889373779297, 1.0, 1032.5333251953125, 148.3903350830078, 1.0, 549.7691650390625, 153.1266326904297, 1.0, 609.9609985351562, 159.2119903564453, 1.0, 668.3134765625, 164.9613494873047, 1.0, 724.9898071289062, 170.5879364013672, 1.0, 780.3275756835938, 175.87586975097656, 1.0, 834.0398559570312, 181.24081420898438, 1.0, 886.1810302734375, 186.45413208007812, 1.0, 936.9510498046875, 191.537353515625, 1.0, 986.21826171875, 196.59507751464844, 1.0, 1033.7294921875, 201.64515686035156, 1.0, 548.0082397460938, 214.39793395996094, 1.0, 608.3209228515625, 219.58200073242188, 1.0, 667.0177001953125, 224.56651306152344, 1.0, 723.9337158203125, 229.39183044433594, 1.0, 779.5716552734375, 233.93658447265625, 1.0, 833.7052001953125, 238.47894287109375, 1.0, 886.1875610351562, 242.85520935058594, 1.0, 937.2672729492188, 247.24464416503906, 1.0, 986.9017333984375, 251.51344299316406, 1.0, 1034.72119140625, 255.80783081054688, 1.0, 546.1170654296875, 276.35009765625, 1.0, 606.777587890625, 280.576416015625, 1.0, 665.6925659179688, 284.67779541015625, 1.0, 722.9702758789062, 288.61676025390625, 1.0, 778.8990478515625, 292.48175048828125, 1.0, 833.288330078125, 296.33465576171875, 1.0, 886.3654174804688, 299.9449768066406, 1.0, 937.767333984375, 303.5263977050781, 1.0, 987.5299682617188, 307.1230773925781, 1.0, 1035.7830810546875, 310.5640869140625, 1.0, 544.2105712890625, 338.84429931640625, 1.0, 605.1976318359375, 342.34698486328125, 1.0, 664.4705810546875, 345.4703369140625, 1.0, 722.1192626953125, 348.6035461425781, 1.0, 778.3896484375, 351.6850280761719, 1.0, 833.1065063476562, 354.7264099121094, 1.0, 886.32568359375, 357.6899108886719, 1.0, 938.093994140625, 360.5342102050781, 1.0, 988.2586669921875, 363.3409118652344, 1.0, 1036.5445556640625, 366.078857421875, 1.0, 542.1488647460938, 401.9610900878906, 1.0, 603.632080078125, 404.3345947265625, 1.0, 663.3098754882812, 406.6846008300781, 1.0, 721.2755126953125, 409.0262451171875, 1.0, 777.9609375, 411.44952392578125, 1.0, 832.98779296875, 413.7084045410156, 1.0, 886.5238037109375, 415.85784912109375, 1.0, 938.4992065429688, 417.9277648925781, 1.0, 988.8567504882812, 419.87689208984375, 1.0, 1037.3907470703125, 421.8011474609375, 1.0, 540.0441284179688, 466.32061767578125, 1.0, 602.0081176757812, 467.6837463378906, 1.0, 662.1859130859375, 469.19439697265625, 1.0, 720.6441650390625, 470.747802734375, 1.0, 777.5081787109375, 472.2314758300781, 1.0, 832.8546142578125, 473.65496826171875, 1.0, 886.7041625976562, 475.00079345703125, 1.0, 938.9136352539062, 476.3615417480469, 1.0, 989.3803100585938, 477.38922119140625, 1.0, 1038.0240478515625, 478.2917175292969, 1.0, 537.9400024414062, 531.7678833007812, 1.0, 600.4698486328125, 532.1976318359375, 1.0, 661.04931640625, 532.7411499023438, 1.0, 719.8878173828125, 533.2598876953125, 1.0, 777.125, 533.8933715820312, 1.0, 832.8348999023438, 534.534912109375, 1.0, 886.8637084960938, 534.9564819335938, 1.0, 939.1583251953125, 535.2327270507812, 1.0, 989.7965087890625, 535.43505859375, 1.0, 1038.557373046875, 535.4144287109375, 1.0, 535.6688232421875, 598.481201171875, 1.0, 598.7122802734375, 597.783203125, 1.0, 659.89501953125, 597.2743530273438, 1.0, 719.1784057617188, 596.8558349609375, 1.0, 776.8521118164062, 596.4498901367188, 1.0, 832.7105102539062, 596.0731201171875, 1.0, 886.9374389648438, 595.4361572265625, 1.0, 939.3819580078125, 594.8143920898438, 1.0, 990.0104370117188, 593.9224243164062, 1.0, 1038.893310546875, 592.9616088867188, 1.0, 533.6307373046875, 665.8684692382812, 1.0, 597.0017700195312, 664.3108520507812, 1.0, 658.6896362304688, 662.755126953125, 1.0, 718.3383178710938, 661.2765502929688, 1.0, 776.3601684570312, 659.761474609375, 1.0, 832.5406494140625, 658.1698608398438, 1.0, 886.7431030273438, 656.4634399414062, 1.0, 939.3092041015625, 654.6226196289062, 1.0, 990.0909423828125, 652.816650390625, 1.0, 1039.182861328125, 650.8555297851562, 1.0, 533.3366088867188, 84.86036682128906, 1.0, 593.1010131835938, 91.8140640258789, 1.0, 651.4285888671875, 98.43956756591797, 1.0, 707.8745727539062, 104.89572143554688, 1.0, 762.7279052734375, 111.076904296875, 1.0, 816.1165161132812, 117.1491470336914, 1.0, 867.8274536132812, 123.01300048828125, 1.0, 918.0861206054688, 128.84104919433594, 1.0, 966.71630859375, 134.64407348632812, 1.0, 1013.7596435546875, 140.443603515625, 1.0, 531.6323852539062, 145.6883087158203, 1.0, 591.9713745117188, 151.7806854248047, 1.0, 650.3331909179688, 157.59210205078125, 1.0, 706.9990844726562, 163.16378784179688, 1.0, 762.3087768554688, 168.4638214111328, 1.0, 816.0001831054688, 173.71405029296875, 1.0, 867.8843383789062, 178.76336669921875, 1.0, 918.5658569335938, 183.77349853515625, 1.0, 967.5408325195312, 188.75196838378906, 1.0, 1015.0388793945312, 193.72242736816406, 1.0, 530.0941162109375, 207.3021697998047, 1.0, 590.5648803710938, 212.49801635742188, 1.0, 649.3494873046875, 217.35423278808594, 1.0, 706.15283203125, 222.12355041503906, 1.0, 761.7197265625, 226.6268768310547, 1.0, 815.6911010742188, 230.97265625, 1.0, 868.0836791992188, 235.27853393554688, 1.0, 919.0052490234375, 239.62191772460938, 1.0, 968.4576416015625, 243.67037963867188, 1.0, 1016.1117553710938, 247.88946533203125, 1.0, 528.3391723632812, 269.4057312011719, 1.0, 589.1502075195312, 273.59637451171875, 1.0, 648.2521362304688, 277.625, 1.0, 705.4635620117188, 281.4335021972656, 1.0, 761.272705078125, 285.25054931640625, 1.0, 815.4146118164062, 288.7703857421875, 1.0, 868.2304077148438, 292.40435791015625, 1.0, 919.3865966796875, 295.79901123046875, 1.0, 969.0816650390625, 299.2967224121094, 1.0, 1017.1538696289062, 302.6087646484375, 1.0, 526.5824584960938, 332.2620544433594, 1.0, 587.7692260742188, 335.36651611328125, 1.0, 647.1795043945312, 338.476318359375, 1.0, 704.74267578125, 341.5455017089844, 1.0, 760.7373657226562, 344.4640197753906, 1.0, 815.21142578125, 347.3631896972656, 1.0, 868.3889770507812, 350.1585388183594, 1.0, 919.9696655273438, 352.81976318359375, 1.0, 969.8237915039062, 355.5119934082031, 1.0, 1018.0340576171875, 358.1525573730469, 1.0, 524.904296875, 395.4195251464844, 1.0, 586.4586181640625, 397.4773254394531, 1.0, 646.135498046875, 399.6807556152344, 1.0, 704.021728515625, 401.8992919921875, 1.0, 760.42041015625, 404.1198425292969, 1.0, 815.2124633789062, 406.2231140136719, 1.0, 868.557861328125, 408.2990417480469, 1.0, 920.3645629882812, 410.1509094238281, 1.0, 970.4281005859375, 412.02923583984375, 1.0, 1018.8296508789062, 413.7677917480469, 1.0, 522.9263916015625, 459.76513671875, 1.0, 584.9413452148438, 460.9300231933594, 1.0, 645.0562744140625, 462.235107421875, 1.0, 703.329833984375, 463.5212707519531, 1.0, 760.1116333007812, 464.8121337890625, 1.0, 815.172119140625, 466.1668701171875, 1.0, 868.767578125, 467.3143310546875, 1.0, 920.8399047851562, 468.4697265625, 1.0, 971.109619140625, 469.4364929199219, 1.0, 1019.6021728515625, 470.2498474121094, 1.0, 520.8892822265625, 525.3472290039062, 1.0, 583.4442749023438, 525.4127807617188, 1.0, 644.0828247070312, 525.6569213867188, 1.0, 702.7015991210938, 526.0701904296875, 1.0, 759.85595703125, 526.489990234375, 1.0, 815.18896484375, 526.834716796875, 1.0, 869.1442260742188, 527.16162109375, 1.0, 921.2685546875, 527.3771362304688, 1.0, 971.6959228515625, 527.3952026367188, 1.0, 1020.0778198242188, 527.199951171875, 1.0, 518.7826538085938, 591.9487915039062, 1.0, 581.8195190429688, 590.9407348632812, 1.0, 642.9078369140625, 590.235107421875, 1.0, 702.0974731445312, 589.53369140625, 1.0, 759.5625610351562, 588.96044921875, 1.0, 815.2141723632812, 588.3259887695312, 1.0, 869.2841186523438, 587.5345458984375, 1.0, 921.5616455078125, 586.7443237304688, 1.0, 972.0018920898438, 585.7423706054688, 1.0, 1020.544189453125, 584.6727294921875, 1.0, 516.8414916992188, 659.3576049804688, 1.0, 580.3300170898438, 657.3967895507812, 1.0, 641.9270629882812, 655.6105346679688, 1.0, 701.3958740234375, 653.75341796875, 1.0, 759.2015991210938, 652.10693359375, 1.0, 815.0655517578125, 650.360107421875, 1.0, 869.235107421875, 648.551513671875, 1.0, 921.5703125, 646.5000610351562, 1.0, 972.1187133789062, 644.512939453125, 1.0, 1020.9122314453125, 642.4169311523438, 1.0, 498.99920654296875, 67.71902465820312, 1.0, 559.5739135742188, 74.82430267333984, 1.0, 618.215087890625, 81.67171478271484, 1.0, 674.86669921875, 88.37338256835938, 1.0, 730.0802001953125, 94.67625427246094, 1.0, 783.32421875, 100.92630767822266, 1.0, 835.1278686523438, 106.91419982910156, 1.0, 885.30126953125, 112.83586883544922, 1.0, 933.9786376953125, 118.61507415771484, 1.0, 981.0023803710938, 124.53053283691406, 1.0, 497.4458312988281, 128.70326232910156, 1.0, 558.3011474609375, 134.97454833984375, 1.0, 617.30078125, 140.9423828125, 1.0, 674.1659545898438, 146.60240173339844, 1.0, 729.558349609375, 152.1772003173828, 1.0, 783.1585083007812, 157.4204864501953, 1.0, 835.3094482421875, 162.580322265625, 1.0, 885.9066772460938, 167.53067016601562, 1.0, 934.7059326171875, 172.5480194091797, 1.0, 982.236083984375, 177.46421813964844, 1.0, 496.0843200683594, 190.51263427734375, 1.0, 557.044921875, 195.70611572265625, 1.0, 616.3095703125, 200.75018310546875, 1.0, 673.5874633789062, 205.55369567871094, 1.0, 729.1062622070312, 210.09454345703125, 1.0, 782.8771362304688, 214.4978790283203, 1.0, 835.4135131835938, 218.84622192382812, 1.0, 886.115234375, 223.01971435546875, 1.0, 935.4954223632812, 227.10348510742188, 1.0, 983.1320190429688, 231.2656707763672, 1.0, 494.4599304199219, 252.70083618164062, 1.0, 555.9224243164062, 256.8872375488281, 1.0, 615.3607788085938, 260.8755798339844, 1.0, 672.8244018554688, 264.7386779785156, 1.0, 728.5419921875, 268.45452880859375, 1.0, 782.7866821289062, 272.128662109375, 1.0, 835.5485229492188, 275.5269775390625, 1.0, 886.6397094726562, 278.852294921875, 1.0, 936.2097778320312, 282.2605895996094, 1.0, 984.1792602539062, 285.51959228515625, 1.0, 492.9941711425781, 315.54840087890625, 1.0, 554.7706909179688, 318.6705322265625, 1.0, 614.3822021484375, 321.6141662597656, 1.0, 672.0361328125, 324.57586669921875, 1.0, 728.238037109375, 327.4408874511719, 1.0, 782.6456298828125, 330.2004089355469, 1.0, 835.6175537109375, 332.77606201171875, 1.0, 887.04345703125, 335.5187683105469, 1.0, 936.88916015625, 337.9700622558594, 1.0, 985.037841796875, 340.4811706542969, 1.0, 491.29766845703125, 378.6047058105469, 1.0, 553.55908203125, 380.6732482910156, 1.0, 613.411865234375, 382.62310791015625, 1.0, 671.5189208984375, 384.6965026855469, 1.0, 727.8700561523438, 386.6281433105469, 1.0, 782.5990600585938, 388.5122375488281, 1.0, 835.881103515625, 390.4741516113281, 1.0, 887.4234619140625, 392.1704406738281, 1.0, 937.561767578125, 393.93609619140625, 1.0, 985.9783935546875, 395.6396179199219, 1.0, 489.5546569824219, 442.8273620605469, 1.0, 552.1910400390625, 443.8012390136719, 1.0, 612.4892578125, 444.6760559082031, 1.0, 670.8421630859375, 445.72845458984375, 1.0, 727.6365356445312, 446.78790283203125, 1.0, 782.5951538085938, 447.8755798339844, 1.0, 836.158935546875, 448.91015625, 1.0, 888.123779296875, 449.8553466796875, 1.0, 938.3045043945312, 450.7145690917969, 1.0, 986.791259765625, 451.48773193359375, 1.0, 487.7621154785156, 508.0506286621094, 1.0, 550.7304077148438, 507.70294189453125, 1.0, 611.556640625, 507.5326232910156, 1.0, 670.38330078125, 507.6214904785156, 1.0, 727.5067138671875, 507.70843505859375, 1.0, 782.7307739257812, 507.8778991699219, 1.0, 836.4909057617188, 508.0045471191406, 1.0, 888.5987548828125, 508.1112060546875, 1.0, 938.899658203125, 508.0349426269531, 1.0, 987.4326171875, 507.7567443847656, 1.0, 485.8695068359375, 574.143310546875, 1.0, 549.3822021484375, 572.7838134765625, 1.0, 610.5855712890625, 571.531982421875, 1.0, 669.8589477539062, 570.47900390625, 1.0, 727.28759765625, 569.5018310546875, 1.0, 782.8056640625, 568.765869140625, 1.0, 836.873291015625, 567.7444458007812, 1.0, 889.0381469726562, 566.890869140625, 1.0, 939.5092163085938, 565.8280639648438, 1.0, 988.1248779296875, 564.5672607421875, 1.0, 484.11407470703125, 640.9412841796875, 1.0, 547.9437255859375, 638.5606689453125, 1.0, 609.6580810546875, 636.2942504882812, 1.0, 669.3121337890625, 634.1614379882812, 1.0, 727.083984375, 632.0119018554688, 1.0, 782.9711303710938, 630.00244140625, 1.0, 837.0814208984375, 628.0667724609375, 1.0, 889.4169311523438, 625.948974609375, 1.0, 939.927734375, 623.7272338867188, 1.0, 988.4595947265625, 621.494384765625, 1.0, 495.30169677734375, 32.30341720581055, 1.0, 556.3321533203125, 38.74880599975586, 1.0, 615.6113891601562, 44.96649169921875, 1.0, 672.8587646484375, 51.03386688232422, 1.0, 728.547119140625, 56.798316955566406, 1.0, 782.322021484375, 62.41792297363281, 1.0, 834.60302734375, 67.96221923828125, 1.0, 885.1887817382812, 73.3333969116211, 1.0, 934.3723754882812, 78.72395324707031, 1.0, 981.5855712890625, 84.08020782470703, 1.0, 494.7820129394531, 93.85137939453125, 1.0, 556.1487426757812, 99.4128646850586, 1.0, 615.5729370117188, 104.65320587158203, 1.0, 673.0718994140625, 109.7537841796875, 1.0, 728.8660888671875, 114.64602661132812, 1.0, 783.02001953125, 119.38092803955078, 1.0, 835.4771118164062, 123.97956848144531, 1.0, 886.3523559570312, 128.46913146972656, 1.0, 935.6627807617188, 132.94656372070312, 1.0, 983.3665161132812, 137.42372131347656, 1.0, 494.41259765625, 156.20472717285156, 1.0, 555.9392700195312, 160.70570373535156, 1.0, 615.5822143554688, 165.0430908203125, 1.0, 673.1924438476562, 169.21688842773438, 1.0, 729.2944946289062, 173.15708923339844, 1.0, 783.513671875, 176.86614990234375, 1.0, 836.3668823242188, 180.5211181640625, 1.0, 887.4090576171875, 184.3249969482422, 1.0, 936.9149780273438, 187.70335388183594, 1.0, 984.9158325195312, 191.4431610107422, 1.0, 494.1350402832031, 218.7772979736328, 1.0, 555.8425903320312, 222.31704711914062, 1.0, 615.6134033203125, 225.650146484375, 1.0, 673.5106811523438, 228.78334045410156, 1.0, 729.5386352539062, 231.7999267578125, 1.0, 784.1025390625, 234.73629760742188, 1.0, 837.109619140625, 237.52195739746094, 1.0, 888.5350952148438, 240.3690948486328, 1.0, 938.3777465820312, 243.12815856933594, 1.0, 986.5509643554688, 245.85610961914062, 1.0, 493.8302307128906, 281.8408508300781, 1.0, 555.7725830078125, 284.3499450683594, 1.0, 615.7039794921875, 286.62066650390625, 1.0, 673.7103881835938, 288.8669738769531, 1.0, 730.05322265625, 290.94000244140625, 1.0, 784.7498168945312, 293.1233825683594, 1.0, 837.9231567382812, 295.1064147949219, 1.0, 889.583740234375, 297.045654296875, 1.0, 939.5673217773438, 298.9288330078125, 1.0, 987.9822387695312, 300.8599853515625, 1.0, 493.3733215332031, 345.0833740234375, 1.0, 555.7076416015625, 346.3811950683594, 1.0, 615.8263549804688, 347.6886901855469, 1.0, 673.9398803710938, 348.9640808105469, 1.0, 730.5064086914062, 350.35980224609375, 1.0, 785.417236328125, 351.467041015625, 1.0, 838.8048095703125, 352.65411376953125, 1.0, 890.6912231445312, 353.8480224609375, 1.0, 940.9531860351562, 355.00927734375, 1.0, 989.4906616210938, 356.0633544921875, 1.0, 493.0113525390625, 409.1389465332031, 1.0, 555.5224609375, 409.284423828125, 1.0, 615.9437866210938, 409.6178894042969, 1.0, 674.2890625, 410.0147705078125, 1.0, 731.0831909179688, 410.39910888671875, 1.0, 786.2528076171875, 410.6867980957031, 1.0, 839.8602905273438, 411.0355224609375, 1.0, 891.8419799804688, 411.5067138671875, 1.0, 942.1856689453125, 411.69854736328125, 1.0, 990.8994140625, 411.9459533691406, 1.0, 492.3658142089844, 473.87786865234375, 1.0, 555.305908203125, 472.8466796875, 1.0, 616.0821533203125, 472.1739501953125, 1.0, 674.7622680664062, 471.413818359375, 1.0, 731.7909545898438, 470.9820861816406, 1.0, 787.1752319335938, 470.48919677734375, 1.0, 840.9363403320312, 469.9762268066406, 1.0, 893.1229858398438, 469.4377746582031, 1.0, 943.552978515625, 468.9300537109375, 1.0, 992.3211669921875, 468.14532470703125, 1.0, 491.84381103515625, 539.5384521484375, 1.0, 554.9850463867188, 537.377197265625, 1.0, 616.1470947265625, 535.5297241210938, 1.0, 675.1590576171875, 533.8790893554688, 1.0, 732.5306396484375, 532.4212646484375, 1.0, 788.0921020507812, 530.9580078125, 1.0, 842.145751953125, 529.4498901367188, 1.0, 894.3876953125, 528.0122680664062, 1.0, 944.8561401367188, 526.426513671875, 1.0, 993.5858154296875, 524.7438354492188, 1.0, 491.2526550292969, 605.8707885742188, 1.0, 554.7606201171875, 602.6962890625, 1.0, 616.282470703125, 599.7435913085938, 1.0, 675.6710815429688, 597.0523681640625, 1.0, 733.2548217773438, 594.4842529296875, 1.0, 789.0044555664062, 591.9091796875, 1.0, 843.1007080078125, 589.43359375, 1.0, 895.4395141601562, 586.8622436523438, 1.0, 945.9782104492188, 584.3140258789062, 1.0, 994.6070556640625, 581.59033203125, 1.0, 542.4345092773438, 37.0997314453125, 1.0, 603.1226196289062, 42.320560455322266, 1.0, 662.2282104492188, 47.24755096435547, 1.0, 719.4100952148438, 52.11759948730469, 1.0, 775.2466430664062, 56.78010559082031, 1.0, 829.3296508789062, 61.45729446411133, 1.0, 882.1246337890625, 66.02181243896484, 1.0, 932.9549560546875, 70.51194763183594, 1.0, 982.4872436523438, 75.01518249511719, 1.0, 1030.351806640625, 79.67320251464844, 1.0, 543.0023193359375, 98.80657958984375, 1.0, 603.8737182617188, 103.17272186279297, 1.0, 663.0203247070312, 107.25703430175781, 1.0, 720.6170043945312, 111.25312805175781, 1.0, 776.498779296875, 115.01499938964844, 1.0, 830.9501953125, 118.71695709228516, 1.0, 883.7523803710938, 122.48957061767578, 1.0, 935.181396484375, 126.23546600341797, 1.0, 984.7664794921875, 130.04501342773438, 1.0, 1033.10009765625, 133.7648162841797, 1.0, 543.44091796875, 161.2877655029297, 1.0, 604.5320434570312, 164.61471557617188, 1.0, 663.9239501953125, 167.8165740966797, 1.0, 721.565673828125, 170.8839569091797, 1.0, 777.705322265625, 173.875, 1.0, 832.3287963867188, 176.79351806640625, 1.0, 885.4926147460938, 179.6653289794922, 1.0, 937.1498413085938, 182.5634307861328, 1.0, 987.176513671875, 185.54359436035156, 1.0, 1035.5450439453125, 188.59298706054688, 1.0, 544.1028442382812, 223.8933563232422, 1.0, 605.1561889648438, 226.45399475097656, 1.0, 664.568359375, 228.7571258544922, 1.0, 722.50048828125, 231.08241271972656, 1.0, 778.8228149414062, 233.2560577392578, 1.0, 833.7171020507812, 235.33572387695312, 1.0, 887.1328125, 237.4683380126953, 1.0, 938.9972534179688, 239.56991577148438, 1.0, 989.253173828125, 241.72727966308594, 1.0, 1037.851806640625, 243.7825164794922, 1.0, 544.474853515625, 287.0638427734375, 1.0, 605.829833984375, 288.6314392089844, 1.0, 665.452880859375, 290.1613464355469, 1.0, 723.4891357421875, 291.6070556640625, 1.0, 780.0804443359375, 292.98590087890625, 1.0, 835.2013549804688, 294.3398132324219, 1.0, 888.8101196289062, 295.73846435546875, 1.0, 940.8444213867188, 297.0638732910156, 1.0, 991.3949584960938, 298.29595947265625, 1.0, 1040.2252197265625, 299.78521728515625, 1.0, 544.943603515625, 350.35821533203125, 1.0, 606.48095703125, 350.89251708984375, 1.0, 666.3104858398438, 351.5887145996094, 1.0, 724.5169677734375, 352.2019348144531, 1.0, 781.2684936523438, 352.8698425292969, 1.0, 836.5885009765625, 353.5037841796875, 1.0, 890.4767456054688, 354.173828125, 1.0, 942.7576293945312, 354.6285095214844, 1.0, 993.5106811523438, 355.2696838378906, 1.0, 1042.341796875, 355.8360595703125, 1.0, 545.2308959960938, 414.5164794921875, 1.0, 607.067626953125, 414.2082214355469, 1.0, 667.240478515625, 413.9292907714844, 1.0, 725.6928100585938, 413.7940368652344, 1.0, 782.6835327148438, 413.603515625, 1.0, 838.2318115234375, 413.5295715332031, 1.0, 892.2945556640625, 413.3582763671875, 1.0, 944.738525390625, 413.1702880859375, 1.0, 995.4994506835938, 412.8678894042969, 1.0, 1044.532470703125, 412.58941650390625, 1.0, 545.52978515625, 479.34979248046875, 1.0, 607.7789916992188, 478.156005859375, 1.0, 668.218017578125, 477.03033447265625, 1.0, 726.9147338867188, 475.91693115234375, 1.0, 784.1967163085938, 475.0262145996094, 1.0, 839.8141479492188, 474.0878601074219, 1.0, 894.124267578125, 473.0992431640625, 1.0, 946.6157836914062, 472.1302795410156, 1.0, 997.4970092773438, 470.9675598144531, 1.0, 1046.373291015625, 469.6730041503906, 1.0, 545.901123046875, 545.2987670898438, 1.0, 608.4837036132812, 543.0164184570312, 1.0, 669.2404174804688, 540.9447631835938, 1.0, 728.3114624023438, 538.9557495117188, 1.0, 785.7493286132812, 537.0620727539062, 1.0, 841.5822143554688, 535.2554931640625, 1.0, 895.9583129882812, 533.3306884765625, 1.0, 948.5338745117188, 531.4178466796875, 1.0, 999.2901000976562, 529.3150634765625, 1.0, 1048.4306640625, 527.3150024414062, 1.0, 546.154296875, 612.0877075195312, 1.0, 609.1769409179688, 608.6807250976562, 1.0, 670.357421875, 605.6336059570312, 1.0, 729.6121215820312, 602.6343383789062, 1.0, 787.3218383789062, 599.8331298828125, 1.0, 843.3074340820312, 596.9739990234375, 1.0, 897.6987915039062, 594.065673828125, 1.0, 950.2581176757812, 591.05322265625, 1.0, 1000.9540405273438, 587.9671020507812, 1.0, 1050.1123046875, 584.89599609375, 1.0, 578.7283325195312, 48.27749252319336, 1.0, 638.8770141601562, 52.84053421020508, 1.0, 697.5796508789062, 57.3405647277832, 1.0, 754.4466552734375, 61.761505126953125, 1.0, 810.1422729492188, 66.16827392578125, 1.0, 864.1133422851562, 70.468017578125, 1.0, 916.6502075195312, 74.59394073486328, 1.0, 967.5667114257812, 79.02288818359375, 1.0, 1017.147705078125, 83.37579345703125, 1.0, 1065.3184814453125, 87.6734848022461, 1.0, 579.3488159179688, 109.44158172607422, 1.0, 639.784912109375, 113.28922271728516, 1.0, 698.4027709960938, 116.96263122558594, 1.0, 755.7816772460938, 120.54097747802734, 1.0, 811.5155029296875, 124.07533264160156, 1.0, 865.8770751953125, 127.48444366455078, 1.0, 918.631591796875, 130.94029235839844, 1.0, 970.0048217773438, 134.47927856445312, 1.0, 1019.6009521484375, 138.02793884277344, 1.0, 1067.9183349609375, 141.5745849609375, 1.0, 579.837158203125, 171.2607879638672, 1.0, 640.31640625, 174.26824951171875, 1.0, 699.42236328125, 177.16387939453125, 1.0, 756.844970703125, 179.79861450195312, 1.0, 812.8123168945312, 182.53436279296875, 1.0, 867.4318237304688, 185.2758331298828, 1.0, 920.5834350585938, 187.80853271484375, 1.0, 972.229736328125, 190.6336212158203, 1.0, 1022.2280883789062, 193.4180145263672, 1.0, 1070.467041015625, 196.23631286621094, 1.0, 580.3834838867188, 233.33473205566406, 1.0, 640.9907836914062, 235.51528930664062, 1.0, 700.2410888671875, 237.57504272460938, 1.0, 757.9363403320312, 239.5480194091797, 1.0, 814.25146484375, 241.56124877929688, 1.0, 869.1332397460938, 243.4407501220703, 1.0, 922.5368041992188, 245.36114501953125, 1.0, 974.42724609375, 247.33912658691406, 1.0, 1024.692626953125, 249.3147735595703, 1.0, 1073.1610107421875, 251.3282012939453, 1.0, 580.9487915039062, 295.8072204589844, 1.0, 641.8098754882812, 297.20147705078125, 1.0, 701.1570434570312, 298.46697998046875, 1.0, 759.0209350585938, 299.7625732421875, 1.0, 815.5716552734375, 300.96173095703125, 1.0, 870.6864013671875, 302.2320861816406, 1.0, 924.4403686523438, 303.3790283203125, 1.0, 976.5784912109375, 304.5417785644531, 1.0, 1026.9453125, 305.8231201171875, 1.0, 1075.654052734375, 307.0381774902344, 1.0, 581.4705810546875, 358.4537353515625, 1.0, 642.627685546875, 358.9063415527344, 1.0, 702.143310546875, 359.5367126464844, 1.0, 760.2778930664062, 360.0345458984375, 1.0, 817.07470703125, 360.5868225097656, 1.0, 872.4251098632812, 361.1165466308594, 1.0, 926.3322143554688, 361.6354064941406, 1.0, 978.6451416015625, 362.0755615234375, 1.0, 1029.30517578125, 362.5050354003906, 1.0, 1078.055419921875, 362.8365783691406, 1.0, 582.0771484375, 422.0422058105469, 1.0, 643.392822265625, 421.7049560546875, 1.0, 703.2698974609375, 421.452880859375, 1.0, 761.5767211914062, 421.30218505859375, 1.0, 818.6386108398438, 421.0301513671875, 1.0, 874.28076171875, 420.9179382324219, 1.0, 928.2781982421875, 420.63983154296875, 1.0, 980.7069702148438, 420.4102783203125, 1.0, 1031.47998046875, 419.9578857421875, 1.0, 1080.4722900390625, 419.5850524902344, 1.0, 582.4234619140625, 486.4010925292969, 1.0, 644.2688598632812, 485.18804931640625, 1.0, 704.4707641601562, 484.1480407714844, 1.0, 763.0642700195312, 483.0986633300781, 1.0, 820.3128662109375, 482.1465759277344, 1.0, 876.0313110351562, 481.2130126953125, 1.0, 930.34716796875, 480.1817626953125, 1.0, 982.6834106445312, 478.8943786621094, 1.0, 1033.504638671875, 477.7767028808594, 1.0, 1082.5841064453125, 476.47747802734375, 1.0, 583.0277099609375, 551.6470947265625, 1.0, 645.0256958007812, 549.548583984375, 1.0, 705.6597290039062, 547.5474853515625, 1.0, 764.4957885742188, 545.7010498046875, 1.0, 821.970458984375, 543.8670043945312, 1.0, 877.7383422851562, 542.140380859375, 1.0, 932.0802612304688, 540.1044921875, 1.0, 984.603271484375, 538.0792846679688, 1.0, 1035.4017333984375, 535.8504638671875, 1.0, 1084.4951171875, 533.7180786132812, 1.0, 583.3789672851562, 617.7782592773438, 1.0, 645.8720092773438, 614.69970703125, 1.0, 706.772216796875, 611.776123046875, 1.0, 765.8679809570312, 608.9733276367188, 1.0, 823.5255126953125, 606.2573852539062, 1.0, 879.5178833007812, 603.3695068359375, 1.0, 933.7660522460938, 600.482421875, 1.0, 986.27783203125, 597.36376953125, 1.0, 1037.017333984375, 594.3137817382812, 1.0, 1086.33984375, 591.3533325195312, 1.0, 601.9347534179688, 31.641033172607422, 1.0, 662.0847778320312, 35.51591110229492, 1.0, 720.9818725585938, 39.138832092285156, 1.0, 778.3272705078125, 42.69194412231445, 1.0, 834.2615356445312, 46.30111312866211, 1.0, 888.5939331054688, 49.879737854003906, 1.0, 941.441650390625, 53.562843322753906, 1.0, 992.7933349609375, 57.36371612548828, 1.0, 1042.72265625, 61.02094650268555, 1.0, 1091.7308349609375, 64.29167938232422, 1.0, 603.4478149414062, 93.04071807861328, 1.0, 663.9630737304688, 96.0089340209961, 1.0, 722.8619384765625, 98.89187622070312, 1.0, 780.5258178710938, 101.64041900634766, 1.0, 836.6039428710938, 104.41241455078125, 1.0, 891.3751220703125, 107.27452850341797, 1.0, 944.5172729492188, 110.03487396240234, 1.0, 996.0988159179688, 112.83280181884766, 1.0, 1046.1591796875, 115.88542175292969, 1.0, 1095.174560546875, 118.60419464111328, 1.0, 605.1323852539062, 155.0448760986328, 1.0, 665.73193359375, 157.26541137695312, 1.0, 724.9351196289062, 159.25332641601562, 1.0, 782.6334228515625, 161.27978515625, 1.0, 839.0018310546875, 163.16273498535156, 1.0, 893.9989013671875, 165.0735321044922, 1.0, 947.5092163085938, 167.10719299316406, 1.0, 999.4058227539062, 169.30364990234375, 1.0, 1049.768310546875, 171.41009521484375, 1.0, 1098.612060546875, 173.60614013671875, 1.0, 606.8530883789062, 217.3053436279297, 1.0, 667.5901489257812, 218.6487274169922, 1.0, 726.8973388671875, 219.93142700195312, 1.0, 784.91650390625, 221.12655639648438, 1.0, 841.4954833984375, 222.22840881347656, 1.0, 896.7238159179688, 223.46316528320312, 1.0, 950.5150146484375, 224.73765563964844, 1.0, 1002.6842651367188, 226.07716369628906, 1.0, 1053.2366943359375, 227.48106384277344, 1.0, 1102.1826171875, 228.91949462890625, 1.0, 608.7103881835938, 279.9911193847656, 1.0, 669.4920043945312, 280.497314453125, 1.0, 729.0266723632812, 280.9670104980469, 1.0, 787.1663208007812, 281.4540710449219, 1.0, 843.9658813476562, 281.9729919433594, 1.0, 899.4739379882812, 282.4140930175781, 1.0, 953.416015625, 282.96490478515625, 1.0, 1005.9256591796875, 283.5352783203125, 1.0, 1056.5333251953125, 284.1301574707031, 1.0, 1105.6002197265625, 284.77362060546875, 1.0, 610.544677734375, 342.6668395996094, 1.0, 671.5390625, 342.428955078125, 1.0, 731.2686767578125, 342.2040100097656, 1.0, 789.5444946289062, 342.0207824707031, 1.0, 846.58154296875, 341.7674560546875, 1.0, 902.2354125976562, 341.5738830566406, 1.0, 956.4825439453125, 341.350830078125, 1.0, 1009.0534057617188, 341.1616516113281, 1.0, 1059.8162841796875, 340.9408874511719, 1.0, 1109.0625, 340.75726318359375, 1.0, 612.4182739257812, 406.26593017578125, 1.0, 673.6112670898438, 405.1651306152344, 1.0, 733.535888671875, 404.17724609375, 1.0, 792.1245727539062, 403.290771484375, 1.0, 849.35205078125, 402.3403625488281, 1.0, 905.265380859375, 401.4816589355469, 1.0, 959.5267944335938, 400.4924011230469, 1.0, 1012.1759033203125, 399.5391540527344, 1.0, 1063.030029296875, 398.44708251953125, 1.0, 1112.3489990234375, 397.54437255859375, 1.0, 614.4024047851562, 470.3571472167969, 1.0, 675.8385009765625, 468.4967956542969, 1.0, 736.0698852539062, 466.7208251953125, 1.0, 794.7819213867188, 465.0431213378906, 1.0, 852.1746215820312, 463.3895263671875, 1.0, 908.19189453125, 461.62713623046875, 1.0, 962.5894775390625, 460.09954833984375, 1.0, 1015.2858276367188, 458.2256164550781, 1.0, 1066.160888671875, 456.34942626953125, 1.0, 1115.5426025390625, 454.4458923339844, 1.0, 616.3533325195312, 535.2318115234375, 1.0, 678.2171630859375, 532.546142578125, 1.0, 738.6378173828125, 529.9955444335938, 1.0, 797.5278930664062, 527.4713134765625, 1.0, 855.1381225585938, 525.0076293945312, 1.0, 911.0999145507812, 522.5242919921875, 1.0, 965.5406494140625, 519.952880859375, 1.0, 1018.227783203125, 517.353515625, 1.0, 1068.9866943359375, 514.52734375, 1.0, 1118.7366943359375, 511.99755859375, 1.0, 618.4342041015625, 601.0239868164062, 1.0, 680.5848999023438, 597.3549194335938, 1.0, 741.2566528320312, 593.8225708007812, 1.0, 800.3866577148438, 590.4857788085938, 1.0, 857.9710083007812, 587.126708984375, 1.0, 914.0382080078125, 583.5714111328125, 1.0, 968.3900146484375, 580.0324096679688, 1.0, 1020.9371948242188, 576.4570922851562, 1.0, 1072.01025390625, 572.9168701171875, 1.0, 1122.0302734375, 569.540771484375, 1.0, 642.6704711914062, 61.785404205322266, 1.0, 702.7006225585938, 64.37972259521484, 1.0, 761.5202026367188, 66.74435424804688, 1.0, 818.8171997070312, 69.33207702636719, 1.0, 874.9393310546875, 71.7322006225586, 1.0, 929.5695190429688, 74.29480743408203, 1.0, 982.7003784179688, 77.04740905761719, 1.0, 1034.4783935546875, 79.7623519897461, 1.0, 1085.17236328125, 82.41728210449219, 1.0, 1135.261962890625, 84.63198852539062, 1.0, 644.4742431640625, 123.0889892578125, 1.0, 704.7495727539062, 124.83426666259766, 1.0, 763.7357788085938, 126.5931625366211, 1.0, 821.4857177734375, 128.2902374267578, 1.0, 877.7907104492188, 129.98536682128906, 1.0, 932.8544311523438, 131.82632446289062, 1.0, 986.3604736328125, 133.8212127685547, 1.0, 1038.421875, 135.79931640625, 1.0, 1089.03271484375, 137.88392639160156, 1.0, 1139.007080078125, 139.5935821533203, 1.0, 646.3009033203125, 185.0968475341797, 1.0, 706.7296752929688, 186.14369201660156, 1.0, 766.1294555664062, 187.16229248046875, 1.0, 823.95458984375, 188.06591796875, 1.0, 880.6890869140625, 189.15902709960938, 1.0, 936.031982421875, 190.15428161621094, 1.0, 989.8276977539062, 191.369140625, 1.0, 1042.1585693359375, 192.74705505371094, 1.0, 1092.9033203125, 194.12564086914062, 1.0, 1142.7420654296875, 195.30833435058594, 1.0, 648.2149047851562, 247.214599609375, 1.0, 708.7365112304688, 247.69740295410156, 1.0, 768.3416137695312, 247.99197387695312, 1.0, 826.546875, 248.2624969482422, 1.0, 883.5216674804688, 248.64256286621094, 1.0, 939.1929931640625, 249.0086669921875, 1.0, 993.4361572265625, 249.59202575683594, 1.0, 1045.8572998046875, 250.09176635742188, 1.0, 1096.7884521484375, 250.74464416503906, 1.0, 1146.723876953125, 251.35853576660156, 1.0, 650.00341796875, 310.01116943359375, 1.0, 710.8427124023438, 309.7529602050781, 1.0, 770.6039428710938, 309.4533996582031, 1.0, 829.2017211914062, 309.1924133300781, 1.0, 886.4334106445312, 308.9114990234375, 1.0, 942.3544311523438, 308.62640380859375, 1.0, 996.7047119140625, 308.4620666503906, 1.0, 1049.6251220703125, 308.30767822265625, 1.0, 1100.5865478515625, 308.2384948730469, 1.0, 1150.5728759765625, 308.17828369140625, 1.0, 651.8690185546875, 372.91717529296875, 1.0, 713.1399536132812, 372.0184020996094, 1.0, 773.0611572265625, 371.0882568359375, 1.0, 831.8152465820312, 370.2586669921875, 1.0, 889.478515625, 369.36456298828125, 1.0, 945.5791015625, 368.45050048828125, 1.0, 1000.2357788085938, 367.65118408203125, 1.0, 1053.0306396484375, 366.66473388671875, 1.0, 1104.3089599609375, 365.84893798828125, 1.0, 1154.5421142578125, 364.91827392578125, 1.0, 653.9028930664062, 436.90594482421875, 1.0, 715.3217163085938, 435.36553955078125, 1.0, 775.60302734375, 433.7641296386719, 1.0, 834.65234375, 432.36334228515625, 1.0, 892.4642944335938, 430.73162841796875, 1.0, 948.6859130859375, 429.2466125488281, 1.0, 1003.5064697265625, 427.5562438964844, 1.0, 1056.50732421875, 425.8575744628906, 1.0, 1107.7239990234375, 424.19122314453125, 1.0, 1158.2325439453125, 422.7171936035156, 1.0, 655.8418579101562, 501.781494140625, 1.0, 717.6246948242188, 499.4609375, 1.0, 778.3201904296875, 497.22650146484375, 1.0, 837.4872436523438, 494.92315673828125, 1.0, 895.4924926757812, 492.7102966308594, 1.0, 951.8252563476562, 490.4230651855469, 1.0, 1006.59716796875, 487.959228515625, 1.0, 1059.6007080078125, 485.49200439453125, 1.0, 1111.2264404296875, 483.10345458984375, 1.0, 1162.0916748046875, 480.6844482421875, 1.0, 657.828369140625, 567.6734008789062, 1.0, 720.0477294921875, 564.4535522460938, 1.0, 780.8277587890625, 561.376708984375, 1.0, 840.4047241210938, 558.3814697265625, 1.0, 898.4496459960938, 555.2880249023438, 1.0, 954.8452758789062, 552.1827392578125, 1.0, 1009.654296875, 548.735595703125, 1.0, 1062.658447265625, 545.5157470703125, 1.0, 1114.6015625, 542.2951049804688, 1.0, 1165.8985595703125, 539.4833374023438, 1.0, 659.774169921875, 634.3463745117188, 1.0, 722.3799438476562, 630.2925415039062, 1.0, 783.4738159179688, 626.2803955078125, 1.0, 843.1464233398438, 622.3405151367188, 1.0, 901.1867065429688, 618.2779541015625, 1.0, 957.5586547851562, 614.0881958007812, 1.0, 1012.4381713867188, 609.8836059570312, 1.0, 1065.62353515625, 605.7072143554688, 1.0, 1118.036865234375, 601.945068359375, 1.0, 1169.8681640625, 598.5016479492188, 1.0, 478.1259765625, 38.30515670776367, 1.0, 539.3280639648438, 43.404022216796875, 1.0, 598.7343139648438, 48.34683609008789, 1.0, 656.1525268554688, 52.987281799316406, 1.0, 711.8961791992188, 57.490535736083984, 1.0, 765.5889892578125, 61.981842041015625, 1.0, 817.868896484375, 66.40409088134766, 1.0, 868.3680419921875, 70.61453247070312, 1.0, 917.2599487304688, 74.68206024169922, 1.0, 964.4695434570312, 79.15870666503906, 1.0, 478.5920104980469, 100.03547668457031, 1.0, 540.2313842773438, 104.21588134765625, 1.0, 599.7339477539062, 108.13752746582031, 1.0, 657.3612670898438, 111.95572662353516, 1.0, 713.1195068359375, 115.50931549072266, 1.0, 767.1848754882812, 119.08373260498047, 1.0, 819.4801635742188, 122.43600463867188, 1.0, 870.367431640625, 125.72450256347656, 1.0, 919.4293212890625, 129.09567260742188, 1.0, 966.9070434570312, 132.4090118408203, 1.0, 479.3644104003906, 162.4391632080078, 1.0, 541.0823364257812, 165.62850952148438, 1.0, 600.8010864257812, 168.5360107421875, 1.0, 658.4038696289062, 171.44947814941406, 1.0, 714.3553466796875, 174.11685180664062, 1.0, 768.6455078125, 176.5458221435547, 1.0, 821.09228515625, 179.09877014160156, 1.0, 872.2314453125, 181.54322814941406, 1.0, 921.5970458984375, 183.8368377685547, 1.0, 969.3526000976562, 186.39605712890625, 1.0, 480.0513000488281, 225.2699737548828, 1.0, 542.04443359375, 227.30426025390625, 1.0, 601.8820190429688, 229.31373596191406, 1.0, 659.665283203125, 231.15171813964844, 1.0, 715.7827758789062, 232.75169372558594, 1.0, 770.1324462890625, 234.4051055908203, 1.0, 822.8759155273438, 235.9964141845703, 1.0, 874.1988525390625, 237.5771484375, 1.0, 923.6322021484375, 239.24310302734375, 1.0, 971.6600341796875, 240.68414306640625, 1.0, 480.82379150390625, 288.4126281738281, 1.0, 542.9613037109375, 289.3926696777344, 1.0, 602.907958984375, 290.2929992675781, 1.0, 660.8322143554688, 291.14569091796875, 1.0, 717.0453491210938, 291.9367980957031, 1.0, 771.6068115234375, 292.6870422363281, 1.0, 824.6599731445312, 293.4378662109375, 1.0, 875.9868774414062, 294.1524658203125, 1.0, 925.7260131835938, 294.9022216796875, 1.0, 973.8507080078125, 295.73388671875, 1.0, 481.49591064453125, 351.7137451171875, 1.0, 543.8479614257812, 351.4966735839844, 1.0, 603.9558715820312, 351.33697509765625, 1.0, 662.0607299804688, 351.2448425292969, 1.0, 718.4729614257812, 351.1867370605469, 1.0, 773.107177734375, 351.0299987792969, 1.0, 826.4157104492188, 350.97113037109375, 1.0, 877.8897094726562, 350.83819580078125, 1.0, 927.9281005859375, 350.7294006347656, 1.0, 976.2062377929688, 350.5855712890625, 1.0, 481.9844970703125, 415.83685302734375, 1.0, 544.6266479492188, 414.4981994628906, 1.0, 604.9898681640625, 413.238037109375, 1.0, 663.3777465820312, 412.1749572753906, 1.0, 720.022216796875, 411.1089782714844, 1.0, 774.7681884765625, 410.14483642578125, 1.0, 828.1956176757812, 409.1427307128906, 1.0, 879.8989868164062, 408.27093505859375, 1.0, 930.0792236328125, 407.32568359375, 1.0, 978.428466796875, 406.3465576171875, 1.0, 482.4044494628906, 480.6497802734375, 1.0, 545.3551635742188, 478.13140869140625, 1.0, 606.087646484375, 475.722412109375, 1.0, 664.7089233398438, 473.54351806640625, 1.0, 721.5261840820312, 471.5619812011719, 1.0, 776.6864624023438, 469.65362548828125, 1.0, 830.2118530273438, 467.8670959472656, 1.0, 882.055908203125, 466.073486328125, 1.0, 932.26416015625, 464.23980712890625, 1.0, 980.5013427734375, 462.397705078125, 1.0, 482.7286376953125, 546.2820434570312, 1.0, 545.9991455078125, 542.5739135742188, 1.0, 607.0014038085938, 539.1030883789062, 1.0, 666.0235595703125, 535.8662719726562, 1.0, 723.0938720703125, 532.8502197265625, 1.0, 778.4949340820312, 529.9869995117188, 1.0, 832.178955078125, 527.1421508789062, 1.0, 884.0277709960938, 524.399658203125, 1.0, 934.2283935546875, 521.525146484375, 1.0, 982.6365356445312, 518.703369140625, 1.0, 483.1973571777344, 612.616943359375, 1.0, 546.690673828125, 607.7033081054688, 1.0, 608.1654663085938, 603.2198486328125, 1.0, 667.3621215820312, 598.7446899414062, 1.0, 724.7514038085938, 594.702880859375, 1.0, 780.1937866210938, 590.6887817382812, 1.0, 833.9981689453125, 586.7988891601562, 1.0, 885.941650390625, 582.9846801757812, 1.0, 936.244873046875, 579.1246337890625, 1.0, 984.468017578125, 575.2401123046875, 1.0, 458.3998107910156, 17.9127140045166, 1.0, 520.3387451171875, 23.293682098388672, 1.0, 580.2569580078125, 28.44312858581543, 1.0, 637.8787231445312, 33.38666915893555, 1.0, 694.0758666992188, 38.24907684326172, 1.0, 748.03125, 42.79130935668945, 1.0, 800.5289916992188, 47.38994216918945, 1.0, 851.2410888671875, 51.831443786621094, 1.0, 900.3736572265625, 56.32759094238281, 1.0, 947.4981079101562, 60.66156768798828, 1.0, 459.4958801269531, 80.32471466064453, 1.0, 521.6710205078125, 84.65135192871094, 1.0, 581.5675048828125, 88.80508422851562, 1.0, 639.6243896484375, 92.86127471923828, 1.0, 695.6118774414062, 96.64823150634766, 1.0, 749.970947265625, 100.42605590820312, 1.0, 802.3890991210938, 103.96580505371094, 1.0, 853.376953125, 107.43629455566406, 1.0, 902.5820922851562, 110.92316436767578, 1.0, 950.302490234375, 114.33654022216797, 1.0, 460.67706298828125, 143.44467163085938, 1.0, 522.8584594726562, 146.70094299316406, 1.0, 583.081787109375, 149.8272247314453, 1.0, 640.9210205078125, 152.82672119140625, 1.0, 697.3401489257812, 155.71348571777344, 1.0, 751.625244140625, 158.365478515625, 1.0, 804.4227294921875, 161.0478515625, 1.0, 855.4468994140625, 163.60540771484375, 1.0, 904.85498046875, 165.99957275390625, 1.0, 952.7391357421875, 168.61557006835938, 1.0, 461.83697509765625, 206.7028045654297, 1.0, 524.344970703125, 209.0450439453125, 1.0, 584.4577026367188, 211.16265869140625, 1.0, 642.6514282226562, 213.10177612304688, 1.0, 698.7974243164062, 214.839599609375, 1.0, 753.4203491210938, 216.57675170898438, 1.0, 806.320556640625, 218.27174377441406, 1.0, 857.536865234375, 219.87460327148438, 1.0, 907.2273559570312, 221.62255859375, 1.0, 955.2142944335938, 223.3045196533203, 1.0, 463.0760498046875, 270.5401916503906, 1.0, 525.66845703125, 271.658447265625, 1.0, 586.046875, 272.56494140625, 1.0, 644.1048583984375, 273.5240173339844, 1.0, 700.4722900390625, 274.3768310546875, 1.0, 755.09375, 275.2450866699219, 1.0, 808.2607421875, 276.0158386230469, 1.0, 859.5962524414062, 276.7013244628906, 1.0, 909.4573364257812, 277.5083312988281, 1.0, 957.550048828125, 278.2711181640625, 1.0, 464.2734375, 334.2946472167969, 1.0, 526.8966064453125, 334.16632080078125, 1.0, 587.4283447265625, 334.0365905761719, 1.0, 645.7171630859375, 333.91656494140625, 1.0, 702.2726440429688, 333.8592224121094, 1.0, 756.9683227539062, 333.77093505859375, 1.0, 810.2747802734375, 333.6966857910156, 1.0, 861.7084350585938, 333.55224609375, 1.0, 911.7271728515625, 333.5545959472656, 1.0, 959.9840087890625, 333.4244384765625, 1.0, 465.2645568847656, 398.7001037597656, 1.0, 528.2807006835938, 397.42681884765625, 1.0, 588.8878784179688, 396.2330017089844, 1.0, 647.3031616210938, 394.9573059082031, 1.0, 704.0111694335938, 393.94287109375, 1.0, 758.8527221679688, 392.88397216796875, 1.0, 812.2655639648438, 391.98260498046875, 1.0, 863.9012451171875, 391.08624267578125, 1.0, 914.019775390625, 390.005615234375, 1.0, 962.4410400390625, 389.162109375, 1.0, 466.1705627441406, 463.6630859375, 1.0, 529.4618530273438, 461.0882873535156, 1.0, 590.2882080078125, 458.6593322753906, 1.0, 648.957275390625, 456.5276794433594, 1.0, 705.8516235351562, 454.5144958496094, 1.0, 760.9840087890625, 452.57476806640625, 1.0, 814.4566650390625, 450.7137756347656, 1.0, 866.2769775390625, 448.8052673339844, 1.0, 916.505126953125, 447.0646057128906, 1.0, 964.7620239257812, 445.2507629394531, 1.0, 467.0830383300781, 529.4130859375, 1.0, 530.4910278320312, 525.668212890625, 1.0, 591.6649780273438, 522.1232299804688, 1.0, 650.6826171875, 518.6865234375, 1.0, 707.756591796875, 515.5971069335938, 1.0, 762.9951171875, 512.7175903320312, 1.0, 816.6447143554688, 509.8430480957031, 1.0, 868.5850830078125, 507.1672668457031, 1.0, 918.6495971679688, 504.2836608886719, 1.0, 967.1798706054688, 501.5286560058594, 1.0, 467.8690490722656, 595.7567138671875, 1.0, 531.574462890625, 590.7454223632812, 1.0, 593.1553344726562, 586.0757446289062, 1.0, 652.3704833984375, 581.59619140625, 1.0, 709.6380615234375, 577.4196166992188, 1.0, 765.1719360351562, 573.4213256835938, 1.0, 818.7311401367188, 569.5144653320312, 1.0, 870.7334594726562, 565.6199951171875, 1.0, 920.88671875, 561.85205078125, 1.0, 969.27392578125, 557.9449462890625, 1.0, 423.4773864746094, 30.65286636352539, 1.0, 485.7928771972656, 32.51885223388672, 1.0, 546.18212890625, 34.41413497924805, 1.0, 604.28173828125, 36.25151824951172, 1.0, 660.6073608398438, 38.064842224121094, 1.0, 714.8901977539062, 39.70105743408203, 1.0, 767.5423583984375, 41.36520767211914, 1.0, 818.3657836914062, 43.050315856933594, 1.0, 867.6876831054688, 44.545719146728516, 1.0, 915.0781860351562, 46.409217834472656, 1.0, 427.41204833984375, 93.12382507324219, 1.0, 490.0851135253906, 93.93556213378906, 1.0, 550.4288940429688, 94.85018157958984, 1.0, 608.7345581054688, 95.64620208740234, 1.0, 665.09765625, 96.30496978759766, 1.0, 719.5809326171875, 96.87621307373047, 1.0, 772.2382202148438, 97.5579833984375, 1.0, 823.2604370117188, 98.11760711669922, 1.0, 872.5654907226562, 98.8211441040039, 1.0, 920.3548583984375, 99.5916519165039, 1.0, 431.6760559082031, 156.27684020996094, 1.0, 494.45697021484375, 156.07904052734375, 1.0, 555.0155029296875, 155.72607421875, 1.0, 613.3244018554688, 155.49765014648438, 1.0, 669.69189453125, 155.16915893554688, 1.0, 724.2639770507812, 154.58041381835938, 1.0, 777.0459594726562, 154.28453063964844, 1.0, 828.2866821289062, 154.0735321044922, 1.0, 877.6915893554688, 153.5135040283203, 1.0, 925.6427001953125, 153.33462524414062, 1.0, 436.2828063964844, 219.77197265625, 1.0, 499.24237060546875, 218.29261779785156, 1.0, 559.7125854492188, 216.85325622558594, 1.0, 618.2379150390625, 215.4952392578125, 1.0, 674.5577392578125, 214.02072143554688, 1.0, 729.2468872070312, 212.553955078125, 1.0, 782.135009765625, 211.22738647460938, 1.0, 833.3778076171875, 209.7764434814453, 1.0, 883.0116577148438, 208.505126953125, 1.0, 930.9965209960938, 207.395263671875, 1.0, 441.0156555175781, 283.6785888671875, 1.0, 503.9967041015625, 280.8974609375, 1.0, 564.6712646484375, 278.3347473144531, 1.0, 623.1044921875, 275.7861328125, 1.0, 679.5425415039062, 273.3347473144531, 1.0, 734.2186279296875, 270.7975158691406, 1.0, 787.3075561523438, 268.4579162597656, 1.0, 838.6338500976562, 266.1759948730469, 1.0, 888.4107666015625, 263.93939208984375, 1.0, 936.511962890625, 261.9247131347656, 1.0, 445.8160095214844, 347.5483093261719, 1.0, 509.0245361328125, 343.5694274902344, 1.0, 569.7027587890625, 339.6846923828125, 1.0, 628.2341918945312, 336.09967041015625, 1.0, 684.7032470703125, 332.52825927734375, 1.0, 739.5000610351562, 329.03924560546875, 1.0, 792.62548828125, 325.773193359375, 1.0, 844.1470336914062, 322.50048828125, 1.0, 893.958984375, 319.45306396484375, 1.0, 942.1158447265625, 316.4626770019531, 1.0, 450.6875915527344, 412.2452697753906, 1.0, 514.0523071289062, 406.82159423828125, 1.0, 574.819580078125, 401.7476501464844, 1.0, 633.4850463867188, 396.9078063964844, 1.0, 690.2196655273438, 392.35687255859375, 1.0, 745.090087890625, 387.9547119140625, 1.0, 798.2669067382812, 383.6354675292969, 1.0, 849.849365234375, 379.5523681640625, 1.0, 899.7534790039062, 375.5012512207031, 1.0, 948.0424194335938, 371.6152038574219, 1.0, 455.62078857421875, 477.5965270996094, 1.0, 519.1533813476562, 470.768310546875, 1.0, 580.2520141601562, 464.3563232421875, 1.0, 638.9822387695312, 458.36248779296875, 1.0, 695.7125854492188, 452.64434814453125, 1.0, 750.7680053710938, 447.26324462890625, 1.0, 804.1692504882812, 441.99224853515625, 1.0, 855.7011108398438, 436.9028625488281, 1.0, 905.6909790039062, 431.9253234863281, 1.0, 953.8638305664062, 427.0148620605469, 1.0, 460.6337585449219, 543.619873046875, 1.0, 524.3319702148438, 535.5962524414062, 1.0, 585.5781860351562, 527.9285888671875, 1.0, 644.591552734375, 520.6314697265625, 1.0, 701.5853881835938, 513.702880859375, 1.0, 756.7061157226562, 507.24969482421875, 1.0, 810.15087890625, 500.8323974609375, 1.0, 861.7728271484375, 494.7701110839844, 1.0, 911.6797485351562, 488.7132873535156, 1.0, 959.8724365234375, 482.8939208984375, 1.0, 465.97344970703125, 610.3637084960938, 1.0, 529.764404296875, 601.0596313476562, 1.0, 591.316162109375, 592.0809936523438, 1.0, 650.4974975585938, 583.5870361328125, 1.0, 707.6442260742188, 575.492919921875, 1.0, 762.837890625, 567.7254638671875, 1.0, 816.336669921875, 560.3412475585938, 1.0, 867.9744262695312, 553.0750122070312, 1.0, 917.8131103515625, 545.9276733398438, 1.0, 965.8467407226562, 538.9451293945312, 1.0, 384.6705017089844, 39.92448425292969, 1.0, 447.7063903808594, 39.40512466430664, 1.0, 508.74322509765625, 38.93768310546875, 1.0, 567.532958984375, 38.68818664550781, 1.0, 624.4083862304688, 38.30836486816406, 1.0, 679.0452880859375, 38.008209228515625, 1.0, 732.0191040039062, 37.73210906982422, 1.0, 783.18408203125, 37.48675537109375, 1.0, 832.5604248046875, 37.14472579956055, 1.0, 880.2681274414062, 37.10269546508789, 1.0, 391.303955078125, 102.4351806640625, 1.0, 454.71954345703125, 100.87628936767578, 1.0, 515.8078002929688, 99.54412841796875, 1.0, 574.6763305664062, 98.01036834716797, 1.0, 631.4861450195312, 96.65872955322266, 1.0, 686.3714599609375, 95.38549041748047, 1.0, 739.3342895507812, 93.97956085205078, 1.0, 790.5311279296875, 92.57025146484375, 1.0, 839.8851928710938, 91.49712371826172, 1.0, 887.8096923828125, 90.3131332397461, 1.0, 398.24566650390625, 165.71817016601562, 1.0, 461.8152770996094, 163.15162658691406, 1.0, 523.0866088867188, 160.54571533203125, 1.0, 581.8712768554688, 158.13047790527344, 1.0, 638.6417846679688, 155.70648193359375, 1.0, 693.4923706054688, 153.2509002685547, 1.0, 746.472412109375, 150.68331909179688, 1.0, 797.748779296875, 148.510986328125, 1.0, 847.4625244140625, 146.19227600097656, 1.0, 895.3695068359375, 144.19705200195312, 1.0, 405.37060546875, 229.48947143554688, 1.0, 469.05419921875, 225.61289978027344, 1.0, 530.3600463867188, 221.89927673339844, 1.0, 589.2633666992188, 218.2750701904297, 1.0, 645.985107421875, 214.74261474609375, 1.0, 700.7589111328125, 211.2639617919922, 1.0, 753.8967895507812, 207.75564575195312, 1.0, 805.2880249023438, 204.4720001220703, 1.0, 854.9363403320312, 201.3355712890625, 1.0, 902.9882202148438, 198.3029022216797, 1.0, 412.5140686035156, 293.66033935546875, 1.0, 476.30609130859375, 288.5498046875, 1.0, 537.591552734375, 283.5926208496094, 1.0, 596.4901123046875, 278.8219909667969, 1.0, 653.2743530273438, 274.2270812988281, 1.0, 708.1513671875, 269.6365966796875, 1.0, 761.3367919921875, 265.2613830566406, 1.0, 812.6343383789062, 261.023193359375, 1.0, 862.5100708007812, 256.8436584472656, 1.0, 910.6094970703125, 252.9629364013672, 1.0, 419.54052734375, 357.9771423339844, 1.0, 483.5487365722656, 351.5040588378906, 1.0, 544.8519287109375, 345.3240966796875, 1.0, 603.74658203125, 339.4223327636719, 1.0, 660.6065063476562, 333.6202392578125, 1.0, 715.5335083007812, 328.1457214355469, 1.0, 768.7407836914062, 322.71868896484375, 1.0, 820.3147583007812, 317.5468444824219, 1.0, 870.1837768554688, 312.5885314941406, 1.0, 918.3251342773438, 307.63116455078125, 1.0, 426.5888671875, 423.2138671875, 1.0, 490.6249694824219, 415.3393249511719, 1.0, 552.2275390625, 407.78460693359375, 1.0, 611.2020874023438, 400.60479736328125, 1.0, 668.083251953125, 393.7956237792969, 1.0, 723.1520385742188, 387.33502197265625, 1.0, 776.3851928710938, 380.936767578125, 1.0, 827.9063110351562, 374.8863830566406, 1.0, 877.7951049804688, 368.9078369140625, 1.0, 926.0859375, 363.29925537109375, 1.0, 433.5507507324219, 488.89288330078125, 1.0, 497.7665710449219, 479.7259521484375, 1.0, 559.4165649414062, 470.8358459472656, 1.0, 618.6011962890625, 462.521728515625, 1.0, 675.6439208984375, 454.6057434082031, 1.0, 730.8099365234375, 446.98175048828125, 1.0, 784.2138671875, 439.6649475097656, 1.0, 835.7310791015625, 432.5794677734375, 1.0, 885.6798095703125, 425.6898193359375, 1.0, 933.8106689453125, 419.0257873535156, 1.0, 440.4493408203125, 555.533203125, 1.0, 504.7816467285156, 545.0048828125, 1.0, 566.632568359375, 534.78173828125, 1.0, 626.0293579101562, 525.1647338867188, 1.0, 683.3522338867188, 516.001953125, 1.0, 738.547607421875, 507.3756408691406, 1.0, 792.0614013671875, 498.89703369140625, 1.0, 843.623779296875, 490.7978820800781, 1.0, 893.5484619140625, 482.9398193359375, 1.0, 941.7302856445312, 475.294189453125, 1.0, 447.5312805175781, 622.5794067382812, 1.0, 512.009765625, 610.8169555664062, 1.0, 574.0948486328125, 599.428955078125, 1.0, 633.62646484375, 588.5291137695312, 1.0, 691.1575317382812, 578.15478515625, 1.0, 746.4887084960938, 568.225341796875, 1.0, 799.9796752929688, 558.7047119140625, 1.0, 851.57763671875, 549.516845703125, 1.0, 901.4698486328125, 540.5308837890625, 1.0, 949.424072265625, 531.689697265625, 1.0, 243.80836486816406, 53.48100280761719, 1.0, 309.8116149902344, 52.286964416503906, 1.0, 373.55194091796875, 51.52265548706055, 1.0, 434.72296142578125, 51.120792388916016, 1.0, 493.52606201171875, 50.61000061035156, 1.0, 549.754638671875, 50.22757339477539, 1.0, 603.8729858398438, 49.9593391418457, 1.0, 655.66064453125, 49.62206268310547, 1.0, 705.6301879882812, 49.23270034790039, 1.0, 753.5357666015625, 48.87797927856445, 1.0, 251.23092651367188, 117.06937408447266, 1.0, 317.733154296875, 114.72372436523438, 1.0, 381.7586364746094, 112.86483764648438, 1.0, 443.2900695800781, 111.1817626953125, 1.0, 502.08148193359375, 109.5963134765625, 1.0, 558.3713989257812, 108.1458511352539, 1.0, 612.3746948242188, 106.556884765625, 1.0, 664.2957153320312, 105.16263580322266, 1.0, 714.0580444335938, 103.66682434082031, 1.0, 762.11767578125, 102.20564270019531, 1.0, 259.02423095703125, 181.52113342285156, 1.0, 325.9300537109375, 178.02978515625, 1.0, 390.343505859375, 174.79588317871094, 1.0, 451.77789306640625, 171.89801025390625, 1.0, 510.654541015625, 169.19993591308594, 1.0, 566.8338012695312, 166.40966796875, 1.0, 620.9432983398438, 163.77938842773438, 1.0, 672.6348876953125, 161.13055419921875, 1.0, 722.53564453125, 158.4219512939453, 1.0, 770.4759521484375, 156.07467651367188, 1.0, 266.9994201660156, 246.72251892089844, 1.0, 334.3359680175781, 241.80828857421875, 1.0, 398.85479736328125, 237.3848876953125, 1.0, 460.4516906738281, 233.06137084960938, 1.0, 519.3433837890625, 228.90110778808594, 1.0, 575.525634765625, 224.903076171875, 1.0, 629.436767578125, 221.16183471679688, 1.0, 681.2278442382812, 217.2843780517578, 1.0, 731.1070556640625, 213.64102172851562, 1.0, 778.9258422851562, 210.0097198486328, 1.0, 275.12164306640625, 312.79345703125, 1.0, 342.6536560058594, 306.39483642578125, 1.0, 407.3792419433594, 300.40777587890625, 1.0, 468.9748840332031, 294.63018798828125, 1.0, 527.8487548828125, 289.1874694824219, 1.0, 584.0316162109375, 283.863525390625, 1.0, 637.8683471679688, 278.836181640625, 1.0, 689.582275390625, 273.8507080078125, 1.0, 739.4140625, 269.1733093261719, 1.0, 787.41064453125, 264.54119873046875, 1.0, 283.10943603515625, 379.07598876953125, 1.0, 350.87847900390625, 371.1435852050781, 1.0, 415.6268310546875, 363.51898193359375, 1.0, 477.4248352050781, 356.34063720703125, 1.0, 536.269287109375, 349.4168701171875, 1.0, 592.4894409179688, 342.7894592285156, 1.0, 646.3682250976562, 336.5474853515625, 1.0, 698.1529541015625, 330.51080322265625, 1.0, 747.8162841796875, 324.710693359375, 1.0, 795.8603515625, 319.1180419921875, 1.0, 291.20098876953125, 446.37530517578125, 1.0, 359.0231628417969, 436.7763366699219, 1.0, 423.8948974609375, 427.5452880859375, 1.0, 485.6600646972656, 418.7292785644531, 1.0, 544.6214599609375, 410.449951171875, 1.0, 600.8753662109375, 402.5859375, 1.0, 654.7620239257812, 395.0871276855469, 1.0, 706.5426635742188, 387.8336486816406, 1.0, 756.3992919921875, 380.8986511230469, 1.0, 804.4674682617188, 374.42010498046875, 1.0, 299.4176330566406, 514.1487426757812, 1.0, 367.216064453125, 503.0054016113281, 1.0, 432.1348876953125, 492.185791015625, 1.0, 493.94415283203125, 481.8686828613281, 1.0, 553.0391235351562, 472.1029968261719, 1.0, 609.4364624023438, 462.79852294921875, 1.0, 663.3472900390625, 454.03118896484375, 1.0, 715.2567749023438, 445.6568298339844, 1.0, 765.1507568359375, 437.7160339355469, 1.0, 813.127197265625, 430.02685546875, 1.0, 307.752197265625, 582.4563598632812, 1.0, 375.4593811035156, 569.8539428710938, 1.0, 440.3575134277344, 557.5748901367188, 1.0, 502.3246765136719, 545.7500610351562, 1.0, 561.4722290039062, 534.546630859375, 1.0, 617.9097900390625, 523.8419189453125, 1.0, 672.0115966796875, 513.7630615234375, 1.0, 723.9618530273438, 504.20098876953125, 1.0, 773.8868408203125, 495.01470947265625, 1.0, 821.9168701171875, 486.2171630859375, 1.0, 316.56085205078125, 651.0474243164062, 1.0, 383.9739074707031, 637.2036743164062, 1.0, 448.7649841308594, 623.5284423828125, 1.0, 510.7211608886719, 610.3495483398438, 1.0, 570.062744140625, 597.6461791992188, 1.0, 626.6493530273438, 585.5499877929688, 1.0, 680.8482055664062, 574.0971069335938, 1.0, 732.797607421875, 563.255859375, 1.0, 782.8169555664062, 552.7925415039062, 1.0, 830.833251953125, 542.7350463867188, 1.0, 221.4371337890625, 43.45989990234375, 1.0, 288.0381774902344, 43.93754959106445, 1.0, 352.2327880859375, 44.495330810546875, 1.0, 413.70367431640625, 45.44887924194336, 1.0, 472.8612365722656, 46.39746856689453, 1.0, 529.4646606445312, 47.474884033203125, 1.0, 583.7134399414062, 48.40250778198242, 1.0, 635.6296997070312, 49.460472106933594, 1.0, 685.5805053710938, 50.26689910888672, 1.0, 733.4960327148438, 51.18003845214844, 1.0, 227.47157287597656, 107.40348815917969, 1.0, 294.4319763183594, 106.54056549072266, 1.0, 359.0599365234375, 105.94068908691406, 1.0, 420.89178466796875, 105.74684143066406, 1.0, 480.1736755371094, 105.51222229003906, 1.0, 536.7488403320312, 105.4211196899414, 1.0, 590.9130859375, 105.18035888671875, 1.0, 642.87548828125, 104.86144256591797, 1.0, 692.7181396484375, 104.67163848876953, 1.0, 740.6431274414062, 104.34293365478516, 1.0, 233.79080200195312, 172.1685791015625, 1.0, 301.2755126953125, 169.9921112060547, 1.0, 366.18414306640625, 168.2418212890625, 1.0, 428.2042236328125, 166.6180419921875, 1.0, 487.5243835449219, 165.21337890625, 1.0, 544.0719604492188, 163.74093627929688, 1.0, 598.3090209960938, 162.30906677246094, 1.0, 650.16796875, 160.7906951904297, 1.0, 700.0433959960938, 159.3900604248047, 1.0, 747.9112548828125, 158.10284423828125, 1.0, 240.47100830078125, 237.66036987304688, 1.0, 308.33123779296875, 234.23619079589844, 1.0, 373.46453857421875, 230.8946533203125, 1.0, 435.6061706542969, 227.89065551757812, 1.0, 494.9293212890625, 225.0816650390625, 1.0, 551.5307006835938, 222.31297302246094, 1.0, 605.6356811523438, 219.60401916503906, 1.0, 657.5128173828125, 216.9683380126953, 1.0, 707.4051513671875, 214.4466094970703, 1.0, 755.2490844726562, 211.8737030029297, 1.0, 247.5132598876953, 304.0064392089844, 1.0, 315.55157470703125, 298.8609313964844, 1.0, 380.88018798828125, 294.2255554199219, 1.0, 443.1328430175781, 289.5992126464844, 1.0, 502.465087890625, 285.39410400390625, 1.0, 558.900634765625, 281.2613525390625, 1.0, 613.0758666992188, 277.28216552734375, 1.0, 664.8226318359375, 273.44873046875, 1.0, 714.5833740234375, 269.6933898925781, 1.0, 762.5010375976562, 266.1739807128906, 1.0, 254.48611450195312, 370.520263671875, 1.0, 322.8997802734375, 363.77960205078125, 1.0, 388.2775573730469, 357.4388732910156, 1.0, 450.5675964355469, 351.39111328125, 1.0, 509.8324890136719, 345.5688171386719, 1.0, 566.4368286132812, 340.1254577636719, 1.0, 620.4722900390625, 334.8169860839844, 1.0, 672.3173828125, 329.79364013671875, 1.0, 722.1166381835938, 325.0060119628906, 1.0, 770.0408325195312, 320.3864440917969, 1.0, 261.65582275390625, 437.9670104980469, 1.0, 330.1500244140625, 429.6290283203125, 1.0, 395.5775146484375, 421.5594787597656, 1.0, 457.8486022949219, 413.8450012207031, 1.0, 517.3380737304688, 406.5515441894531, 1.0, 573.8438720703125, 399.5764465332031, 1.0, 627.9439086914062, 393.0260925292969, 1.0, 679.7308959960938, 386.8117980957031, 1.0, 729.5827026367188, 380.9081726074219, 1.0, 777.6016845703125, 375.1997985839844, 1.0, 268.98974609375, 505.8857421875, 1.0, 337.4502258300781, 495.9031066894531, 1.0, 402.9178161621094, 486.25616455078125, 1.0, 465.3458557128906, 476.84649658203125, 1.0, 524.7117309570312, 468.00347900390625, 1.0, 581.4204711914062, 459.6690368652344, 1.0, 635.555908203125, 451.7412414550781, 1.0, 687.4682006835938, 444.37432861328125, 1.0, 737.3980102539062, 437.25823974609375, 1.0, 785.4024047851562, 430.3818664550781, 1.0, 276.6073303222656, 574.2525634765625, 1.0, 344.7594299316406, 562.7644653320312, 1.0, 410.2851257324219, 551.5179443359375, 1.0, 472.68206787109375, 540.6805419921875, 1.0, 532.2566528320312, 530.3284301757812, 1.0, 588.9297485351562, 520.4091796875, 1.0, 643.31787109375, 511.20684814453125, 1.0, 695.3236694335938, 502.4337158203125, 1.0, 745.1990966796875, 494.091552734375, 1.0, 793.20068359375, 486.2137451171875, 1.0, 284.5375671386719, 642.7059326171875, 1.0, 352.38983154296875, 629.9655151367188, 1.0, 417.6809997558594, 617.3733520507812, 1.0, 480.1613464355469, 605.0433959960938, 1.0, 539.7230834960938, 593.218994140625, 1.0, 596.6424560546875, 581.9090576171875, 1.0, 651.0811157226562, 571.31494140625, 1.0, 703.1593627929688, 561.0926513671875, 1.0, 753.2467041015625, 551.4893188476562, 1.0, 801.1394653320312, 542.3311767578125, 1.0, 122.87092590332031, 36.46072006225586, 1.0, 192.8890380859375, 37.46344757080078, 1.0, 259.2777099609375, 38.07197952270508, 1.0, 322.5283203125, 38.56332778930664, 1.0, 383.2384033203125, 39.28907012939453, 1.0, 441.12518310546875, 40.317726135253906, 1.0, 496.5708312988281, 41.33378601074219, 1.0, 549.267578125, 42.472198486328125, 1.0, 599.7913208007812, 43.440162658691406, 1.0, 647.94384765625, 44.40342330932617, 1.0, 130.5411834716797, 101.96110534667969, 1.0, 200.17086791992188, 100.90464782714844, 1.0, 266.49847412109375, 99.86432647705078, 1.0, 330.27557373046875, 99.21812438964844, 1.0, 391.15545654296875, 98.8310546875, 1.0, 449.27685546875, 98.55982971191406, 1.0, 504.54150390625, 98.28040313720703, 1.0, 557.3736572265625, 98.09371948242188, 1.0, 607.68115234375, 97.9785385131836, 1.0, 655.8521118164062, 97.65965270996094, 1.0, 137.985107421875, 168.15061950683594, 1.0, 207.49024963378906, 165.30995178222656, 1.0, 274.3255615234375, 162.80628967285156, 1.0, 338.2325134277344, 160.70635986328125, 1.0, 399.3228759765625, 158.91323852539062, 1.0, 457.37628173828125, 157.3147735595703, 1.0, 512.6683959960938, 155.6925506591797, 1.0, 565.3017578125, 154.19546508789062, 1.0, 615.5841064453125, 152.62953186035156, 1.0, 663.6563110351562, 151.32644653320312, 1.0, 145.3798065185547, 234.5656280517578, 1.0, 215.19923400878906, 230.1818084716797, 1.0, 282.287841796875, 226.29837036132812, 1.0, 346.4798278808594, 222.6331787109375, 1.0, 407.5645751953125, 219.34521484375, 1.0, 465.6876525878906, 216.25660705566406, 1.0, 520.8839111328125, 213.2458953857422, 1.0, 573.4230346679688, 210.41290283203125, 1.0, 623.6106567382812, 207.672607421875, 1.0, 671.538330078125, 204.84811401367188, 1.0, 153.1201171875, 301.8126220703125, 1.0, 223.09576416015625, 295.78387451171875, 1.0, 290.45404052734375, 290.3525085449219, 1.0, 354.7314453125, 284.9670104980469, 1.0, 415.8912658691406, 280.143798828125, 1.0, 473.9601745605469, 275.465087890625, 1.0, 529.2028198242188, 271.0643005371094, 1.0, 581.5025634765625, 266.8009948730469, 1.0, 631.5296020507812, 262.7294616699219, 1.0, 679.3431396484375, 258.7879333496094, 1.0, 161.03262329101562, 369.343994140625, 1.0, 231.2034454345703, 361.626708984375, 1.0, 298.6770324707031, 354.36944580078125, 1.0, 363.0884704589844, 347.421875, 1.0, 424.29315185546875, 340.7908630371094, 1.0, 482.27484130859375, 334.6031188964844, 1.0, 537.3236694335938, 328.65350341796875, 1.0, 589.5552978515625, 323.089111328125, 1.0, 639.5098266601562, 317.7348937988281, 1.0, 687.3167114257812, 312.56207275390625, 1.0, 169.28919982910156, 437.66748046875, 1.0, 239.43746948242188, 428.37017822265625, 1.0, 306.98779296875, 419.2491149902344, 1.0, 371.340576171875, 410.53094482421875, 1.0, 432.48638916015625, 402.1875915527344, 1.0, 490.4366455078125, 394.33074951171875, 1.0, 545.4446411132812, 386.8671569824219, 1.0, 597.63671875, 379.86322021484375, 1.0, 647.5850219726562, 373.2477111816406, 1.0, 695.3359375, 366.80242919921875, 1.0, 177.9013214111328, 506.3898620605469, 1.0, 247.81707763671875, 495.35528564453125, 1.0, 315.242431640625, 484.5182189941406, 1.0, 379.513916015625, 474.0103759765625, 1.0, 440.65399169921875, 463.8971862792969, 1.0, 498.5605163574219, 454.46514892578125, 1.0, 553.5689697265625, 445.47454833984375, 1.0, 605.8082275390625, 437.0904541015625, 1.0, 655.7564697265625, 429.0710754394531, 1.0, 703.4483032226562, 421.4694519042969, 1.0, 186.68270874023438, 575.4138793945312, 1.0, 256.5202941894531, 562.6817016601562, 1.0, 323.5998229980469, 550.3013305664062, 1.0, 387.72052001953125, 538.0538330078125, 1.0, 448.7988586425781, 526.326416015625, 1.0, 506.7010498046875, 515.2677001953125, 1.0, 561.718017578125, 504.627197265625, 1.0, 614.0277709960938, 494.800537109375, 1.0, 663.953857421875, 485.3999328613281, 1.0, 711.6063232421875, 476.5891418457031, 1.0, 195.86398315429688, 644.5234375, 1.0, 265.4725646972656, 630.1878662109375, 1.0, 332.2413024902344, 616.17822265625, 1.0, 396.1221923828125, 602.537353515625, 1.0, 457.0804443359375, 589.3139038085938, 1.0, 514.9326782226562, 576.5358276367188, 1.0, 570.0133056640625, 564.3973999023438, 1.0, 622.3344116210938, 553.0468139648438, 1.0, 672.3139038085938, 542.2515869140625, 1.0, 719.9645385742188, 532.11669921875, 1.0, 100.6935806274414, 49.28337860107422, 1.0, 171.62550354003906, 49.58498764038086, 1.0, 238.4054718017578, 49.29278564453125, 1.0, 302.04302978515625, 49.184608459472656, 1.0, 363.1097106933594, 49.124755859375, 1.0, 421.3580017089844, 49.43827438354492, 1.0, 476.83685302734375, 49.90983581542969, 1.0, 529.8856201171875, 50.36860656738281, 1.0, 580.5321044921875, 50.77609634399414, 1.0, 628.7575073242188, 51.18522262573242, 1.0, 109.22454833984375, 115.50456237792969, 1.0, 179.55670166015625, 113.64016723632812, 1.0, 246.38026428222656, 111.80440521240234, 1.0, 310.3963928222656, 110.15472412109375, 1.0, 371.59686279296875, 108.9937515258789, 1.0, 430.01629638671875, 107.90470123291016, 1.0, 485.587158203125, 107.0594482421875, 1.0, 538.604248046875, 106.11104583740234, 1.0, 588.9970703125, 105.37615203857422, 1.0, 637.3375854492188, 104.40653228759766, 1.0, 117.50226593017578, 182.30589294433594, 1.0, 187.61102294921875, 178.52960205078125, 1.0, 254.7405548095703, 175.11737060546875, 1.0, 318.9786071777344, 172.00465393066406, 1.0, 380.4570617675781, 169.4042510986328, 1.0, 438.83978271484375, 166.91070556640625, 1.0, 494.4345397949219, 164.57960510253906, 1.0, 547.207275390625, 162.32907104492188, 1.0, 597.6107177734375, 160.2251739501953, 1.0, 645.7195434570312, 158.2183074951172, 1.0, 125.75269317626953, 249.5409393310547, 1.0, 196.01132202148438, 244.0509490966797, 1.0, 263.4122009277344, 239.0725555419922, 1.0, 328.0380859375, 234.45306396484375, 1.0, 389.4796142578125, 230.21713256835938, 1.0, 447.9265441894531, 226.2257080078125, 1.0, 503.41015625, 222.4514923095703, 1.0, 556.1196899414062, 218.72235107421875, 1.0, 606.42041015625, 215.35813903808594, 1.0, 654.3045043945312, 211.936767578125, 1.0, 134.35279846191406, 317.5871276855469, 1.0, 204.59841918945312, 310.4624938964844, 1.0, 272.4349670410156, 303.6575622558594, 1.0, 337.0346984863281, 297.3606262207031, 1.0, 398.5979919433594, 291.4184265136719, 1.0, 456.9299011230469, 285.7275390625, 1.0, 512.3927612304688, 280.5643310546875, 1.0, 564.9069213867188, 275.47393798828125, 1.0, 615.0146484375, 270.6073303222656, 1.0, 662.8067626953125, 265.878173828125, 1.0, 143.27500915527344, 386.0555419921875, 1.0, 213.62802124023438, 377.14935302734375, 1.0, 281.4891662597656, 368.5804748535156, 1.0, 346.3013610839844, 360.3934020996094, 1.0, 407.7073974609375, 352.68115234375, 1.0, 466.1160888671875, 345.46331787109375, 1.0, 521.3798828125, 338.5506896972656, 1.0, 573.7633056640625, 332.0791015625, 1.0, 623.7645263671875, 325.81597900390625, 1.0, 671.579345703125, 319.8688049316406, 1.0, 152.5385284423828, 455.409423828125, 1.0, 222.92494201660156, 444.6801452636719, 1.0, 290.7279357910156, 434.2853698730469, 1.0, 355.4129638671875, 424.2569274902344, 1.0, 416.9369812011719, 414.72576904296875, 1.0, 475.09649658203125, 405.8030090332031, 1.0, 530.4240112304688, 397.3279113769531, 1.0, 582.7129516601562, 389.3176574707031, 1.0, 632.6701049804688, 381.6805114746094, 1.0, 680.3507080078125, 374.4924621582031, 1.0, 162.3865203857422, 525.1171875, 1.0, 232.53530883789062, 512.5390014648438, 1.0, 300.1153869628906, 500.4091796875, 1.0, 364.6259460449219, 488.5618591308594, 1.0, 426.1092529296875, 477.29681396484375, 1.0, 484.3216247558594, 466.56585693359375, 1.0, 539.4442138671875, 456.3924255371094, 1.0, 591.8404541015625, 446.880859375, 1.0, 641.75439453125, 437.95526123046875, 1.0, 689.4634399414062, 429.4080505371094, 1.0, 172.45614624023438, 595.0651245117188, 1.0, 242.5155487060547, 580.8232421875, 1.0, 309.7177429199219, 566.9789428710938, 1.0, 374.1192932128906, 553.4625854492188, 1.0, 435.3595275878906, 540.4873657226562, 1.0, 493.4961242675781, 528.0106811523438, 1.0, 548.6714477539062, 516.3482055664062, 1.0, 601.0888671875, 505.20123291015625, 1.0, 650.990478515625, 494.8046569824219, 1.0, 698.5908203125, 484.9332580566406, 1.0, 182.7973175048828, 665.2962646484375, 1.0, 252.86561584472656, 649.155029296875, 1.0, 319.7629699707031, 633.7265625, 1.0, 383.7617492675781, 618.7421264648438, 1.0, 444.8384704589844, 604.099853515625, 1.0, 502.91748046875, 590.1122436523438, 1.0, 558.0223388671875, 576.692138671875, 1.0, 610.4852905273438, 564.126953125, 1.0, 660.3834228515625, 552.066650390625, 1.0, 707.9567260742188, 540.9158935546875, 1.0, 237.44110107421875, 124.861083984375, 1.0, 284.88836669921875, 119.44707489013672, 1.0, 334.0877990722656, 113.84264373779297, 1.0, 384.6083068847656, 108.28437042236328, 1.0, 436.5308837890625, 102.82955932617188, 1.0, 489.7579650878906, 97.18419647216797, 1.0, 544.4091186523438, 91.30272674560547, 1.0, 600.4373168945312, 85.24337768554688, 1.0, 658.1943359375, 78.98307037353516, 1.0, 717.2786254882812, 72.54039001464844, 1.0, 234.66065979003906, 176.6799774169922, 1.0, 282.70806884765625, 171.78683471679688, 1.0, 332.3148498535156, 167.12515258789062, 1.0, 383.3193664550781, 162.31231689453125, 1.0, 435.71929931640625, 157.4729766845703, 1.0, 489.4105224609375, 152.48509216308594, 1.0, 544.407470703125, 147.45262145996094, 1.0, 600.829833984375, 141.9429168701172, 1.0, 658.9500732421875, 136.49615478515625, 1.0, 718.605712890625, 130.72357177734375, 1.0, 232.14529418945312, 229.57418823242188, 1.0, 280.5786437988281, 225.40841674804688, 1.0, 330.6858215332031, 221.39276123046875, 1.0, 382.1192932128906, 217.17181396484375, 1.0, 435.01043701171875, 213.04457092285156, 1.0, 489.0136413574219, 208.6894073486328, 1.0, 544.4765014648438, 204.39022827148438, 1.0, 601.3391723632812, 199.71563720703125, 1.0, 659.8009033203125, 195.0363006591797, 1.0, 719.8316650390625, 189.98123168945312, 1.0, 229.53904724121094, 283.228759765625, 1.0, 278.52496337890625, 279.7555847167969, 1.0, 329.0069274902344, 276.3539123535156, 1.0, 380.92242431640625, 272.8129577636719, 1.0, 434.11474609375, 269.3433837890625, 1.0, 488.6440734863281, 265.7623291015625, 1.0, 544.506591796875, 262.1130676269531, 1.0, 601.7263793945312, 258.2804870605469, 1.0, 660.5745239257812, 254.32412719726562, 1.0, 721.1551513671875, 250.13912963867188, 1.0, 227.25759887695312, 337.76708984375, 1.0, 276.4477233886719, 335.1008605957031, 1.0, 327.3243103027344, 332.3519592285156, 1.0, 379.61956787109375, 329.4602355957031, 1.0, 433.2428283691406, 326.5960388183594, 1.0, 488.3191833496094, 323.6239013671875, 1.0, 544.54443359375, 320.6439514160156, 1.0, 602.2357177734375, 317.61639404296875, 1.0, 661.4937744140625, 314.44952392578125, 1.0, 722.63037109375, 311.2057800292969, 1.0, 224.7678680419922, 392.939697265625, 1.0, 274.4036865234375, 390.9090270996094, 1.0, 325.52215576171875, 388.8152160644531, 1.0, 378.3038330078125, 386.63104248046875, 1.0, 432.42498779296875, 384.5119934082031, 1.0, 487.80120849609375, 382.2769775390625, 1.0, 544.5507202148438, 379.9219970703125, 1.0, 602.666259765625, 377.5216064453125, 1.0, 662.479248046875, 375.2314758300781, 1.0, 724.10888671875, 372.8675231933594, 1.0, 222.46388244628906, 449.1251220703125, 1.0, 272.2919006347656, 447.9893798828125, 1.0, 323.7435302734375, 446.6700439453125, 1.0, 376.8721008300781, 445.2250061035156, 1.0, 431.27398681640625, 443.6098327636719, 1.0, 487.2312927246094, 442.0915832519531, 1.0, 544.4676513671875, 440.51983642578125, 1.0, 603.180908203125, 438.964111328125, 1.0, 663.5555419921875, 437.5223083496094, 1.0, 725.7545776367188, 436.22406005859375, 1.0, 220.38128662109375, 506.215576171875, 1.0, 270.2465515136719, 505.8351745605469, 1.0, 321.96136474609375, 505.3357849121094, 1.0, 375.3922424316406, 504.7001647949219, 1.0, 430.21844482421875, 503.9451599121094, 1.0, 486.60614013671875, 503.2041931152344, 1.0, 544.3922119140625, 502.4345703125, 1.0, 603.68505859375, 501.6551818847656, 1.0, 664.6907958984375, 501.1332702636719, 1.0, 727.560791015625, 500.68023681640625, 1.0, 218.45071411132812, 563.906005859375, 1.0, 268.4520263671875, 564.5034790039062, 1.0, 320.40875244140625, 564.9373779296875, 1.0, 373.89678955078125, 565.3395385742188, 1.0, 429.1244812011719, 565.451171875, 1.0, 485.99261474609375, 565.4679565429688, 1.0, 544.3267822265625, 565.589599609375, 1.0, 604.2374877929688, 565.8145751953125, 1.0, 665.91259765625, 566.2007446289062, 1.0, 729.44482421875, 566.5568237304688, 1.0, 216.81085205078125, 622.2351684570312, 1.0, 266.81256103515625, 623.8200073242188, 1.0, 318.8683776855469, 625.3287963867188, 1.0, 372.6730651855469, 626.7777099609375, 1.0, 428.31402587890625, 627.8606567382812, 1.0, 485.344970703125, 629.0686645507812, 1.0, 544.3311157226562, 630.1944580078125, 1.0, 604.788330078125, 631.3587646484375, 1.0, 667.1450805664062, 632.615966796875, 1.0, 731.334716796875, 633.9487915039062, 1.0, 377.3578796386719, 123.79508209228516, 1.0, 428.940673828125, 120.62590026855469, 1.0, 481.67950439453125, 117.56802368164062, 1.0, 535.6214599609375, 114.3447036743164, 1.0, 590.7423706054688, 111.0492935180664, 1.0, 647.0879516601562, 107.59558868408203, 1.0, 704.8982543945312, 104.05258178710938, 1.0, 763.9556884765625, 100.40550231933594, 1.0, 824.5899047851562, 96.65011596679688, 1.0, 886.1963500976562, 93.02178192138672, 1.0, 373.95458984375, 176.54391479492188, 1.0, 425.9893798828125, 174.12913513183594, 1.0, 479.338134765625, 171.59364318847656, 1.0, 533.6383056640625, 168.8562774658203, 1.0, 589.099609375, 166.22088623046875, 1.0, 645.9138793945312, 163.37680053710938, 1.0, 704.1446533203125, 160.33470153808594, 1.0, 763.7158203125, 157.296875, 1.0, 824.6577758789062, 154.04042053222656, 1.0, 887.0792236328125, 151.05860900878906, 1.0, 370.66973876953125, 230.36512756347656, 1.0, 423.2201843261719, 228.31735229492188, 1.0, 476.8491516113281, 226.3788604736328, 1.0, 531.6082763671875, 224.29251098632812, 1.0, 587.5288696289062, 222.249755859375, 1.0, 644.6353149414062, 219.91519165039062, 1.0, 703.2513427734375, 217.65603637695312, 1.0, 763.2352294921875, 215.18206787109375, 1.0, 824.962646484375, 212.63262939453125, 1.0, 888.128662109375, 210.15939331054688, 1.0, 367.39483642578125, 284.683349609375, 1.0, 420.32806396484375, 283.364990234375, 1.0, 474.4132080078125, 281.8919982910156, 1.0, 529.5297241210938, 280.4400634765625, 1.0, 585.8719482421875, 278.9516906738281, 1.0, 643.3981323242188, 277.371337890625, 1.0, 702.3264770507812, 275.66571044921875, 1.0, 762.892333984375, 273.9736633300781, 1.0, 825.2006225585938, 272.1964416503906, 1.0, 889.0947875976562, 270.4012756347656, 1.0, 363.9511413574219, 340.2555847167969, 1.0, 417.4306640625, 339.2709655761719, 1.0, 471.7926025390625, 338.4058837890625, 1.0, 527.4586791992188, 337.51904296875, 1.0, 584.2200927734375, 336.5849609375, 1.0, 642.138916015625, 335.66815185546875, 1.0, 701.6078491210938, 334.7615051269531, 1.0, 762.7499389648438, 333.7656555175781, 1.0, 825.5543212890625, 332.7618408203125, 1.0, 889.9755249023438, 331.7893981933594, 1.0, 360.50103759765625, 396.3531799316406, 1.0, 414.333251953125, 395.9678039550781, 1.0, 469.2889099121094, 395.6064453125, 1.0, 525.29736328125, 395.20208740234375, 1.0, 582.4437255859375, 394.8459167480469, 1.0, 640.9296264648438, 394.7400817871094, 1.0, 700.8994750976562, 394.4942626953125, 1.0, 762.5361938476562, 394.3455810546875, 1.0, 825.9878540039062, 394.2389221191406, 1.0, 891.0463256835938, 393.9562683105469, 1.0, 356.9039611816406, 453.7439270019531, 1.0, 411.13995361328125, 453.9224853515625, 1.0, 466.48895263671875, 454.2034912109375, 1.0, 523.0353393554688, 454.44342041015625, 1.0, 580.6893920898438, 454.7881774902344, 1.0, 639.7964477539062, 455.1799011230469, 1.0, 700.3919677734375, 455.7471618652344, 1.0, 762.5572509765625, 456.4778137207031, 1.0, 826.5659790039062, 457.11773681640625, 1.0, 892.132080078125, 457.7183837890625, 1.0, 353.3179626464844, 512.2337036132812, 1.0, 407.8581848144531, 513.1004638671875, 1.0, 463.6422119140625, 513.9288940429688, 1.0, 520.6690673828125, 514.8825073242188, 1.0, 579.0076904296875, 515.818115234375, 1.0, 638.6917114257812, 517.0601196289062, 1.0, 699.8671264648438, 518.468505859375, 1.0, 762.6205444335938, 519.8103637695312, 1.0, 827.2261352539062, 521.3390502929688, 1.0, 893.3501586914062, 522.68896484375, 1.0, 349.68536376953125, 571.5572509765625, 1.0, 404.58489990234375, 573.2718505859375, 1.0, 460.7888488769531, 575.025634765625, 1.0, 518.3765869140625, 576.5647583007812, 1.0, 577.2608642578125, 578.3978881835938, 1.0, 637.5413818359375, 580.3881225585938, 1.0, 699.3751220703125, 582.483642578125, 1.0, 762.8141479492188, 584.6119995117188, 1.0, 827.9521484375, 586.7192993164062, 1.0, 894.5626220703125, 588.8214721679688, 1.0, 346.49853515625, 631.762939453125, 1.0, 401.4964294433594, 634.4758911132812, 1.0, 458.16888427734375, 637.07568359375, 1.0, 516.1296997070312, 639.583251953125, 1.0, 575.5299682617188, 642.2064208984375, 1.0, 636.4793090820312, 644.9652709960938, 1.0, 699.0253295898438, 647.7424926757812, 1.0, 762.921630859375, 650.6243896484375, 1.0, 828.5288696289062, 653.4006958007812, 1.0, 895.4912719726562, 655.9990844726562, 1.0, 350.9804382324219, 106.7336196899414, 1.0, 403.6597900390625, 102.1541748046875, 1.0, 457.68218994140625, 97.39494323730469, 1.0, 512.7838745117188, 92.52953338623047, 1.0, 569.400634765625, 87.54376220703125, 1.0, 627.0757446289062, 82.4846420288086, 1.0, 686.3972778320312, 77.23544311523438, 1.0, 747.079345703125, 71.70187377929688, 1.0, 809.4019165039062, 66.3366928100586, 1.0, 872.9771118164062, 60.849613189697266, 1.0, 348.4418640136719, 161.02084350585938, 1.0, 401.6383361816406, 156.94253540039062, 1.0, 455.9537353515625, 152.78359985351562, 1.0, 511.7574462890625, 148.69346618652344, 1.0, 568.6220703125, 144.39071655273438, 1.0, 626.8541870117188, 139.8681182861328, 1.0, 686.5368041992188, 135.27061462402344, 1.0, 747.8751831054688, 130.42213439941406, 1.0, 810.6848754882812, 125.49273681640625, 1.0, 874.9539184570312, 120.50556945800781, 1.0, 345.9193420410156, 216.34317016601562, 1.0, 399.5693664550781, 212.79965209960938, 1.0, 454.5462646484375, 209.31427001953125, 1.0, 510.5365295410156, 205.71812438964844, 1.0, 568.0121459960938, 202.17877197265625, 1.0, 626.5853271484375, 198.28558349609375, 1.0, 686.7556762695312, 194.3120880126953, 1.0, 748.562744140625, 190.161865234375, 1.0, 812.021240234375, 185.92771911621094, 1.0, 877.05224609375, 181.5382843017578, 1.0, 343.406982421875, 272.38995361328125, 1.0, 397.5663757324219, 269.53582763671875, 1.0, 452.99652099609375, 266.6178283691406, 1.0, 509.4761962890625, 263.6515808105469, 1.0, 567.2693481445312, 260.62713623046875, 1.0, 626.3579711914062, 257.4920959472656, 1.0, 686.952880859375, 254.3103485107422, 1.0, 749.2616577148438, 250.7506103515625, 1.0, 813.3560180664062, 247.33740234375, 1.0, 879.1204833984375, 243.682861328125, 1.0, 341.0047302246094, 329.4997863769531, 1.0, 395.5094909667969, 327.2748107910156, 1.0, 451.40240478515625, 324.86602783203125, 1.0, 508.41082763671875, 322.5579528808594, 1.0, 566.6114501953125, 320.24322509765625, 1.0, 626.1198120117188, 317.706298828125, 1.0, 687.3037109375, 315.193115234375, 1.0, 750.0322875976562, 312.5503845214844, 1.0, 814.8120727539062, 309.9348449707031, 1.0, 881.2777099609375, 307.20330810546875, 1.0, 338.4211120605469, 387.3293762207031, 1.0, 393.4637451171875, 385.60552978515625, 1.0, 449.78619384765625, 383.8653564453125, 1.0, 507.26300048828125, 382.21795654296875, 1.0, 565.99462890625, 380.38525390625, 1.0, 626.0181274414062, 378.61181640625, 1.0, 687.7218017578125, 376.8760986328125, 1.0, 751.0760498046875, 375.1600036621094, 1.0, 816.54931640625, 373.33599853515625, 1.0, 883.5794677734375, 371.47882080078125, 1.0, 335.6974792480469, 446.5765686035156, 1.0, 391.2220153808594, 445.5071716308594, 1.0, 447.9932861328125, 444.3626708984375, 1.0, 505.9118957519531, 443.1538391113281, 1.0, 565.3023681640625, 442.1461486816406, 1.0, 625.9337768554688, 441.0224304199219, 1.0, 688.2872314453125, 440.1954040527344, 1.0, 752.3287963867188, 439.2926940917969, 1.0, 818.3436889648438, 438.4264831542969, 1.0, 886.0278930664062, 437.4718017578125, 1.0, 333.08819580078125, 506.75714111328125, 1.0, 388.8473205566406, 506.52386474609375, 1.0, 446.1416320800781, 506.0077819824219, 1.0, 504.69384765625, 505.4821472167969, 1.0, 564.5658569335938, 505.1988830566406, 1.0, 625.88134765625, 504.9459228515625, 1.0, 688.9442749023438, 504.82171630859375, 1.0, 753.6007690429688, 504.7750549316406, 1.0, 820.2959594726562, 504.8367004394531, 1.0, 888.7123413085938, 504.70379638671875, 1.0, 330.466552734375, 568.1015625, 1.0, 386.5892639160156, 568.634033203125, 1.0, 444.3370361328125, 569.028564453125, 1.0, 503.347412109375, 569.3009643554688, 1.0, 563.9598999023438, 569.7632446289062, 1.0, 625.8637084960938, 570.352783203125, 1.0, 689.6063232421875, 571.0858154296875, 1.0, 754.9990234375, 571.9212646484375, 1.0, 822.3096923828125, 572.7060546875, 1.0, 891.2732543945312, 573.3618774414062, 1.0, 328.24444580078125, 630.1357421875, 1.0, 384.55596923828125, 631.6976318359375, 1.0, 442.58990478515625, 633.1393432617188, 1.0, 502.05584716796875, 634.4978637695312, 1.0, 563.2265625, 635.73193359375, 1.0, 625.8287963867188, 637.258544921875, 1.0, 690.3501586914062, 638.7102661132812, 1.0, 756.4061889648438, 640.3216552734375, 1.0, 824.296875, 641.7901611328125, 1.0, 893.5693969726562, 643.0824584960938, 1.0, 323.292724609375, 115.27603912353516, 1.0, 377.2826232910156, 109.90857696533203, 1.0, 432.6378479003906, 104.73252868652344, 1.0, 489.36224365234375, 99.24391174316406, 1.0, 547.4486694335938, 93.71334075927734, 1.0, 606.744384765625, 87.94939422607422, 1.0, 667.9727783203125, 82.08683013916016, 1.0, 730.2583618164062, 75.92028045654297, 1.0, 794.4917602539062, 69.67757415771484, 1.0, 860.0896606445312, 63.51201629638672, 1.0, 320.5968017578125, 171.3770294189453, 1.0, 375.2760314941406, 166.74757385253906, 1.0, 431.1717529296875, 162.18487548828125, 1.0, 488.4796447753906, 157.4773406982422, 1.0, 547.0983276367188, 152.632568359375, 1.0, 606.9454956054688, 147.63739013671875, 1.0, 668.514892578125, 142.46926879882812, 1.0, 731.7486572265625, 136.98007202148438, 1.0, 796.5752563476562, 131.44093322753906, 1.0, 863.0282592773438, 125.7610855102539, 1.0, 317.93048095703125, 228.6018829345703, 1.0, 373.1533203125, 224.73104858398438, 1.0, 429.7568054199219, 220.80259704589844, 1.0, 487.5973205566406, 216.7612762451172, 1.0, 546.7830200195312, 212.70147705078125, 1.0, 607.1573486328125, 208.4657440185547, 1.0, 669.3496704101562, 204.02337646484375, 1.0, 732.95654296875, 199.329345703125, 1.0, 798.6907348632812, 194.43202209472656, 1.0, 865.9331665039062, 189.5271453857422, 1.0, 315.2939147949219, 286.9438171386719, 1.0, 371.1071472167969, 283.6884765625, 1.0, 428.16058349609375, 280.47674560546875, 1.0, 486.6219482421875, 277.187744140625, 1.0, 546.2813110351562, 273.67266845703125, 1.0, 607.4247436523438, 270.2120056152344, 1.0, 670.1116943359375, 266.495361328125, 1.0, 734.4464111328125, 262.6017150878906, 1.0, 800.7566528320312, 258.6387939453125, 1.0, 868.8828125, 254.59596252441406, 1.0, 312.41241455078125, 346.5213928222656, 1.0, 368.786376953125, 343.88671875, 1.0, 426.5633544921875, 341.34613037109375, 1.0, 485.5137634277344, 338.5614318847656, 1.0, 545.8792114257812, 335.87640380859375, 1.0, 607.5050659179688, 333.0951232910156, 1.0, 670.7582397460938, 330.2737731933594, 1.0, 735.8218383789062, 327.3445129394531, 1.0, 802.9005126953125, 324.3235168457031, 1.0, 871.9583740234375, 321.20721435546875, 1.0, 309.3831787109375, 407.0135192871094, 1.0, 366.3583068847656, 405.06622314453125, 1.0, 424.7370300292969, 402.99151611328125, 1.0, 484.29046630859375, 401.035888671875, 1.0, 545.2159423828125, 398.87969970703125, 1.0, 607.5763549804688, 396.8627624511719, 1.0, 671.5470581054688, 394.9668884277344, 1.0, 737.3091430664062, 392.9678039550781, 1.0, 805.212646484375, 390.9184265136719, 1.0, 874.971435546875, 388.879150390625, 1.0, 306.47052001953125, 468.99993896484375, 1.0, 363.77191162109375, 467.84765625, 1.0, 422.6292419433594, 466.6011657714844, 1.0, 482.9659423828125, 465.21234130859375, 1.0, 544.6134033203125, 463.94268798828125, 1.0, 607.6066284179688, 462.73541259765625, 1.0, 672.4548950195312, 461.61773681640625, 1.0, 738.9779052734375, 460.64337158203125, 1.0, 807.6895141601562, 459.5763244628906, 1.0, 878.240966796875, 458.53533935546875, 1.0, 303.3859558105469, 532.2747192382812, 1.0, 361.1758117675781, 532.0671997070312, 1.0, 420.5503234863281, 531.5371704101562, 1.0, 481.42608642578125, 531.1044311523438, 1.0, 543.839111328125, 530.6103515625, 1.0, 607.62451171875, 530.2283935546875, 1.0, 673.3075561523438, 530.0203857421875, 1.0, 740.76123046875, 529.9650268554688, 1.0, 810.2972412109375, 529.909912109375, 1.0, 881.607421875, 529.7424926757812, 1.0, 300.5254821777344, 596.6547241210938, 1.0, 358.5280456542969, 597.4444580078125, 1.0, 418.38287353515625, 598.1817016601562, 1.0, 479.7947998046875, 598.6231689453125, 1.0, 542.9674072265625, 599.01416015625, 1.0, 607.6500854492188, 599.5740966796875, 1.0, 674.2088623046875, 600.3502197265625, 1.0, 742.5087280273438, 601.1353759765625, 1.0, 812.768310546875, 602.0096435546875, 1.0, 884.7887573242188, 602.5946655273438, 1.0, 297.9095764160156, 661.8077392578125, 1.0, 356.1599426269531, 663.8680419921875, 1.0, 416.4646911621094, 665.637451171875, 1.0, 478.39141845703125, 667.3773803710938, 1.0, 542.154296875, 668.9541015625, 1.0, 607.615234375, 670.648193359375, 1.0, 675.0635986328125, 672.2944946289062, 1.0, 744.2528686523438, 673.86083984375, 1.0, 815.2215576171875, 675.5029296875, 1.0, 887.8229370117188, 676.73583984375, 1.0, 378.465087890625, 57.001129150390625, 1.0, 439.7374267578125, 57.915653228759766, 1.0, 501.6805114746094, 58.982093811035156, 1.0, 563.55029296875, 60.054813385009766, 1.0, 625.7904663085938, 61.22673797607422, 1.0, 688.1730346679688, 62.28855514526367, 1.0, 750.6768798828125, 63.36144256591797, 1.0, 813.330810546875, 64.43647003173828, 1.0, 875.853271484375, 65.59242248535156, 1.0, 938.768310546875, 67.0790786743164, 1.0, 372.51654052734375, 114.22237396240234, 1.0, 434.92791748046875, 115.40949249267578, 1.0, 497.3710632324219, 116.7081527709961, 1.0, 560.1581420898438, 117.94742584228516, 1.0, 622.7385864257812, 119.10575103759766, 1.0, 685.7770385742188, 120.27112579345703, 1.0, 748.8231811523438, 121.35891723632812, 1.0, 812.3046264648438, 122.47527313232422, 1.0, 875.7210693359375, 123.6375961303711, 1.0, 939.2503662109375, 125.04823303222656, 1.0, 366.7325744628906, 172.83035278320312, 1.0, 429.8252258300781, 174.11473083496094, 1.0, 493.0048522949219, 175.54608154296875, 1.0, 556.2505493164062, 176.83944702148438, 1.0, 619.656494140625, 178.1894073486328, 1.0, 683.0997314453125, 179.41807556152344, 1.0, 747.063232421875, 180.5758514404297, 1.0, 811.1700439453125, 181.67001342773438, 1.0, 875.2700805664062, 183.0026092529297, 1.0, 939.62451171875, 184.34329223632812, 1.0, 360.91943359375, 232.65328979492188, 1.0, 424.7551574707031, 234.1422882080078, 1.0, 488.690673828125, 235.55262756347656, 1.0, 552.6468505859375, 237.11856079101562, 1.0, 616.4877319335938, 238.4735565185547, 1.0, 680.6284790039062, 239.8220672607422, 1.0, 745.0250854492188, 241.07545471191406, 1.0, 809.8109741210938, 242.35218811035156, 1.0, 874.735107421875, 243.6315460205078, 1.0, 939.779052734375, 245.1269989013672, 1.0, 354.84906005859375, 293.89300537109375, 1.0, 419.4819641113281, 295.4104309082031, 1.0, 484.0982360839844, 296.9191589355469, 1.0, 548.6471557617188, 298.42633056640625, 1.0, 613.1552124023438, 299.8877258300781, 1.0, 677.9219970703125, 301.4004821777344, 1.0, 742.8773193359375, 302.7622375488281, 1.0, 808.5167846679688, 304.28369140625, 1.0, 874.1767578125, 305.69744873046875, 1.0, 939.90283203125, 307.32666015625, 1.0, 348.5307312011719, 356.2511291503906, 1.0, 413.9244689941406, 357.72161865234375, 1.0, 479.16107177734375, 359.2024230957031, 1.0, 544.6475830078125, 360.6495361328125, 1.0, 609.762451171875, 362.2255859375, 1.0, 675.2539672851562, 363.8155517578125, 1.0, 740.7491455078125, 365.4743957519531, 1.0, 807.0704345703125, 367.1233215332031, 1.0, 873.5164794921875, 368.88397216796875, 1.0, 940.0442504882812, 370.4865417480469, 1.0, 342.0419006347656, 420.2398986816406, 1.0, 408.1524963378906, 421.7060241699219, 1.0, 474.397216796875, 423.22271728515625, 1.0, 540.2288818359375, 424.6910705566406, 1.0, 606.1812744140625, 426.2890319824219, 1.0, 672.3690795898438, 428.0564270019531, 1.0, 738.7186889648438, 429.923828125, 1.0, 805.6141967773438, 431.7773742675781, 1.0, 872.865234375, 433.6591796875, 1.0, 940.0113525390625, 435.4424743652344, 1.0, 335.29248046875, 485.6611022949219, 1.0, 402.1054382324219, 487.356201171875, 1.0, 468.79644775390625, 488.724853515625, 1.0, 535.7547607421875, 490.36767578125, 1.0, 602.4842529296875, 492.0202941894531, 1.0, 669.464111328125, 493.89154052734375, 1.0, 736.6703491210938, 495.8726806640625, 1.0, 804.3663330078125, 497.90667724609375, 1.0, 872.031005859375, 499.9320068359375, 1.0, 939.7915649414062, 501.6715087890625, 1.0, 328.4486083984375, 552.74755859375, 1.0, 395.7776794433594, 554.4262084960938, 1.0, 463.3951110839844, 556.2185668945312, 1.0, 530.9837036132812, 557.7780151367188, 1.0, 598.6622314453125, 559.557373046875, 1.0, 666.5797119140625, 561.5191040039062, 1.0, 734.47998046875, 563.4912719726562, 1.0, 802.932373046875, 565.6504516601562, 1.0, 871.0738525390625, 567.4887084960938, 1.0, 939.423095703125, 569.2151489257812, 1.0, 321.9202575683594, 620.9102172851562, 1.0, 389.6318359375, 623.1414184570312, 1.0, 457.95953369140625, 624.95947265625, 1.0, 526.1773681640625, 626.9290161132812, 1.0, 594.6915283203125, 628.7430419921875, 1.0, 663.4525756835938, 630.7417602539062, 1.0, 732.1998291015625, 632.6895141601562, 1.0, 801.1055297851562, 634.6915283203125, 1.0, 869.89501953125, 636.412841796875, 1.0, 938.6876831054688, 637.7894897460938, 1.0, 519.16748046875, 93.62028503417969, 1.0, 574.7826538085938, 88.93148040771484, 1.0, 629.8538818359375, 84.26428985595703, 1.0, 684.1957397460938, 79.56689453125, 1.0, 737.7615356445312, 74.99873352050781, 1.0, 790.6939086914062, 70.4330825805664, 1.0, 842.91796875, 66.00582122802734, 1.0, 894.5079345703125, 61.77931213378906, 1.0, 944.9456787109375, 57.91765213012695, 1.0, 994.6080932617188, 54.19076919555664, 1.0, 525.55908203125, 148.74522399902344, 1.0, 581.4515380859375, 143.67611694335938, 1.0, 636.5652465820312, 138.75767517089844, 1.0, 691.0758056640625, 133.6571502685547, 1.0, 744.8370971679688, 128.7149200439453, 1.0, 798.10400390625, 123.71295166015625, 1.0, 850.5764770507812, 119.0313491821289, 1.0, 902.2908325195312, 114.36547088623047, 1.0, 953.097900390625, 110.02143859863281, 1.0, 1003.0641479492188, 105.80052947998047, 1.0, 532.0679931640625, 204.41958618164062, 1.0, 588.0186157226562, 198.9922332763672, 1.0, 643.337646484375, 193.6031951904297, 1.0, 697.91943359375, 188.34996032714844, 1.0, 751.9174194335938, 183.05189514160156, 1.0, 805.3483276367188, 177.6834716796875, 1.0, 858.0945434570312, 172.5659637451172, 1.0, 910.0762939453125, 167.5263671875, 1.0, 961.168701171875, 162.77854919433594, 1.0, 1011.33935546875, 158.1704559326172, 1.0, 538.4884643554688, 260.2631530761719, 1.0, 594.6072387695312, 254.5098114013672, 1.0, 649.9788818359375, 248.8772735595703, 1.0, 704.7655639648438, 243.1958770751953, 1.0, 759.0015869140625, 237.56365966796875, 1.0, 812.5706787109375, 231.9683380126953, 1.0, 865.5604858398438, 226.5260009765625, 1.0, 917.7230224609375, 221.1827392578125, 1.0, 969.2611083984375, 216.01318359375, 1.0, 1019.5416259765625, 210.89227294921875, 1.0, 544.8151245117188, 316.57647705078125, 1.0, 601.0977172851562, 310.5085754394531, 1.0, 656.7168579101562, 304.49749755859375, 1.0, 711.6100463867188, 298.5247497558594, 1.0, 766.032470703125, 292.6111755371094, 1.0, 819.837646484375, 286.7621765136719, 1.0, 873.1475830078125, 280.99188232421875, 1.0, 925.5428466796875, 275.34735107421875, 1.0, 977.0139770507812, 269.74176025390625, 1.0, 1027.72607421875, 264.3265380859375, 1.0, 551.1632080078125, 372.9787292480469, 1.0, 607.6362915039062, 366.5303039550781, 1.0, 663.4371337890625, 360.2212219238281, 1.0, 718.4967651367188, 353.98052978515625, 1.0, 773.21875, 347.7217102050781, 1.0, 827.26513671875, 341.6470642089844, 1.0, 880.6705322265625, 335.54974365234375, 1.0, 933.3128051757812, 329.5635986328125, 1.0, 985.103759765625, 323.6637268066406, 1.0, 1035.6781005859375, 317.8499755859375, 1.0, 557.4356689453125, 430.3631591796875, 1.0, 614.1906127929688, 423.43701171875, 1.0, 670.2207641601562, 416.7106018066406, 1.0, 725.569580078125, 410.2345275878906, 1.0, 780.4812622070312, 403.7066955566406, 1.0, 834.7042846679688, 397.3813171386719, 1.0, 888.3220825195312, 390.9146423339844, 1.0, 941.1286010742188, 384.6217346191406, 1.0, 993.025634765625, 378.3781433105469, 1.0, 1043.757080078125, 372.1543273925781, 1.0, 563.776123046875, 488.318115234375, 1.0, 620.77099609375, 480.97064208984375, 1.0, 677.1586303710938, 473.9504089355469, 1.0, 732.7789306640625, 467.0420837402344, 1.0, 787.969482421875, 460.2280578613281, 1.0, 842.3895263671875, 453.46929931640625, 1.0, 896.1296997070312, 446.7735595703125, 1.0, 948.91552734375, 440.1026916503906, 1.0, 1000.9500732421875, 433.36627197265625, 1.0, 1051.6719970703125, 426.6360168457031, 1.0, 570.2349243164062, 547.0936889648438, 1.0, 627.4757080078125, 539.3839111328125, 1.0, 684.179443359375, 531.8663330078125, 1.0, 740.1013793945312, 524.562255859375, 1.0, 795.3504638671875, 517.37841796875, 1.0, 850.0344848632812, 510.2507629394531, 1.0, 903.80712890625, 503.0784912109375, 1.0, 956.8238525390625, 495.8673095703125, 1.0, 1008.625, 488.7288818359375, 1.0, 1059.532958984375, 481.4943542480469, 1.0, 576.57958984375, 606.6893920898438, 1.0, 634.33447265625, 598.5361938476562, 1.0, 691.327392578125, 590.5723266601562, 1.0, 747.4421997070312, 582.8251342773438, 1.0, 802.9398193359375, 575.0696411132812, 1.0, 857.6918334960938, 567.4619750976562, 1.0, 911.6534423828125, 559.7743530273438, 1.0, 964.5430908203125, 552.1608276367188, 1.0, 1016.4598388671875, 544.408935546875, 1.0, 1067.234619140625, 536.625, 1.0, 490.34716796875, 96.29207611083984, 1.0, 546.2904052734375, 92.8631820678711, 1.0, 601.4609985351562, 89.41773986816406, 1.0, 655.76220703125, 86.02657318115234, 1.0, 709.4334106445312, 82.58554077148438, 1.0, 762.3419799804688, 79.24610900878906, 1.0, 814.4983520507812, 75.96338653564453, 1.0, 865.6968383789062, 72.88004302978516, 1.0, 916.1920166015625, 69.9590072631836, 1.0, 965.56591796875, 67.286376953125, 1.0, 495.66583251953125, 151.64608764648438, 1.0, 551.8389282226562, 147.7886505126953, 1.0, 607.24462890625, 144.1082763671875, 1.0, 661.6527099609375, 140.14913940429688, 1.0, 715.4974975585938, 136.3860321044922, 1.0, 768.5609741210938, 132.53729248046875, 1.0, 820.8417358398438, 128.78330993652344, 1.0, 872.4808349609375, 125.28120422363281, 1.0, 923.1699829101562, 121.77806091308594, 1.0, 972.8283081054688, 118.66397094726562, 1.0, 501.22662353515625, 207.47369384765625, 1.0, 557.4776000976562, 203.3170928955078, 1.0, 612.9407348632812, 199.0670623779297, 1.0, 667.5462646484375, 194.75332641601562, 1.0, 721.5272827148438, 190.58383178710938, 1.0, 774.7156982421875, 186.37232971191406, 1.0, 827.4053344726562, 182.28399658203125, 1.0, 879.1744384765625, 178.20774841308594, 1.0, 930.06591796875, 174.42642211914062, 1.0, 980.163818359375, 170.72787475585938, 1.0, 506.6458435058594, 263.59881591796875, 1.0, 563.1648559570312, 258.9722900390625, 1.0, 618.6617431640625, 254.42051696777344, 1.0, 673.502197265625, 249.66131591796875, 1.0, 727.5960083007812, 245.10845947265625, 1.0, 781.0060424804688, 240.55638122558594, 1.0, 833.7556762695312, 236.0731201171875, 1.0, 885.7996826171875, 231.57521057128906, 1.0, 937.110107421875, 227.39012145996094, 1.0, 987.2935180664062, 223.21023559570312, 1.0, 512.21337890625, 320.3374328613281, 1.0, 568.7257080078125, 315.1099548339844, 1.0, 624.5435180664062, 310.1148986816406, 1.0, 679.44970703125, 305.0903015136719, 1.0, 733.6561889648438, 300.1178894042969, 1.0, 787.3558349609375, 295.19317626953125, 1.0, 840.3930053710938, 290.3284606933594, 1.0, 892.6060791015625, 285.54376220703125, 1.0, 943.919921875, 280.8370056152344, 1.0, 994.483642578125, 276.3826904296875, 1.0, 517.5535888671875, 377.0765380859375, 1.0, 574.4098510742188, 371.42889404296875, 1.0, 630.3234252929688, 365.8891906738281, 1.0, 685.4207763671875, 360.49383544921875, 1.0, 739.9614868164062, 355.23968505859375, 1.0, 793.7755126953125, 349.8798522949219, 1.0, 847.0065307617188, 344.7854919433594, 1.0, 899.4779663085938, 339.64312744140625, 1.0, 951.0897216796875, 334.58673095703125, 1.0, 1001.5846557617188, 329.5758972167969, 1.0, 522.939453125, 434.6122741699219, 1.0, 580.0432739257812, 428.55987548828125, 1.0, 636.2876586914062, 422.56658935546875, 1.0, 691.58203125, 416.7544860839844, 1.0, 746.3440551757812, 411.1166076660156, 1.0, 800.39501953125, 405.53338623046875, 1.0, 853.7587280273438, 400.0298156738281, 1.0, 906.44189453125, 394.49688720703125, 1.0, 958.044921875, 389.11016845703125, 1.0, 1008.7799682617188, 383.623779296875, 1.0, 528.3798217773438, 492.9586181640625, 1.0, 585.722412109375, 486.349365234375, 1.0, 642.2008666992188, 479.900634765625, 1.0, 697.87939453125, 473.6451110839844, 1.0, 752.8001098632812, 467.6208190917969, 1.0, 807.1969604492188, 461.6029052734375, 1.0, 860.6444702148438, 455.7152404785156, 1.0, 913.3908081054688, 449.8269958496094, 1.0, 965.22265625, 443.91510009765625, 1.0, 1015.9330444335938, 438.0703125, 1.0, 533.6896362304688, 552.1461181640625, 1.0, 591.45654296875, 544.9566040039062, 1.0, 648.248046875, 538.078125, 1.0, 704.2498779296875, 531.4215087890625, 1.0, 759.3956298828125, 524.8407592773438, 1.0, 813.8657836914062, 518.4159545898438, 1.0, 867.5840454101562, 512.0728759765625, 1.0, 920.4691162109375, 505.6249694824219, 1.0, 972.2495727539062, 499.3266906738281, 1.0, 1022.866455078125, 492.7518615722656, 1.0, 539.298095703125, 611.9653930664062, 1.0, 597.2537231445312, 604.3936767578125, 1.0, 654.425048828125, 596.9896240234375, 1.0, 710.5931396484375, 589.7608032226562, 1.0, 766.129638671875, 582.7547607421875, 1.0, 820.63671875, 575.7797241210938, 1.0, 874.4945678710938, 568.8304443359375, 1.0, 927.385009765625, 561.901611328125, 1.0, 979.1760864257812, 554.9586181640625, 1.0, 1029.6802978515625, 547.88134765625, 1.0, 408.9859924316406, 148.4906005859375, 1.0, 465.0445861816406, 146.34719848632812, 1.0, 519.9292602539062, 144.2771453857422, 1.0, 573.6900634765625, 142.12460327148438, 1.0, 626.5900268554688, 139.9720916748047, 1.0, 678.357666015625, 137.7738800048828, 1.0, 729.3202514648438, 135.64404296875, 1.0, 779.250732421875, 133.489013671875, 1.0, 828.3712768554688, 131.47946166992188, 1.0, 876.4783325195312, 129.53009033203125, 1.0, 413.2082214355469, 203.1329803466797, 1.0, 469.51812744140625, 200.41717529296875, 1.0, 524.6880493164062, 197.73704528808594, 1.0, 578.7056274414062, 195.14146423339844, 1.0, 631.5485229492188, 192.46827697753906, 1.0, 683.556396484375, 189.8240203857422, 1.0, 734.6679077148438, 187.24169921875, 1.0, 784.9235229492188, 184.50828552246094, 1.0, 834.349365234375, 182.0033721923828, 1.0, 882.6597290039062, 179.55491638183594, 1.0, 417.54510498046875, 258.3242492675781, 1.0, 474.1433410644531, 255.00892639160156, 1.0, 529.5242309570312, 251.83058166503906, 1.0, 583.6493530273438, 248.5977020263672, 1.0, 636.7054443359375, 245.57130432128906, 1.0, 688.8997192382812, 242.32525634765625, 1.0, 740.2122802734375, 239.2388153076172, 1.0, 790.624267578125, 236.11062622070312, 1.0, 840.304931640625, 233.07550048828125, 1.0, 888.8628540039062, 230.190185546875, 1.0, 421.8534240722656, 313.962646484375, 1.0, 478.6865539550781, 310.1337890625, 1.0, 534.3497924804688, 306.3471374511719, 1.0, 588.63232421875, 302.5950012207031, 1.0, 641.978271484375, 298.9405517578125, 1.0, 694.3540649414062, 295.3395690917969, 1.0, 745.7799682617188, 291.67767333984375, 1.0, 796.4588012695312, 288.1910095214844, 1.0, 846.3081665039062, 284.72210693359375, 1.0, 895.17041015625, 281.3254089355469, 1.0, 426.2601013183594, 370.3803405761719, 1.0, 483.3347473144531, 365.7680358886719, 1.0, 539.182373046875, 361.3965148925781, 1.0, 593.7369995117188, 357.0960693359375, 1.0, 647.3087158203125, 352.8358154296875, 1.0, 699.7479858398438, 348.7154846191406, 1.0, 751.54736328125, 344.70538330078125, 1.0, 802.4545288085938, 340.7544250488281, 1.0, 852.47607421875, 336.82244873046875, 1.0, 901.5444946289062, 333.1008605957031, 1.0, 430.3876953125, 427.1231689453125, 1.0, 487.83856201171875, 421.7693786621094, 1.0, 543.9857788085938, 416.7557373046875, 1.0, 598.8189086914062, 411.8646240234375, 1.0, 652.6177978515625, 407.2142028808594, 1.0, 705.4716796875, 402.53155517578125, 1.0, 757.4202270507812, 398.1573791503906, 1.0, 808.5335693359375, 393.6229248046875, 1.0, 858.7743530273438, 389.33990478515625, 1.0, 908.0394287109375, 385.047607421875, 1.0, 434.6657409667969, 484.8711853027344, 1.0, 492.38494873046875, 478.9608154296875, 1.0, 548.7778930664062, 473.2344970703125, 1.0, 603.968017578125, 467.7303466796875, 1.0, 658.1595458984375, 462.419189453125, 1.0, 711.2960815429688, 457.3612060546875, 1.0, 763.4664916992188, 452.3579406738281, 1.0, 814.7243041992188, 447.44525146484375, 1.0, 865.2742309570312, 442.5462951660156, 1.0, 914.7037963867188, 437.7763366699219, 1.0, 438.9615478515625, 543.382080078125, 1.0, 496.9786682128906, 536.8228149414062, 1.0, 553.71337890625, 530.46240234375, 1.0, 609.3438720703125, 524.4044189453125, 1.0, 663.67578125, 518.4968872070312, 1.0, 717.1775512695312, 512.7937622070312, 1.0, 769.6025390625, 507.3163757324219, 1.0, 821.1550903320312, 501.7960510253906, 1.0, 871.7033081054688, 496.47784423828125, 1.0, 921.360107421875, 491.0562438964844, 1.0, 443.3829040527344, 602.6447143554688, 1.0, 501.588623046875, 595.6654663085938, 1.0, 558.650390625, 588.6921997070312, 1.0, 614.531982421875, 581.8346557617188, 1.0, 669.382080078125, 575.4103393554688, 1.0, 723.096435546875, 569.064208984375, 1.0, 775.7579956054688, 562.8973999023438, 1.0, 827.5789184570312, 556.8823852539062, 1.0, 878.3023071289062, 550.8773193359375, 1.0, 927.9144897460938, 544.8052368164062, 1.0, 447.9679260253906, 662.498046875, 1.0, 506.4550476074219, 654.9425659179688, 1.0, 563.8208618164062, 647.5545654296875, 1.0, 620.0187377929688, 640.1443481445312, 1.0, 675.2328491210938, 633.0189208984375, 1.0, 729.2285766601562, 626.0418090820312, 1.0, 782.1732788085938, 619.1790161132812, 1.0, 833.994140625, 612.4668579101562, 1.0, 884.7996826171875, 605.7684326171875, 1.0, 934.4850463867188, 599.0611572265625, 1.0, 332.29376220703125, 162.1576690673828, 1.0, 389.0871276855469, 158.42027282714844, 1.0, 444.6981506347656, 154.75497436523438, 1.0, 499.1081237792969, 151.4425811767578, 1.0, 552.3046875, 148.07594299316406, 1.0, 604.0968017578125, 144.68565368652344, 1.0, 655.15185546875, 141.33116149902344, 1.0, 704.911865234375, 137.97320556640625, 1.0, 753.8366088867188, 134.6577911376953, 1.0, 801.7352905273438, 131.4514617919922, 1.0, 338.32659912109375, 216.74691772460938, 1.0, 395.4329833984375, 212.5023651123047, 1.0, 451.3612060546875, 208.3478546142578, 1.0, 505.9057312011719, 204.29815673828125, 1.0, 559.2711181640625, 200.30770874023438, 1.0, 611.3541259765625, 196.35662841796875, 1.0, 662.3911743164062, 192.44363403320312, 1.0, 712.3453369140625, 188.5019073486328, 1.0, 761.4170532226562, 184.6604766845703, 1.0, 809.5336303710938, 180.8437957763672, 1.0, 344.41778564453125, 272.0670471191406, 1.0, 401.82452392578125, 267.123291015625, 1.0, 458.0636291503906, 262.3653259277344, 1.0, 512.7046508789062, 257.5728454589844, 1.0, 566.2651977539062, 253.04022216796875, 1.0, 618.4191284179688, 248.46810913085938, 1.0, 669.559814453125, 243.9961700439453, 1.0, 719.7218627929688, 239.48580932617188, 1.0, 769.0194702148438, 235.15548706054688, 1.0, 817.328125, 230.80873107910156, 1.0, 350.5445556640625, 327.9360656738281, 1.0, 408.3791198730469, 322.3230285644531, 1.0, 464.703369140625, 316.7724914550781, 1.0, 519.6876831054688, 311.38006591796875, 1.0, 573.3087158203125, 306.2153625488281, 1.0, 625.6758422851562, 301.0238952636719, 1.0, 677.0167846679688, 295.915771484375, 1.0, 727.3431396484375, 290.9286804199219, 1.0, 776.8033447265625, 286.0694885253906, 1.0, 825.3002319335938, 281.2538146972656, 1.0, 356.7775573730469, 384.5361633300781, 1.0, 414.7858581542969, 378.056884765625, 1.0, 471.46051025390625, 371.8546447753906, 1.0, 526.55078125, 365.6922302246094, 1.0, 580.4285278320312, 359.8642272949219, 1.0, 632.9385375976562, 354.0089416503906, 1.0, 684.4721069335938, 348.4309387207031, 1.0, 734.953369140625, 342.8897705078125, 1.0, 784.619384765625, 337.5118103027344, 1.0, 833.4168090820312, 332.26373291015625, 1.0, 363.06072998046875, 441.50042724609375, 1.0, 421.3306884765625, 434.3416442871094, 1.0, 478.18060302734375, 427.3431091308594, 1.0, 533.5413818359375, 420.48480224609375, 1.0, 587.6109008789062, 413.8133850097656, 1.0, 640.45068359375, 407.43548583984375, 1.0, 692.1524658203125, 401.3316345214844, 1.0, 742.8959350585938, 395.2458190917969, 1.0, 792.6741943359375, 389.3745422363281, 1.0, 841.593017578125, 383.4541320800781, 1.0, 369.3082275390625, 499.5304260253906, 1.0, 427.68597412109375, 491.5911560058594, 1.0, 484.84930419921875, 483.7539367675781, 1.0, 540.5659790039062, 476.2049255371094, 1.0, 594.8480834960938, 468.88079833984375, 1.0, 647.9157104492188, 461.83929443359375, 1.0, 699.8860473632812, 455.0499572753906, 1.0, 750.8968505859375, 448.4433288574219, 1.0, 800.908447265625, 441.93310546875, 1.0, 850.03125, 435.6055908203125, 1.0, 375.6125183105469, 558.2572631835938, 1.0, 434.36114501953125, 549.5753784179688, 1.0, 491.651123046875, 541.0609741210938, 1.0, 547.64697265625, 532.7265014648438, 1.0, 602.2927856445312, 524.7146606445312, 1.0, 655.627685546875, 517.0374755859375, 1.0, 707.9227905273438, 509.64678955078125, 1.0, 759.1504516601562, 502.36480712890625, 1.0, 809.36474609375, 495.2726135253906, 1.0, 858.58251953125, 488.3118896484375, 1.0, 382.25335693359375, 617.5197143554688, 1.0, 441.0362243652344, 608.3428344726562, 1.0, 498.6236572265625, 599.205810546875, 1.0, 554.7423095703125, 590.2539672851562, 1.0, 609.7274169921875, 581.5679321289062, 1.0, 663.4100341796875, 573.0657348632812, 1.0, 715.93310546875, 564.9736328125, 1.0, 767.424560546875, 557.0059204101562, 1.0, 817.8005981445312, 549.2647705078125, 1.0, 867.1221313476562, 541.6105346679688, 1.0, 389.16680908203125, 677.3467407226562, 1.0, 447.98626708984375, 667.59326171875, 1.0, 505.6817932128906, 657.927734375, 1.0, 562.2506713867188, 648.317626953125, 1.0, 617.4532470703125, 638.9832153320312, 1.0, 671.4320068359375, 629.87841796875, 1.0, 724.2230224609375, 620.982177734375, 1.0, 775.7451782226562, 612.308837890625, 1.0, 826.3930053710938, 603.7559204101562, 1.0, 875.6948852539062, 595.4295654296875, 1.0, 245.41697692871094, 101.5169448852539, 1.0, 304.0634460449219, 97.86927795410156, 1.0, 361.4407653808594, 94.49613952636719, 1.0, 417.6114501953125, 91.45293426513672, 1.0, 472.3143310546875, 88.47545623779297, 1.0, 525.5416259765625, 85.67098999023438, 1.0, 577.4031372070312, 82.85209655761719, 1.0, 628.0346069335938, 80.18404388427734, 1.0, 677.3152465820312, 77.42294311523438, 1.0, 725.38720703125, 74.62777709960938, 1.0, 250.3047637939453, 156.77996826171875, 1.0, 309.33685302734375, 152.6044921875, 1.0, 367.21636962890625, 148.6468048095703, 1.0, 423.5400085449219, 144.8985595703125, 1.0, 478.4013671875, 141.33509826660156, 1.0, 531.7421875, 137.8196258544922, 1.0, 583.6470947265625, 134.4689178466797, 1.0, 634.37939453125, 131.026611328125, 1.0, 683.6036376953125, 127.65807342529297, 1.0, 731.858154296875, 124.32806396484375, 1.0, 255.48886108398438, 212.87753295898438, 1.0, 314.9955139160156, 207.9198455810547, 1.0, 373.08111572265625, 203.3065643310547, 1.0, 429.5966796875, 198.93113708496094, 1.0, 484.59027099609375, 194.61029052734375, 1.0, 538.1148681640625, 190.48529052734375, 1.0, 589.9989013671875, 186.3861541748047, 1.0, 640.6900024414062, 182.2975616455078, 1.0, 690.1117553710938, 178.27447509765625, 1.0, 738.36572265625, 174.3310546875, 1.0, 260.8249816894531, 269.4991149902344, 1.0, 320.6306457519531, 263.7239074707031, 1.0, 379.0572509765625, 258.45123291015625, 1.0, 435.7618408203125, 253.23394775390625, 1.0, 490.857666015625, 248.1925811767578, 1.0, 544.4253540039062, 243.2440643310547, 1.0, 596.36474609375, 238.4802703857422, 1.0, 647.142578125, 233.62831115722656, 1.0, 696.5326538085938, 229.02420043945312, 1.0, 745.0372924804688, 224.37039184570312, 1.0, 266.41705322265625, 326.6218566894531, 1.0, 326.4515075683594, 320.18927001953125, 1.0, 385.05914306640625, 313.8342590332031, 1.0, 441.96087646484375, 307.8795471191406, 1.0, 497.2034606933594, 302.03851318359375, 1.0, 550.7493286132812, 296.37322998046875, 1.0, 602.8049926757812, 290.8485412597656, 1.0, 653.5363159179688, 285.42169189453125, 1.0, 703.0283203125, 280.0966491699219, 1.0, 751.4583740234375, 274.81195068359375, 1.0, 272.0150451660156, 384.04632568359375, 1.0, 332.3203430175781, 376.6534729003906, 1.0, 391.0711669921875, 369.5176696777344, 1.0, 448.12750244140625, 362.6313171386719, 1.0, 503.4554138183594, 355.8456726074219, 1.0, 557.1515502929688, 349.52386474609375, 1.0, 609.2803955078125, 343.23974609375, 1.0, 660.185546875, 337.10321044921875, 1.0, 709.6223754882812, 331.202392578125, 1.0, 758.1314697265625, 325.3569030761719, 1.0, 277.8290100097656, 442.18701171875, 1.0, 338.30169677734375, 433.8746337890625, 1.0, 397.11663818359375, 425.8593444824219, 1.0, 454.2843933105469, 418.0559997558594, 1.0, 509.74639892578125, 410.5629577636719, 1.0, 563.5960083007812, 403.284423828125, 1.0, 615.7805786132812, 396.275390625, 1.0, 666.7603759765625, 389.4726867675781, 1.0, 716.421142578125, 382.7654724121094, 1.0, 765.009521484375, 376.4462890625, 1.0, 283.77197265625, 500.6210021972656, 1.0, 344.23907470703125, 491.60809326171875, 1.0, 403.13507080078125, 482.7079772949219, 1.0, 460.47625732421875, 474.0390930175781, 1.0, 516.0640869140625, 465.61077880859375, 1.0, 570.1381225585938, 457.5199890136719, 1.0, 622.451171875, 449.6627502441406, 1.0, 673.5859985351562, 442.18328857421875, 1.0, 723.3995361328125, 434.8741149902344, 1.0, 772.0838623046875, 427.8557434082031, 1.0, 289.8763122558594, 559.6044311523438, 1.0, 350.264892578125, 549.8583374023438, 1.0, 409.3790588378906, 540.0900268554688, 1.0, 466.7368469238281, 530.5376586914062, 1.0, 522.4981689453125, 521.3162231445312, 1.0, 576.6012573242188, 512.3045654296875, 1.0, 629.1752319335938, 503.7060546875, 1.0, 680.482177734375, 495.4171447753906, 1.0, 730.3895874023438, 487.4586486816406, 1.0, 779.2575073242188, 479.67572021484375, 1.0, 296.3660888671875, 618.715087890625, 1.0, 356.5509033203125, 608.3836059570312, 1.0, 415.65594482421875, 597.9505004882812, 1.0, 473.18798828125, 587.70751953125, 1.0, 529.0283813476562, 577.4996337890625, 1.0, 583.3015747070312, 567.7410278320312, 1.0, 636.0734252929688, 558.3509521484375, 1.0, 687.4938354492188, 549.3115234375, 1.0, 737.58203125, 540.503662109375, 1.0, 786.4790649414062, 532.07958984375, 1.0, 154.8513641357422, 96.22590637207031, 1.0, 214.9082489013672, 92.04570007324219, 1.0, 273.67816162109375, 88.0749282836914, 1.0, 331.118408203125, 84.41304016113281, 1.0, 387.2597351074219, 81.09960174560547, 1.0, 441.79022216796875, 78.03203582763672, 1.0, 494.9625244140625, 75.07952117919922, 1.0, 546.6298217773438, 72.20512390136719, 1.0, 596.7982788085938, 69.3605728149414, 1.0, 645.6270751953125, 66.57234954833984, 1.0, 160.9468536376953, 152.633056640625, 1.0, 221.25552368164062, 147.6619873046875, 1.0, 280.35833740234375, 143.16439819335938, 1.0, 338.1943359375, 138.78018188476562, 1.0, 394.5277404785156, 134.77969360351562, 1.0, 449.3500061035156, 131.0291290283203, 1.0, 502.6031494140625, 127.3664321899414, 1.0, 554.2576293945312, 123.71391296386719, 1.0, 604.4185791015625, 120.31507110595703, 1.0, 653.2947387695312, 116.6742172241211, 1.0, 167.22056579589844, 209.8483428955078, 1.0, 227.73348999023438, 204.15057373046875, 1.0, 287.2880859375, 198.79881286621094, 1.0, 345.3963317871094, 193.7012481689453, 1.0, 402.02337646484375, 189.14059448242188, 1.0, 456.84417724609375, 184.5176239013672, 1.0, 510.1914978027344, 180.1079864501953, 1.0, 561.7569580078125, 175.72982788085938, 1.0, 612.0396118164062, 171.4741668701172, 1.0, 660.8103637695312, 167.31613159179688, 1.0, 173.66046142578125, 267.5475158691406, 1.0, 234.5940704345703, 261.0213623046875, 1.0, 294.3973083496094, 255.02703857421875, 1.0, 352.8369445800781, 249.19703674316406, 1.0, 409.49468994140625, 243.61041259765625, 1.0, 464.5301818847656, 238.18788146972656, 1.0, 517.768798828125, 232.98269653320312, 1.0, 569.4658813476562, 227.8670196533203, 1.0, 619.659912109375, 222.90292358398438, 1.0, 668.5284423828125, 217.9039764404297, 1.0, 180.3943328857422, 325.888427734375, 1.0, 241.6314697265625, 318.58721923828125, 1.0, 301.63653564453125, 311.6776123046875, 1.0, 360.25860595703125, 304.9600524902344, 1.0, 417.1571044921875, 298.5251159667969, 1.0, 472.19598388671875, 292.2904968261719, 1.0, 525.4945068359375, 286.2752990722656, 1.0, 577.2166748046875, 280.3018798828125, 1.0, 627.415771484375, 274.53790283203125, 1.0, 676.2806396484375, 268.8661804199219, 1.0, 187.3607635498047, 384.46820068359375, 1.0, 248.72129821777344, 376.4668273925781, 1.0, 308.93560791015625, 368.5448303222656, 1.0, 367.7198181152344, 360.8724060058594, 1.0, 424.57269287109375, 353.4772644042969, 1.0, 479.77685546875, 346.3373107910156, 1.0, 533.1370849609375, 339.3916320800781, 1.0, 584.8621826171875, 332.6643981933594, 1.0, 635.1318969726562, 326.2485046386719, 1.0, 684.013671875, 319.8511657714844, 1.0, 194.5005645751953, 443.80072021484375, 1.0, 255.94786071777344, 434.8321838378906, 1.0, 316.32232666015625, 426.10321044921875, 1.0, 375.126708984375, 417.4859313964844, 1.0, 432.1950988769531, 409.09820556640625, 1.0, 487.4303283691406, 401.0104064941406, 1.0, 540.818359375, 393.2406005859375, 1.0, 592.5992431640625, 385.64959716796875, 1.0, 642.8926391601562, 378.4451599121094, 1.0, 691.888671875, 371.4166259765625, 1.0, 201.8779296875, 503.5252380371094, 1.0, 263.3529052734375, 493.77496337890625, 1.0, 323.695556640625, 484.156494140625, 1.0, 382.53924560546875, 474.5278015136719, 1.0, 439.6829528808594, 465.27374267578125, 1.0, 495.068359375, 456.1919860839844, 1.0, 548.5145263671875, 447.48992919921875, 1.0, 600.509765625, 439.09747314453125, 1.0, 650.8788452148438, 431.01690673828125, 1.0, 699.9113159179688, 423.2850341796875, 1.0, 209.48988342285156, 563.572998046875, 1.0, 270.9369812011719, 553.1371459960938, 1.0, 331.15032958984375, 542.5828857421875, 1.0, 390.047607421875, 532.1640014648438, 1.0, 447.2674560546875, 521.8336181640625, 1.0, 502.60198974609375, 511.8851623535156, 1.0, 556.3016357421875, 502.33258056640625, 1.0, 608.3716430664062, 493.0391540527344, 1.0, 658.8822021484375, 484.2289123535156, 1.0, 708.0164184570312, 475.6305236816406, 1.0, 217.42636108398438, 623.7631225585938, 1.0, 278.7173767089844, 612.6309204101562, 1.0, 338.908447265625, 601.4273071289062, 1.0, 397.59033203125, 590.2296142578125, 1.0, 454.83013916015625, 579.1099243164062, 1.0, 510.3834533691406, 568.2241821289062, 1.0, 564.1776733398438, 557.7360229492188, 1.0, 616.3117065429688, 547.6784057617188, 1.0, 667.0115356445312, 537.8428955078125, 1.0, 716.3056640625, 528.5759887695312, 1.0, 350.44189453125, 193.44033813476562, 1.0, 404.0443115234375, 178.77560424804688, 1.0, 456.9180908203125, 164.4956512451172, 1.0, 508.7427062988281, 150.48912048339844, 1.0, 559.6422729492188, 136.61135864257812, 1.0, 609.5903930664062, 123.0113754272461, 1.0, 658.8778686523438, 109.4986801147461, 1.0, 707.3175048828125, 96.18341827392578, 1.0, 755.0162353515625, 83.22457885742188, 1.0, 801.782958984375, 70.41735076904297, 1.0, 367.18548583984375, 245.10670471191406, 1.0, 421.0521545410156, 229.9219207763672, 1.0, 473.99969482421875, 215.2066192626953, 1.0, 525.9078979492188, 200.52938842773438, 1.0, 576.814208984375, 186.29296875, 1.0, 626.8849487304688, 172.0141143798828, 1.0, 676.2885131835938, 158.1158905029297, 1.0, 724.73291015625, 144.328125, 1.0, 772.5415649414062, 130.74160766601562, 1.0, 819.5109252929688, 117.48628997802734, 1.0, 384.2202453613281, 297.4275817871094, 1.0, 438.1590881347656, 281.646240234375, 1.0, 491.25311279296875, 266.3531494140625, 1.0, 543.1817016601562, 251.22254943847656, 1.0, 594.2242431640625, 236.40786743164062, 1.0, 644.2709350585938, 221.6959991455078, 1.0, 693.6770629882812, 207.30224609375, 1.0, 742.2833251953125, 192.9865264892578, 1.0, 790.235595703125, 178.9388885498047, 1.0, 837.3770141601562, 165.20242309570312, 1.0, 401.37548828125, 350.13397216796875, 1.0, 455.47137451171875, 333.7608947753906, 1.0, 508.5829162597656, 317.8138122558594, 1.0, 560.5816040039062, 302.1830749511719, 1.0, 611.6107177734375, 286.827392578125, 1.0, 661.785400390625, 271.65875244140625, 1.0, 711.2839965820312, 256.7587890625, 1.0, 760.0750122070312, 241.98106384277344, 1.0, 808.1754760742188, 227.52734375, 1.0, 855.3746337890625, 213.27783203125, 1.0, 418.62139892578125, 403.4963684082031, 1.0, 472.80926513671875, 386.5193786621094, 1.0, 526.173828125, 370.0072326660156, 1.0, 578.1456298828125, 353.6504821777344, 1.0, 629.3338012695312, 337.8392639160156, 1.0, 679.548583984375, 322.1805114746094, 1.0, 729.262451171875, 306.83892822265625, 1.0, 778.08154296875, 291.5730895996094, 1.0, 826.2633056640625, 276.63592529296875, 1.0, 873.624267578125, 261.9410705566406, 1.0, 435.95574951171875, 457.1672058105469, 1.0, 490.3221130371094, 439.48046875, 1.0, 543.602783203125, 422.3153991699219, 1.0, 595.8128051757812, 405.4866638183594, 1.0, 647.1298217773438, 388.9945983886719, 1.0, 697.5455322265625, 372.8756408691406, 1.0, 747.2860717773438, 357.0067443847656, 1.0, 796.350341796875, 341.4396057128906, 1.0, 844.599609375, 326.0652770996094, 1.0, 892.0870361328125, 310.8572692871094, 1.0, 453.4129333496094, 511.7510986328125, 1.0, 508.001708984375, 493.4679260253906, 1.0, 561.3995971679688, 475.62847900390625, 1.0, 613.7691650390625, 458.1873779296875, 1.0, 665.2507934570312, 441.18402099609375, 1.0, 715.8383178710938, 424.4621887207031, 1.0, 765.7620849609375, 408.1820373535156, 1.0, 814.894287109375, 391.97900390625, 1.0, 863.33837890625, 376.2218017578125, 1.0, 910.9147338867188, 360.6727600097656, 1.0, 471.212890625, 567.09326171875, 1.0, 525.8449096679688, 548.2791748046875, 1.0, 579.4979858398438, 529.6439208984375, 1.0, 632.0596313476562, 511.55621337890625, 1.0, 683.6670532226562, 493.9761962890625, 1.0, 734.5200805664062, 476.7957458496094, 1.0, 784.4901123046875, 459.8616027832031, 1.0, 833.812744140625, 443.3150329589844, 1.0, 882.3121337890625, 426.89398193359375, 1.0, 929.8400268554688, 410.8445129394531, 1.0, 489.22357177734375, 623.2312622070312, 1.0, 543.9237060546875, 603.6884155273438, 1.0, 597.7764282226562, 584.6251831054688, 1.0, 650.5239868164062, 565.821044921875, 1.0, 702.42724609375, 547.6836547851562, 1.0, 753.3748779296875, 529.8493041992188, 1.0, 803.5362548828125, 512.3763427734375, 1.0, 852.8867797851562, 495.175048828125, 1.0, 901.4525146484375, 478.2459411621094, 1.0, 949.0247192382812, 461.483642578125, 1.0, 507.5511169433594, 679.7431030273438, 1.0, 562.4273071289062, 659.781982421875, 1.0, 616.439208984375, 640.1920166015625, 1.0, 669.302001953125, 620.9420776367188, 1.0, 721.4304809570312, 602.023681640625, 1.0, 772.5397338867188, 583.5011596679688, 1.0, 822.8370361328125, 565.4212646484375, 1.0, 872.21923828125, 547.5606689453125, 1.0, 920.6912231445312, 529.9751586914062, 1.0, 968.1626586914062, 512.6568603515625, 1.0, 509.9878234863281, 146.28746032714844, 1.0, 561.5039672851562, 142.62374877929688, 1.0, 611.3685302734375, 139.00051879882812, 1.0, 659.4876708984375, 135.51393127441406, 1.0, 706.4364013671875, 132.1426239013672, 1.0, 751.7830810546875, 128.68894958496094, 1.0, 795.98095703125, 125.46705627441406, 1.0, 838.7369995117188, 122.3775863647461, 1.0, 880.3617553710938, 119.42356872558594, 1.0, 920.509033203125, 116.64901733398438, 1.0, 518.7080078125, 198.84617614746094, 1.0, 570.371826171875, 194.3896942138672, 1.0, 620.2301635742188, 189.98716735839844, 1.0, 668.4331665039062, 185.65309143066406, 1.0, 715.3316040039062, 181.4068145751953, 1.0, 760.8388061523438, 177.35626220703125, 1.0, 805.05615234375, 173.4503631591797, 1.0, 847.876220703125, 169.3468780517578, 1.0, 889.6519775390625, 165.71429443359375, 1.0, 929.8849487304688, 162.14700317382812, 1.0, 527.6926879882812, 252.13340759277344, 1.0, 579.30126953125, 246.5877685546875, 1.0, 629.1514282226562, 241.37513732910156, 1.0, 677.4559936523438, 236.27349853515625, 1.0, 724.3257446289062, 231.2409210205078, 1.0, 769.96826171875, 226.3416748046875, 1.0, 814.2369384765625, 221.51071166992188, 1.0, 857.2401733398438, 216.94766235351562, 1.0, 898.93310546875, 212.56039428710938, 1.0, 939.3849487304688, 208.3760223388672, 1.0, 536.5928955078125, 305.5439758300781, 1.0, 588.2764282226562, 299.23858642578125, 1.0, 638.21826171875, 293.1812438964844, 1.0, 686.5547485351562, 287.1555480957031, 1.0, 733.5468139648438, 281.36834716796875, 1.0, 779.13232421875, 275.6343078613281, 1.0, 823.5339965820312, 270.2490234375, 1.0, 866.6104125976562, 264.8834228515625, 1.0, 908.4083251953125, 259.7078857421875, 1.0, 948.763671875, 254.86044311523438, 1.0, 545.6087036132812, 359.5322570800781, 1.0, 597.3394165039062, 352.2901611328125, 1.0, 647.3350219726562, 345.21746826171875, 1.0, 695.7120361328125, 338.47369384765625, 1.0, 742.751220703125, 331.84893798828125, 1.0, 788.5357666015625, 325.5331115722656, 1.0, 833.0228271484375, 319.34283447265625, 1.0, 876.10302734375, 313.2880554199219, 1.0, 917.8965454101562, 307.47674560546875, 1.0, 958.4028930664062, 301.7998352050781, 1.0, 554.5951538085938, 413.67266845703125, 1.0, 606.4417724609375, 405.56243896484375, 1.0, 656.5208740234375, 397.6613464355469, 1.0, 705.0930786132812, 390.102783203125, 1.0, 752.2927856445312, 382.6722717285156, 1.0, 797.9249267578125, 375.5096740722656, 1.0, 842.5927734375, 368.59405517578125, 1.0, 885.6728515625, 361.8285217285156, 1.0, 927.6608276367188, 355.4242248535156, 1.0, 968.0481567382812, 348.92852783203125, 1.0, 563.7101440429688, 468.9696350097656, 1.0, 615.6160888671875, 459.752685546875, 1.0, 665.98095703125, 450.875244140625, 1.0, 714.5765991210938, 442.47906494140625, 1.0, 761.9559936523438, 434.29876708984375, 1.0, 807.7238159179688, 426.4518127441406, 1.0, 852.3119506835938, 418.6781921386719, 1.0, 895.5691528320312, 411.21807861328125, 1.0, 937.4388427734375, 403.8382568359375, 1.0, 977.8219604492188, 396.72503662109375, 1.0, 572.890625, 524.826416015625, 1.0, 625.136962890625, 514.654541015625, 1.0, 675.4885864257812, 504.8011779785156, 1.0, 724.3840942382812, 495.49224853515625, 1.0, 771.6293334960938, 486.5145568847656, 1.0, 817.6499633789062, 477.7162170410156, 1.0, 862.28076171875, 469.2093505859375, 1.0, 905.4004516601562, 460.798828125, 1.0, 947.243408203125, 452.66314697265625, 1.0, 987.5936279296875, 444.7889709472656, 1.0, 582.3925170898438, 581.5654296875, 1.0, 634.591552734375, 570.285400390625, 1.0, 685.156494140625, 559.527587890625, 1.0, 734.118896484375, 549.2720947265625, 1.0, 781.5978393554688, 539.3098754882812, 1.0, 827.5756225585938, 529.637939453125, 1.0, 872.2620239257812, 520.180908203125, 1.0, 915.4258422851562, 511.0383605957031, 1.0, 957.0324096679688, 502.0398254394531, 1.0, 997.352294921875, 493.3297119140625, 1.0, 591.77490234375, 638.8229370117188, 1.0, 644.3529663085938, 626.6267700195312, 1.0, 695.0869750976562, 614.8703002929688, 1.0, 744.1630859375, 603.5232543945312, 1.0, 791.5939331054688, 592.5492553710938, 1.0, 837.6521606445312, 581.9019165039062, 1.0, 882.2328491210938, 571.5614013671875, 1.0, 925.2650756835938, 561.4267578125, 1.0, 966.8970336914062, 551.6200561523438, 1.0, 1006.9534301757812, 541.880126953125, 1.0, 295.2271728515625, 115.81571197509766, 1.0, 350.880615234375, 110.64358520507812, 1.0, 404.67388916015625, 105.87516784667969, 1.0, 456.38092041015625, 101.39505004882812, 1.0, 506.1658020019531, 97.09286499023438, 1.0, 553.8749389648438, 92.88502502441406, 1.0, 600.0656127929688, 88.75048828125, 1.0, 644.3497314453125, 84.86124420166016, 1.0, 687.2799072265625, 81.04218292236328, 1.0, 728.503662109375, 77.4032211303711, 1.0, 305.9842834472656, 170.6928253173828, 1.0, 361.8464050292969, 164.5417022705078, 1.0, 415.5203552246094, 158.71575927734375, 1.0, 467.3119812011719, 153.24624633789062, 1.0, 516.8284912109375, 147.9402313232422, 1.0, 564.5611572265625, 142.736328125, 1.0, 610.4268188476562, 137.82015991210938, 1.0, 654.6829223632812, 133.08042907714844, 1.0, 697.4401245117188, 128.4186248779297, 1.0, 738.7064208984375, 123.64324188232422, 1.0, 317.0920715332031, 226.1259307861328, 1.0, 372.90155029296875, 218.7799072265625, 1.0, 426.6310729980469, 211.9408721923828, 1.0, 478.2164001464844, 205.40594482421875, 1.0, 527.709228515625, 199.16070556640625, 1.0, 575.1786499023438, 192.9607391357422, 1.0, 620.9983520507812, 187.122314453125, 1.0, 665.0426635742188, 181.37557983398438, 1.0, 707.5759887695312, 175.65733337402344, 1.0, 748.7272338867188, 170.3006134033203, 1.0, 328.2019958496094, 281.6414489746094, 1.0, 384.201171875, 273.3199768066406, 1.0, 437.7742614746094, 265.3574523925781, 1.0, 489.292724609375, 257.5925598144531, 1.0, 538.5913696289062, 250.35357666015625, 1.0, 585.9534301757812, 243.24386596679688, 1.0, 631.5188598632812, 236.35464477539062, 1.0, 675.50634765625, 229.62405395507812, 1.0, 717.9397583007812, 223.29067993164062, 1.0, 759.0526733398438, 216.88682556152344, 1.0, 339.4820556640625, 337.686279296875, 1.0, 395.38446044921875, 328.1243591308594, 1.0, 448.92242431640625, 318.91839599609375, 1.0, 500.29974365234375, 310.1174621582031, 1.0, 549.4154663085938, 301.75128173828125, 1.0, 596.632080078125, 293.6039123535156, 1.0, 642.1666259765625, 285.76025390625, 1.0, 685.9683227539062, 278.2789611816406, 1.0, 728.3932495117188, 270.9540100097656, 1.0, 769.3665161132812, 263.76190185546875, 1.0, 350.7247619628906, 393.6568298339844, 1.0, 406.5623779296875, 382.8069152832031, 1.0, 460.0703125, 372.4472351074219, 1.0, 511.2909851074219, 362.5174255371094, 1.0, 560.31787109375, 353.0278625488281, 1.0, 607.4478149414062, 343.92926025390625, 1.0, 652.7689208984375, 335.1587829589844, 1.0, 696.545654296875, 326.6697998046875, 1.0, 738.8168334960938, 318.5792541503906, 1.0, 779.7056274414062, 310.57647705078125, 1.0, 362.2193908691406, 450.364013671875, 1.0, 417.802734375, 438.2431335449219, 1.0, 471.2927551269531, 426.5616149902344, 1.0, 522.3235473632812, 415.5073547363281, 1.0, 571.280517578125, 404.85430908203125, 1.0, 618.3270874023438, 394.7117004394531, 1.0, 663.5493774414062, 384.9951171875, 1.0, 707.279541015625, 375.65740966796875, 1.0, 749.4426879882812, 366.6532287597656, 1.0, 790.2723388671875, 357.94903564453125, 1.0, 373.4853515625, 507.4123840332031, 1.0, 429.0914306640625, 493.9144592285156, 1.0, 482.4175109863281, 481.1661071777344, 1.0, 533.3294067382812, 468.7463684082031, 1.0, 582.3443603515625, 457.0548400878906, 1.0, 629.2666015625, 445.82379150390625, 1.0, 674.5230102539062, 435.2008972167969, 1.0, 718.1361083984375, 424.77740478515625, 1.0, 760.32275390625, 414.9641418457031, 1.0, 801.029296875, 405.4089660644531, 1.0, 384.986083984375, 564.796142578125, 1.0, 440.4148864746094, 550.1268920898438, 1.0, 493.530029296875, 536.0861206054688, 1.0, 544.5003662109375, 522.56396484375, 1.0, 593.4031372070312, 509.7437744140625, 1.0, 640.3439331054688, 497.4779052734375, 1.0, 685.5089111328125, 485.77630615234375, 1.0, 729.1210327148438, 474.5528869628906, 1.0, 771.1556396484375, 463.6522521972656, 1.0, 811.8216552734375, 453.3210144042969, 1.0, 396.6865539550781, 622.4487915039062, 1.0, 451.80853271484375, 606.7412719726562, 1.0, 504.909423828125, 591.5148315429688, 1.0, 555.6947631835938, 576.8399658203125, 1.0, 604.650634765625, 562.8185424804688, 1.0, 651.5472412109375, 549.5452270507812, 1.0, 696.727783203125, 536.7108764648438, 1.0, 740.2467651367188, 524.4400024414062, 1.0, 782.30517578125, 512.718994140625, 1.0, 822.744384765625, 501.3520812988281, 1.0, 753.5375366210938, 128.53091430664062, 1.0, 762.462158203125, 174.9123077392578, 1.0, 771.373291015625, 221.60784912109375, 1.0, 780.448974609375, 268.4903564453125, 1.0, 789.5699462890625, 315.71600341796875, 1.0, 798.7789916992188, 362.9616394042969, 1.0, 808.187744140625, 411.0673828125, 1.0, 817.685302734375, 459.2421569824219, 1.0, 827.3084106445312, 508.0278015136719, 1.0, 836.8765869140625, 557.0392456054688, 1.0, 712.193359375, 131.2858123779297, 1.0, 721.0557250976562, 178.55128479003906, 1.0, 729.9718017578125, 225.93438720703125, 1.0, 739.0531005859375, 273.5670166015625, 1.0, 748.1885986328125, 321.611328125, 1.0, 757.44189453125, 369.76123046875, 1.0, 766.80029296875, 418.5224609375, 1.0, 776.371337890625, 467.64984130859375, 1.0, 785.8712158203125, 517.3140869140625, 1.0, 795.567138671875, 567.2891235351562, 1.0, 669.2160034179688, 134.03074645996094, 1.0, 678.236328125, 182.0892333984375, 1.0, 687.1605224609375, 230.466064453125, 1.0, 696.2086181640625, 278.8211364746094, 1.0, 705.3380126953125, 327.7409362792969, 1.0, 714.5967407226562, 376.6305236816406, 1.0, 723.869140625, 426.40863037109375, 1.0, 733.48486328125, 476.3946533203125, 1.0, 743.0325317382812, 526.9066162109375, 1.0, 752.6572265625, 577.9093627929688, 1.0, 624.8487548828125, 136.8252410888672, 1.0, 633.75537109375, 185.7143096923828, 1.0, 642.8312377929688, 235.0800323486328, 1.0, 651.8868408203125, 284.39251708984375, 1.0, 661.1033325195312, 334.166259765625, 1.0, 670.3562622070312, 383.87017822265625, 1.0, 679.6105346679688, 434.4347229003906, 1.0, 689.1705932617188, 485.31427001953125, 1.0, 698.6310424804688, 536.923583984375, 1.0, 708.375732421875, 588.92333984375, 1.0, 578.7271118164062, 139.73959350585938, 1.0, 587.7745361328125, 189.59339904785156, 1.0, 596.8850708007812, 239.67791748046875, 1.0, 606.1585693359375, 289.90289306640625, 1.0, 615.2860107421875, 340.60821533203125, 1.0, 624.4733276367188, 391.4149475097656, 1.0, 633.7168579101562, 442.7645568847656, 1.0, 643.2394409179688, 494.756591796875, 1.0, 652.6179809570312, 547.4685668945312, 1.0, 662.2642211914062, 600.505615234375, 1.0, 531.1185302734375, 142.64535522460938, 1.0, 540.2313842773438, 193.46466064453125, 1.0, 549.3482055664062, 244.55975341796875, 1.0, 558.5231323242188, 295.7462158203125, 1.0, 567.6831665039062, 347.4833679199219, 1.0, 576.8956909179688, 399.1172180175781, 1.0, 586.2304077148438, 451.5845642089844, 1.0, 595.5180053710938, 504.6609802246094, 1.0, 604.8048706054688, 558.3984985351562, 1.0, 614.5289306640625, 612.4675903320312, 1.0, 481.4620666503906, 145.71505737304688, 1.0, 490.6239013671875, 197.48265075683594, 1.0, 499.7596130371094, 249.53060913085938, 1.0, 509.03363037109375, 301.7613525390625, 1.0, 518.263427734375, 354.4854431152344, 1.0, 527.4832153320312, 407.3341064453125, 1.0, 536.6155395507812, 460.8603820800781, 1.0, 545.9747314453125, 514.9368896484375, 1.0, 555.2890625, 569.6371459960938, 1.0, 564.61328125, 625.044189453125, 1.0, 429.83355712890625, 148.88880920410156, 1.0, 439.04949951171875, 201.5684356689453, 1.0, 448.3021240234375, 254.72610473632812, 1.0, 457.4838562011719, 308.19671630859375, 1.0, 466.6875, 361.909912109375, 1.0, 475.8458557128906, 415.82635498046875, 1.0, 485.0953674316406, 470.5276184082031, 1.0, 494.3234558105469, 525.8028564453125, 1.0, 503.5765686035156, 581.6771240234375, 1.0, 512.9427490234375, 638.1633911132812, 1.0, 376.22784423828125, 152.14794921875, 1.0, 385.36669921875, 205.90447998046875, 1.0, 394.498046875, 260.18328857421875, 1.0, 403.734130859375, 314.62921142578125, 1.0, 412.9488220214844, 369.55908203125, 1.0, 422.2701110839844, 424.72607421875, 1.0, 431.32037353515625, 480.6463317871094, 1.0, 440.43719482421875, 537.1804809570312, 1.0, 449.7088928222656, 594.216064453125, 1.0, 459.18817138671875, 651.6085205078125, 1.0, 320.5216979980469, 155.71641540527344, 1.0, 329.44769287109375, 210.49655151367188, 1.0, 338.54278564453125, 265.7779235839844, 1.0, 347.6582946777344, 321.5260009765625, 1.0, 356.878662109375, 377.6953430175781, 1.0, 366.04425048828125, 434.1410827636719, 1.0, 375.23138427734375, 491.2498779296875, 1.0, 384.360107421875, 548.9190673828125, 1.0, 393.65618896484375, 607.0648803710938, 1.0, 403.14764404296875, 665.4110107421875, 1.0, 346.0426940917969, 148.34039306640625, 1.0, 401.3758239746094, 146.3236541748047, 1.0, 454.8050842285156, 144.5039825439453, 1.0, 506.1976623535156, 142.82611083984375, 1.0, 555.6827392578125, 141.2462158203125, 1.0, 603.3728637695312, 139.5994873046875, 1.0, 649.5477905273438, 137.90768432617188, 1.0, 693.8330078125, 136.18455505371094, 1.0, 737.1597290039062, 134.55470275878906, 1.0, 778.7028198242188, 133.1916961669922, 1.0, 353.7054443359375, 202.8144073486328, 1.0, 409.3652648925781, 199.99728393554688, 1.0, 462.7396545410156, 197.37864685058594, 1.0, 514.2404174804688, 194.5212860107422, 1.0, 563.6494140625, 192.08270263671875, 1.0, 611.4127807617188, 189.5282440185547, 1.0, 657.3602294921875, 187.0728759765625, 1.0, 701.7667236328125, 184.49899291992188, 1.0, 744.9227294921875, 182.2805633544922, 1.0, 786.6265869140625, 179.76486206054688, 1.0, 361.56439208984375, 258.07135009765625, 1.0, 417.25738525390625, 254.1147003173828, 1.0, 470.65753173828125, 250.36737060546875, 1.0, 522.1141967773438, 246.6912841796875, 1.0, 571.5516967773438, 243.27525329589844, 1.0, 619.2454833984375, 239.8248291015625, 1.0, 665.1871337890625, 236.48231506347656, 1.0, 709.6414184570312, 233.23146057128906, 1.0, 752.7105102539062, 229.99188232421875, 1.0, 794.4429321289062, 226.86074829101562, 1.0, 369.2778015136719, 313.4425354003906, 1.0, 425.0528564453125, 308.4490661621094, 1.0, 478.5294494628906, 303.611572265625, 1.0, 529.9689331054688, 299.007568359375, 1.0, 579.4189453125, 294.57061767578125, 1.0, 627.015380859375, 290.2825622558594, 1.0, 673.0510864257812, 286.12237548828125, 1.0, 717.4771118164062, 281.9224853515625, 1.0, 760.5693969726562, 278.0943298339844, 1.0, 802.4266357421875, 274.1731872558594, 1.0, 376.9092712402344, 369.3074645996094, 1.0, 432.6833801269531, 363.17022705078125, 1.0, 486.3050537109375, 357.365966796875, 1.0, 537.7007446289062, 351.6807861328125, 1.0, 587.2598266601562, 346.2890930175781, 1.0, 634.7325439453125, 341.085693359375, 1.0, 680.8126220703125, 335.9737243652344, 1.0, 725.404296875, 331.130859375, 1.0, 768.4705200195312, 326.40850830078125, 1.0, 810.2404174804688, 321.7223815917969, 1.0, 384.4607849121094, 425.2183532714844, 1.0, 440.3079528808594, 417.91644287109375, 1.0, 493.98187255859375, 411.0091857910156, 1.0, 545.4629516601562, 404.3401794433594, 1.0, 594.896240234375, 397.9665222167969, 1.0, 642.5857543945312, 391.84088134765625, 1.0, 688.5993041992188, 385.9843444824219, 1.0, 733.259521484375, 380.3354187011719, 1.0, 776.4041137695312, 374.82086181640625, 1.0, 818.1466674804688, 369.4683532714844, 1.0, 391.8740234375, 481.8844299316406, 1.0, 447.80828857421875, 473.5552673339844, 1.0, 501.5367431640625, 465.47454833984375, 1.0, 553.0699462890625, 457.6864013671875, 1.0, 602.6563110351562, 450.3943176269531, 1.0, 650.4313354492188, 443.3609924316406, 1.0, 696.5088500976562, 436.6209411621094, 1.0, 741.1911010742188, 430.2096252441406, 1.0, 784.3626708984375, 423.8326110839844, 1.0, 826.2440185546875, 417.753173828125, 1.0, 399.2628479003906, 539.1190185546875, 1.0, 455.38909912109375, 529.5528564453125, 1.0, 509.13336181640625, 520.468994140625, 1.0, 560.6810913085938, 511.694580078125, 1.0, 610.4595947265625, 503.4105529785156, 1.0, 658.340087890625, 495.359130859375, 1.0, 704.5171508789062, 487.72064208984375, 1.0, 749.2244262695312, 480.41656494140625, 1.0, 792.4461669921875, 473.3661193847656, 1.0, 834.30810546875, 466.3675231933594, 1.0, 406.87939453125, 596.7454833984375, 1.0, 462.8103942871094, 586.3622436523438, 1.0, 516.6261596679688, 576.1649780273438, 1.0, 568.4876708984375, 566.3839721679688, 1.0, 618.2850952148438, 556.8837890625, 1.0, 666.289794921875, 547.9505004882812, 1.0, 712.510009765625, 539.3972778320312, 1.0, 757.3338623046875, 531.1693115234375, 1.0, 800.4406127929688, 523.1715087890625, 1.0, 842.371826171875, 515.469482421875, 1.0, 414.6014404296875, 654.6990966796875, 1.0, 470.4263916015625, 643.32421875, 1.0, 524.3762817382812, 632.2470092773438, 1.0, 576.1937255859375, 621.4603881835938, 1.0, 626.1942138671875, 611.01953125, 1.0, 674.3043823242188, 601.1516723632812, 1.0, 720.5884399414062, 591.6480102539062, 1.0, 765.4099731445312, 582.411376953125, 1.0, 808.6204223632812, 573.5532836914062, 1.0, 850.463623046875, 564.8265380859375, 1.0, 509.51959228515625, 150.93765258789062, 1.0, 562.4398803710938, 150.26637268066406, 1.0, 613.94091796875, 149.7825927734375, 1.0, 663.8970947265625, 149.0549774169922, 1.0, 712.6876831054688, 148.3197784423828, 1.0, 760.1853637695312, 147.7463836669922, 1.0, 806.4578857421875, 147.1129913330078, 1.0, 851.409912109375, 146.58773803710938, 1.0, 895.357177734375, 145.91226196289062, 1.0, 937.8627319335938, 145.66456604003906, 1.0, 514.4736328125, 204.6470184326172, 1.0, 567.47802734375, 203.3072967529297, 1.0, 619.0823974609375, 201.9657745361328, 1.0, 669.1278686523438, 200.57716369628906, 1.0, 717.8983764648438, 199.2233123779297, 1.0, 765.480224609375, 197.94273376464844, 1.0, 811.8992919921875, 196.62083435058594, 1.0, 857.14306640625, 195.2185516357422, 1.0, 901.038818359375, 194.11048889160156, 1.0, 943.7774658203125, 193.01870727539062, 1.0, 519.4095458984375, 258.8025207519531, 1.0, 572.52880859375, 256.6429443359375, 1.0, 624.1703491210938, 254.5590362548828, 1.0, 674.35498046875, 252.4691162109375, 1.0, 723.2696533203125, 250.39942932128906, 1.0, 770.89453125, 248.34629821777344, 1.0, 817.4384765625, 246.428466796875, 1.0, 862.7196044921875, 244.4954071044922, 1.0, 906.8489379882812, 242.64295959472656, 1.0, 949.684814453125, 241.120849609375, 1.0, 524.4724731445312, 313.34027099609375, 1.0, 577.5975341796875, 310.426025390625, 1.0, 629.33251953125, 307.47637939453125, 1.0, 679.5299682617188, 304.5936584472656, 1.0, 728.579833984375, 301.8603515625, 1.0, 776.4768676757812, 299.33441162109375, 1.0, 823.012451171875, 296.5827331542969, 1.0, 868.468994140625, 294.12774658203125, 1.0, 912.7145385742188, 291.6176452636719, 1.0, 955.69775390625, 289.33740234375, 1.0, 529.4223022460938, 368.3071594238281, 1.0, 582.761474609375, 364.4434509277344, 1.0, 634.5913696289062, 360.7513732910156, 1.0, 684.9595336914062, 357.3562927246094, 1.0, 734.0718383789062, 353.80584716796875, 1.0, 781.989990234375, 350.4860534667969, 1.0, 828.7489624023438, 347.28570556640625, 1.0, 874.4158325195312, 344.095947265625, 1.0, 918.6350708007812, 341.0224609375, 1.0, 961.7390747070312, 337.9747009277344, 1.0, 534.398681640625, 423.4581604003906, 1.0, 587.9437255859375, 418.7091369628906, 1.0, 639.8732299804688, 414.2615661621094, 1.0, 690.4796142578125, 410.0920104980469, 1.0, 739.6951904296875, 405.97357177734375, 1.0, 787.6959228515625, 401.9463195800781, 1.0, 834.55859375, 398.08575439453125, 1.0, 880.3621826171875, 394.2673034667969, 1.0, 924.6841430664062, 390.546875, 1.0, 967.81494140625, 386.8385009765625, 1.0, 539.4118041992188, 479.4568786621094, 1.0, 593.1150512695312, 473.857421875, 1.0, 645.3063354492188, 468.663330078125, 1.0, 696.0679321289062, 463.641845703125, 1.0, 745.5093383789062, 458.7770080566406, 1.0, 793.5845336914062, 454.2073974609375, 1.0, 840.58935546875, 449.5149841308594, 1.0, 886.41357421875, 445.10528564453125, 1.0, 930.7310180664062, 440.6363830566406, 1.0, 973.9136962890625, 436.40179443359375, 1.0, 544.49072265625, 536.1907958984375, 1.0, 598.4353637695312, 529.830078125, 1.0, 650.7448120117188, 523.7765502929688, 1.0, 701.6295166015625, 517.9130859375, 1.0, 751.4176635742188, 512.2637329101562, 1.0, 799.6468505859375, 506.8449401855469, 1.0, 846.6985473632812, 501.4927673339844, 1.0, 892.4658813476562, 496.3192138671875, 1.0, 936.9970092773438, 491.1095886230469, 1.0, 979.9842529296875, 486.0310974121094, 1.0, 549.6376342773438, 593.6207275390625, 1.0, 603.8155517578125, 586.3914794921875, 1.0, 656.441162109375, 579.4720458984375, 1.0, 707.5277709960938, 572.731201171875, 1.0, 757.3287963867188, 566.379638671875, 1.0, 805.7234497070312, 560.1909790039062, 1.0, 852.7752075195312, 553.9752197265625, 1.0, 898.6002197265625, 547.9066162109375, 1.0, 942.9118041992188, 541.830078125, 1.0, 986.0693359375, 536.0697631835938, 1.0, 554.9760131835938, 651.5844116210938, 1.0, 609.3352661132812, 643.5123291015625, 1.0, 662.220703125, 635.71240234375, 1.0, 713.458740234375, 628.078857421875, 1.0, 763.386962890625, 620.8216552734375, 1.0, 811.7573852539062, 613.72802734375, 1.0, 858.9238891601562, 606.6976928710938, 1.0, 904.6664428710938, 599.7604370117188, 1.0, 949.049072265625, 593.0123901367188, 1.0, 991.9603271484375, 586.2933349609375, 1.0, 623.9017333984375, 145.92031860351562, 1.0, 676.7578125, 150.70655822753906, 1.0, 728.7217407226562, 155.2731170654297, 1.0, 779.5589599609375, 159.7153778076172, 1.0, 829.281494140625, 164.01133728027344, 1.0, 877.9403076171875, 168.45147705078125, 1.0, 925.5452880859375, 172.72079467773438, 1.0, 971.873046875, 177.08303833007812, 1.0, 1017.0132446289062, 181.4099578857422, 1.0, 1060.9000244140625, 185.65513610839844, 1.0, 622.1824340820312, 200.5765380859375, 1.0, 675.22265625, 204.73458862304688, 1.0, 727.385498046875, 208.67527770996094, 1.0, 778.2894897460938, 212.58609008789062, 1.0, 828.3153686523438, 216.3646240234375, 1.0, 877.1026611328125, 220.2014923095703, 1.0, 924.9714965820312, 224.02902221679688, 1.0, 971.5382690429688, 227.59930419921875, 1.0, 1017.0570068359375, 231.4746551513672, 1.0, 1061.1217041015625, 235.23654174804688, 1.0, 620.3428955078125, 255.61053466796875, 1.0, 673.730712890625, 259.2036437988281, 1.0, 725.948486328125, 262.4449462890625, 1.0, 777.0199584960938, 265.8428955078125, 1.0, 827.251220703125, 269.2181091308594, 1.0, 876.4240112304688, 272.423828125, 1.0, 924.4471435546875, 275.5870361328125, 1.0, 971.2930908203125, 278.7867736816406, 1.0, 1016.9190673828125, 281.9520263671875, 1.0, 1061.140869140625, 285.2642517089844, 1.0, 618.572998046875, 310.66937255859375, 1.0, 672.0228271484375, 313.6903991699219, 1.0, 724.4481201171875, 316.59002685546875, 1.0, 775.9151000976562, 319.5003356933594, 1.0, 826.2647094726562, 322.23663330078125, 1.0, 875.63720703125, 324.9558410644531, 1.0, 924.0221557617188, 327.61322021484375, 1.0, 971.0298461914062, 330.3516540527344, 1.0, 1016.8465576171875, 332.82147216796875, 1.0, 1061.1815185546875, 335.45965576171875, 1.0, 616.79638671875, 366.49371337890625, 1.0, 670.4500732421875, 368.7718811035156, 1.0, 723.0765991210938, 371.14129638671875, 1.0, 774.6769409179688, 373.5061340332031, 1.0, 825.2423095703125, 375.6426696777344, 1.0, 874.9365234375, 377.93414306640625, 1.0, 923.2933349609375, 380.11285400390625, 1.0, 970.652099609375, 382.294921875, 1.0, 1016.5388793945312, 384.2436218261719, 1.0, 1061.011474609375, 386.2306213378906, 1.0, 614.96875, 422.3254699707031, 1.0, 668.9385986328125, 424.0055236816406, 1.0, 721.843994140625, 425.7615661621094, 1.0, 773.5662231445312, 427.63751220703125, 1.0, 824.3635864257812, 429.4132995605469, 1.0, 874.2002563476562, 431.0420227050781, 1.0, 922.7931518554688, 432.6258239746094, 1.0, 970.1235961914062, 434.17144775390625, 1.0, 1016.1742553710938, 435.64031982421875, 1.0, 1060.85302734375, 436.9724426269531, 1.0, 613.1114501953125, 478.9415588378906, 1.0, 667.3760986328125, 480.1042785644531, 1.0, 720.5244140625, 481.27215576171875, 1.0, 772.5127563476562, 482.5881042480469, 1.0, 823.4630737304688, 483.7543640136719, 1.0, 873.3941650390625, 484.9327697753906, 1.0, 922.15234375, 485.9779968261719, 1.0, 969.617431640625, 486.8739929199219, 1.0, 1015.8132934570312, 487.6630859375, 1.0, 1060.471435546875, 488.35711669921875, 1.0, 611.2315673828125, 536.3307495117188, 1.0, 665.782958984375, 536.800048828125, 1.0, 719.0831909179688, 537.4208984375, 1.0, 771.3795166015625, 538.0201416015625, 1.0, 822.6728515625, 538.632568359375, 1.0, 872.713623046875, 539.1517333984375, 1.0, 921.509521484375, 539.548583984375, 1.0, 968.9752807617188, 539.7205200195312, 1.0, 1015.1277465820312, 539.8541259765625, 1.0, 1059.9229736328125, 539.805908203125, 1.0, 609.329345703125, 594.3790283203125, 1.0, 664.2403564453125, 594.1436157226562, 1.0, 717.903076171875, 594.1829833984375, 1.0, 770.29296875, 594.0162963867188, 1.0, 821.70166015625, 593.8894653320312, 1.0, 871.8953857421875, 593.7789916992188, 1.0, 920.6727905273438, 593.265869140625, 1.0, 968.14599609375, 592.8524169921875, 1.0, 1014.4008178710938, 592.22509765625, 1.0, 1059.25146484375, 591.6099853515625, 1.0, 607.3600463867188, 652.8828735351562, 1.0, 662.434326171875, 652.0300903320312, 1.0, 716.4168090820312, 651.14013671875, 1.0, 769.0242919921875, 650.436279296875, 1.0, 820.6220092773438, 649.5575561523438, 1.0, 870.7587890625, 648.5509033203125, 1.0, 919.6957397460938, 647.3842163085938, 1.0, 967.0511474609375, 646.1641235351562, 1.0, 1013.408935546875, 644.9364013671875, 1.0, 1058.6253662109375, 643.597412109375, 1.0, 484.1908264160156, 99.94824981689453, 1.0, 539.6842041015625, 104.14627838134766, 1.0, 593.6441650390625, 107.97752380371094, 1.0, 645.955322265625, 111.89620971679688, 1.0, 697.175048828125, 115.48052978515625, 1.0, 746.87890625, 119.06072235107422, 1.0, 795.4688720703125, 122.49126434326172, 1.0, 842.6780395507812, 125.77468872070312, 1.0, 888.688232421875, 129.3085174560547, 1.0, 933.34228515625, 132.60398864746094, 1.0, 484.0284423828125, 156.01239013671875, 1.0, 539.6925659179688, 159.44064331054688, 1.0, 593.7284545898438, 162.5504913330078, 1.0, 646.1600952148438, 165.6754608154297, 1.0, 697.4219360351562, 168.56155395507812, 1.0, 747.2702026367188, 171.4810791015625, 1.0, 795.9431762695312, 174.20828247070312, 1.0, 843.316650390625, 176.8228759765625, 1.0, 889.5245971679688, 179.5982666015625, 1.0, 934.3903198242188, 182.27886962890625, 1.0, 483.89404296875, 212.4115447998047, 1.0, 539.7152709960938, 214.93634033203125, 1.0, 593.8031005859375, 217.5071563720703, 1.0, 646.3464965820312, 219.82937622070312, 1.0, 697.630615234375, 222.04843139648438, 1.0, 747.6146240234375, 224.1927947998047, 1.0, 796.3297119140625, 226.2217559814453, 1.0, 844.00830078125, 228.29498291015625, 1.0, 890.2750854492188, 230.24658203125, 1.0, 935.3201904296875, 232.32481384277344, 1.0, 483.73040771484375, 268.98907470703125, 1.0, 539.62060546875, 270.7321472167969, 1.0, 593.8696899414062, 272.39990234375, 1.0, 646.496337890625, 273.9922180175781, 1.0, 697.910400390625, 275.51727294921875, 1.0, 747.9498901367188, 276.95550537109375, 1.0, 796.8411254882812, 278.3693542480469, 1.0, 844.5588989257812, 279.7713928222656, 1.0, 891.0255737304688, 281.1597900390625, 1.0, 936.3153686523438, 282.5193176269531, 1.0, 483.5172424316406, 325.9156188964844, 1.0, 539.5587158203125, 326.74627685546875, 1.0, 593.8870239257812, 327.6127014160156, 1.0, 646.7054443359375, 328.4396057128906, 1.0, 698.1639404296875, 329.2772521972656, 1.0, 748.3255004882812, 330.1070251464844, 1.0, 797.3762817382812, 330.8738098144531, 1.0, 845.1220092773438, 331.69036865234375, 1.0, 891.8621826171875, 332.29888916015625, 1.0, 937.228271484375, 333.11676025390625, 1.0, 483.2558898925781, 382.74505615234375, 1.0, 539.4745483398438, 382.71112060546875, 1.0, 593.9574584960938, 382.81158447265625, 1.0, 646.8300170898438, 382.83111572265625, 1.0, 698.4448852539062, 382.9477844238281, 1.0, 748.816650390625, 383.1647033691406, 1.0, 797.9678344726562, 383.3635559082031, 1.0, 845.942138671875, 383.43603515625, 1.0, 892.742431640625, 383.68035888671875, 1.0, 938.2708740234375, 383.8104553222656, 1.0, 482.8648681640625, 440.2735290527344, 1.0, 539.2670288085938, 439.29901123046875, 1.0, 594.0311279296875, 438.6474609375, 1.0, 647.0616455078125, 438.0073547363281, 1.0, 698.8748779296875, 437.3923645019531, 1.0, 749.3222045898438, 436.9409484863281, 1.0, 798.6456298828125, 436.37335205078125, 1.0, 846.7550048828125, 435.9449157714844, 1.0, 893.5723266601562, 435.35345458984375, 1.0, 939.1603393554688, 434.89892578125, 1.0, 482.3794250488281, 498.3873291015625, 1.0, 539.0408935546875, 496.5920104980469, 1.0, 593.95166015625, 494.9927062988281, 1.0, 647.3236083984375, 493.4513244628906, 1.0, 699.3365478515625, 492.2384948730469, 1.0, 749.9962158203125, 490.9961242675781, 1.0, 799.3233032226562, 489.8466796875, 1.0, 847.4974365234375, 488.62335205078125, 1.0, 894.4722290039062, 487.4652099609375, 1.0, 940.1336669921875, 486.25946044921875, 1.0, 481.90069580078125, 557.0280151367188, 1.0, 538.7922973632812, 554.3307495117188, 1.0, 593.9494018554688, 551.9009399414062, 1.0, 647.5534057617188, 549.7157592773438, 1.0, 699.7865600585938, 547.552734375, 1.0, 750.5941772460938, 545.5919799804688, 1.0, 800.1248168945312, 543.599853515625, 1.0, 848.4044189453125, 541.763916015625, 1.0, 895.3197021484375, 539.8013916015625, 1.0, 940.9420776367188, 537.703857421875, 1.0, 481.48175048828125, 616.0076904296875, 1.0, 538.56689453125, 612.5794067382812, 1.0, 594.0514526367188, 609.3335571289062, 1.0, 647.804931640625, 606.34130859375, 1.0, 700.2425537109375, 603.3829345703125, 1.0, 751.1469116210938, 600.5806274414062, 1.0, 800.9220581054688, 597.7645263671875, 1.0, 849.1943969726562, 595.169677734375, 1.0, 896.135009765625, 592.3612060546875, 1.0, 941.6567993164062, 589.478271484375, 1.0, 474.4712219238281, 92.76065063476562, 1.0, 530.211669921875, 96.74002075195312, 1.0, 584.4154052734375, 100.7175521850586, 1.0, 636.8987426757812, 104.47985076904297, 1.0, 688.2951049804688, 108.11126708984375, 1.0, 738.1468505859375, 111.5931625366211, 1.0, 786.6951904296875, 114.93241119384766, 1.0, 833.9974365234375, 118.3044204711914, 1.0, 880.109375, 121.51475524902344, 1.0, 924.758056640625, 124.87977600097656, 1.0, 474.532470703125, 149.25091552734375, 1.0, 530.4796142578125, 152.45962524414062, 1.0, 584.636474609375, 155.61878967285156, 1.0, 637.425048828125, 158.60940551757812, 1.0, 688.6090087890625, 161.5142822265625, 1.0, 738.654052734375, 164.30691528320312, 1.0, 787.3873291015625, 166.80364990234375, 1.0, 834.8952026367188, 169.50747680664062, 1.0, 881.04248046875, 172.14158630371094, 1.0, 925.9638671875, 174.65512084960938, 1.0, 474.6833190917969, 205.85418701171875, 1.0, 530.6917724609375, 208.37738037109375, 1.0, 585.057373046875, 210.66184997558594, 1.0, 637.8182373046875, 212.94680786132812, 1.0, 689.1800537109375, 215.15518188476562, 1.0, 739.0639038085938, 217.1305694580078, 1.0, 788.0179443359375, 219.0685577392578, 1.0, 835.63916015625, 221.04383850097656, 1.0, 881.9505004882812, 222.89468383789062, 1.0, 926.976806640625, 224.81240844726562, 1.0, 474.81610107421875, 262.697509765625, 1.0, 530.8827514648438, 264.3376770019531, 1.0, 585.3282470703125, 265.87786865234375, 1.0, 638.1500244140625, 267.38446044921875, 1.0, 689.5725708007812, 268.8064880371094, 1.0, 739.7625122070312, 270.0538330078125, 1.0, 788.6389770507812, 271.4747009277344, 1.0, 836.3868408203125, 272.6263122558594, 1.0, 882.8462524414062, 273.9820556640625, 1.0, 928.2030029296875, 275.24212646484375, 1.0, 474.9742126464844, 319.8604431152344, 1.0, 531.0615844726562, 320.5841064453125, 1.0, 585.5574340820312, 321.2891845703125, 1.0, 638.5130615234375, 322.0187683105469, 1.0, 690.0960083007812, 322.6458740234375, 1.0, 740.2702026367188, 323.354736328125, 1.0, 789.3135986328125, 324.0435485839844, 1.0, 837.2062377929688, 324.6858215332031, 1.0, 883.8216552734375, 325.27587890625, 1.0, 929.1964111328125, 326.01788330078125, 1.0, 474.9325866699219, 376.8476257324219, 1.0, 531.2329711914062, 376.7696533203125, 1.0, 585.889404296875, 376.69720458984375, 1.0, 638.8744506835938, 376.5870056152344, 1.0, 690.5667114257812, 376.5265808105469, 1.0, 740.8697509765625, 376.5411071777344, 1.0, 790.0706787109375, 376.5584411621094, 1.0, 838.1027221679688, 376.60235595703125, 1.0, 884.883544921875, 376.587158203125, 1.0, 930.2438354492188, 376.5407409667969, 1.0, 474.7725830078125, 434.57818603515625, 1.0, 531.3062133789062, 433.4300537109375, 1.0, 586.195068359375, 432.5958251953125, 1.0, 639.2523803710938, 431.73736572265625, 1.0, 691.1942138671875, 430.98333740234375, 1.0, 741.6820678710938, 430.3378601074219, 1.0, 790.9530639648438, 429.67547607421875, 1.0, 839.0836181640625, 429.084228515625, 1.0, 885.916015625, 428.364990234375, 1.0, 931.371826171875, 427.7731018066406, 1.0, 474.59698486328125, 492.6712341308594, 1.0, 531.3092651367188, 490.70404052734375, 1.0, 586.35986328125, 488.9748840332031, 1.0, 639.8135986328125, 487.3667907714844, 1.0, 691.8551025390625, 485.91278076171875, 1.0, 742.4585571289062, 484.4833068847656, 1.0, 791.9476928710938, 483.069580078125, 1.0, 840.0513916015625, 481.662841796875, 1.0, 886.9398803710938, 480.4238586425781, 1.0, 932.49365234375, 479.2188720703125, 1.0, 474.3954162597656, 551.323974609375, 1.0, 531.33935546875, 548.5421752929688, 1.0, 586.5930786132812, 545.8856811523438, 1.0, 640.26904296875, 543.479736328125, 1.0, 692.3931274414062, 541.2435913085938, 1.0, 743.2350463867188, 539.050537109375, 1.0, 792.8331909179688, 536.9036865234375, 1.0, 841.0932006835938, 534.86474609375, 1.0, 887.9844360351562, 532.6806640625, 1.0, 933.5918579101562, 530.6051635742188, 1.0, 474.2319641113281, 610.3505249023438, 1.0, 531.3248901367188, 606.7774047851562, 1.0, 586.9053955078125, 603.3265380859375, 1.0, 640.7424926757812, 599.9379272460938, 1.0, 693.1463012695312, 596.9947509765625, 1.0, 744.0946655273438, 593.9583740234375, 1.0, 793.8361206054688, 590.98876953125, 1.0, 842.0057983398438, 588.1762084960938, 1.0, 889.0221557617188, 585.3433837890625, 1.0, 934.4534912109375, 582.34033203125, 1.0, 458.34039306640625, 80.71831512451172, 1.0, 514.40576171875, 84.64032745361328, 1.0, 569.0154418945312, 88.44214630126953, 1.0, 621.900390625, 92.18937683105469, 1.0, 673.3280639648438, 95.58052062988281, 1.0, 723.2920532226562, 99.01094818115234, 1.0, 772.0589599609375, 102.25067138671875, 1.0, 819.4453735351562, 105.53581237792969, 1.0, 865.6698608398438, 108.68145751953125, 1.0, 910.3804321289062, 111.83203887939453, 1.0, 458.7527160644531, 137.43862915039062, 1.0, 514.9292602539062, 140.5582733154297, 1.0, 569.5466918945312, 143.6011199951172, 1.0, 622.49072265625, 146.51112365722656, 1.0, 673.940673828125, 149.2788543701172, 1.0, 724.0899658203125, 151.79940795898438, 1.0, 772.8878784179688, 154.3616180419922, 1.0, 820.4396362304688, 156.7947540283203, 1.0, 866.720703125, 159.4504852294922, 1.0, 911.7581176757812, 161.71511840820312, 1.0, 459.16162109375, 194.3695526123047, 1.0, 515.5408325195312, 196.6421356201172, 1.0, 570.1905517578125, 198.85244750976562, 1.0, 623.0552368164062, 201.02369689941406, 1.0, 674.5601196289062, 203.03123474121094, 1.0, 724.7652587890625, 204.84149169921875, 1.0, 773.7325439453125, 206.60812377929688, 1.0, 821.3698120117188, 208.4462890625, 1.0, 867.7448120117188, 210.21278381347656, 1.0, 912.8748168945312, 212.0102996826172, 1.0, 459.5557861328125, 251.5483856201172, 1.0, 516.0242309570312, 252.9442138671875, 1.0, 570.7041015625, 254.3300323486328, 1.0, 623.7894287109375, 255.6978302001953, 1.0, 675.3655395507812, 256.87908935546875, 1.0, 725.6287841796875, 258.0184326171875, 1.0, 774.5216064453125, 259.1360778808594, 1.0, 822.2882080078125, 260.1866760253906, 1.0, 868.857666015625, 261.3045349121094, 1.0, 914.1422119140625, 262.3266906738281, 1.0, 460.03857421875, 308.8583984375, 1.0, 516.5420532226562, 309.4057922363281, 1.0, 571.2960815429688, 309.9537048339844, 1.0, 624.3697509765625, 310.5010070800781, 1.0, 676.1049194335938, 310.9041442871094, 1.0, 726.2967529296875, 311.3989562988281, 1.0, 775.4301147460938, 311.823974609375, 1.0, 823.2606811523438, 312.2568664550781, 1.0, 869.9510498046875, 312.6513977050781, 1.0, 915.2872314453125, 313.14404296875, 1.0, 460.2906494140625, 366.1416931152344, 1.0, 516.9048461914062, 365.7752685546875, 1.0, 571.9249877929688, 365.3864440917969, 1.0, 624.9666137695312, 365.1357116699219, 1.0, 676.80322265625, 364.8412780761719, 1.0, 727.1813354492188, 364.63104248046875, 1.0, 776.4332275390625, 364.3863525390625, 1.0, 824.3538208007812, 364.17742919921875, 1.0, 871.1285400390625, 364.04364013671875, 1.0, 916.6464233398438, 363.7481689453125, 1.0, 460.4970703125, 424.0278625488281, 1.0, 517.3530883789062, 422.6787414550781, 1.0, 572.3115844726562, 421.47607421875, 1.0, 625.7406616210938, 420.3428955078125, 1.0, 677.6432495117188, 419.30517578125, 1.0, 728.1347045898438, 418.49517822265625, 1.0, 777.4354858398438, 417.50836181640625, 1.0, 825.474365234375, 416.75079345703125, 1.0, 872.3820190429688, 415.8802795410156, 1.0, 917.9760131835938, 414.9798583984375, 1.0, 460.72540283203125, 482.2892150878906, 1.0, 517.5977783203125, 480.0622863769531, 1.0, 572.863525390625, 477.97186279296875, 1.0, 626.4071044921875, 475.9883117675781, 1.0, 678.4902954101562, 474.19219970703125, 1.0, 729.1736450195312, 472.61181640625, 1.0, 778.6130981445312, 471.07537841796875, 1.0, 826.7322998046875, 469.4425354003906, 1.0, 873.59033203125, 467.90728759765625, 1.0, 919.1024169921875, 466.3177490234375, 1.0, 460.7991943359375, 541.1116943359375, 1.0, 517.999267578125, 537.94580078125, 1.0, 573.2835083007812, 534.976806640625, 1.0, 627.08447265625, 532.2923583984375, 1.0, 679.365966796875, 529.5281982421875, 1.0, 730.265869140625, 527.1858520507812, 1.0, 779.7874145507812, 524.7259521484375, 1.0, 828.0728759765625, 522.4544067382812, 1.0, 874.9183959960938, 520.2415771484375, 1.0, 920.5040283203125, 517.8328247070312, 1.0, 460.9569091796875, 600.2062377929688, 1.0, 518.1710205078125, 596.2127075195312, 1.0, 573.8948364257812, 592.4063110351562, 1.0, 627.7774047851562, 588.7236328125, 1.0, 680.3062744140625, 585.3223266601562, 1.0, 731.2442626953125, 582.0811157226562, 1.0, 780.9513549804688, 578.8983154296875, 1.0, 829.1229248046875, 575.7388305664062, 1.0, 876.0806884765625, 572.7816162109375, 1.0, 921.69482421875, 569.587890625, 1.0, 131.24270629882812, 67.81375122070312, 1.0, 196.16021728515625, 75.4795150756836, 1.0, 257.9370422363281, 82.55355834960938, 1.0, 316.922119140625, 89.55872344970703, 1.0, 373.5857238769531, 96.44589233398438, 1.0, 427.6248474121094, 103.25941467285156, 1.0, 479.13226318359375, 109.73817443847656, 1.0, 528.2708129882812, 116.13604736328125, 1.0, 575.0601806640625, 122.05104064941406, 1.0, 619.7489013671875, 127.67444610595703, 1.0, 130.07284545898438, 129.95474243164062, 1.0, 194.94305419921875, 136.04290771484375, 1.0, 256.97259521484375, 141.64337158203125, 1.0, 316.5360412597656, 147.408447265625, 1.0, 373.31427001953125, 153.01905822753906, 1.0, 427.6011657714844, 158.56414794921875, 1.0, 479.1806640625, 163.70904541015625, 1.0, 528.427001953125, 168.79986572265625, 1.0, 575.2259521484375, 173.52919006347656, 1.0, 620.0067138671875, 178.04283142089844, 1.0, 128.8760528564453, 192.65199279785156, 1.0, 193.91429138183594, 197.1165313720703, 1.0, 256.3134460449219, 201.37864685058594, 1.0, 316.16583251953125, 205.71002197265625, 1.0, 373.2327880859375, 209.85838317871094, 1.0, 427.6507263183594, 214.1258544921875, 1.0, 479.3282775878906, 217.8748779296875, 1.0, 528.5685424804688, 221.73008728027344, 1.0, 575.45947265625, 225.2923126220703, 1.0, 620.19189453125, 228.5834503173828, 1.0, 127.81888580322266, 255.6212158203125, 1.0, 193.04873657226562, 258.4883117675781, 1.0, 255.78453063964844, 261.4444274902344, 1.0, 315.85626220703125, 264.3167724609375, 1.0, 373.13360595703125, 266.969970703125, 1.0, 427.6833190917969, 269.6699523925781, 1.0, 479.4375915527344, 272.29742431640625, 1.0, 528.7079467773438, 274.5819091796875, 1.0, 575.6441650390625, 276.9918212890625, 1.0, 620.3494873046875, 279.17510986328125, 1.0, 127.06623840332031, 319.130126953125, 1.0, 192.368408203125, 320.44482421875, 1.0, 255.21719360351562, 321.7917175292969, 1.0, 315.5597839355469, 323.0860595703125, 1.0, 373.06341552734375, 324.2737731933594, 1.0, 427.67657470703125, 325.5480041503906, 1.0, 479.59405517578125, 326.6470642089844, 1.0, 528.9256591796875, 327.80963134765625, 1.0, 575.8807373046875, 328.7954406738281, 1.0, 620.5845947265625, 329.836181640625, 1.0, 126.44294738769531, 382.4984130859375, 1.0, 191.93731689453125, 382.344970703125, 1.0, 254.84255981445312, 382.1679382324219, 1.0, 315.258056640625, 381.8416748046875, 1.0, 372.9126892089844, 381.5475158691406, 1.0, 427.5996398925781, 381.18255615234375, 1.0, 479.5975036621094, 380.9660339355469, 1.0, 529.0025634765625, 380.7996520996094, 1.0, 576.0965576171875, 380.5999755859375, 1.0, 620.824951171875, 380.4529724121094, 1.0, 126.1184310913086, 446.4282531738281, 1.0, 191.6295928955078, 444.7213439941406, 1.0, 254.58828735351562, 443.0315856933594, 1.0, 315.0360412597656, 441.2012634277344, 1.0, 372.72967529296875, 439.3089904785156, 1.0, 427.4700012207031, 437.57940673828125, 1.0, 479.6015319824219, 435.81292724609375, 1.0, 529.0703125, 434.30670166015625, 1.0, 576.224609375, 432.69366455078125, 1.0, 621.171875, 431.4789123535156, 1.0, 125.97581481933594, 510.5118713378906, 1.0, 191.59336853027344, 507.3216552734375, 1.0, 254.3615264892578, 504.0942687988281, 1.0, 314.77947998046875, 500.6881408691406, 1.0, 372.4841613769531, 497.3978576660156, 1.0, 427.31024169921875, 494.2236022949219, 1.0, 479.5213623046875, 491.025390625, 1.0, 529.1129150390625, 488.1164855957031, 1.0, 576.3703002929688, 485.3926086425781, 1.0, 621.5000610351562, 482.79644775390625, 1.0, 125.9500961303711, 574.6529541015625, 1.0, 191.80455017089844, 569.8191528320312, 1.0, 254.4026336669922, 565.2958984375, 1.0, 314.60833740234375, 560.4609985351562, 1.0, 372.2436828613281, 555.7058715820312, 1.0, 427.19036865234375, 551.1608276367188, 1.0, 479.4665222167969, 546.5870971679688, 1.0, 529.2842407226562, 542.377197265625, 1.0, 576.5977172851562, 538.3954467773438, 1.0, 621.8134155273438, 534.5669555664062, 1.0, 126.02874755859375, 638.8450317382812, 1.0, 191.98541259765625, 632.355712890625, 1.0, 254.66879272460938, 626.2603149414062, 1.0, 314.751220703125, 620.2796630859375, 1.0, 372.221923828125, 614.2764892578125, 1.0, 427.08880615234375, 608.3204956054688, 1.0, 479.4119873046875, 602.5064086914062, 1.0, 529.23486328125, 596.9111938476562, 1.0, 576.8706665039062, 591.7155151367188, 1.0, 622.1204223632812, 586.5985717773438, 1.0, 94.54225158691406, 76.79046630859375, 1.0, 162.0099334716797, 83.90409851074219, 1.0, 225.44374084472656, 90.3231430053711, 1.0, 286.0401916503906, 96.42781829833984, 1.0, 344.2440490722656, 102.49224090576172, 1.0, 399.7667541503906, 108.57069396972656, 1.0, 452.82757568359375, 114.36088562011719, 1.0, 503.3687438964844, 120.13213348388672, 1.0, 551.57763671875, 125.49163818359375, 1.0, 597.3994750976562, 130.56736755371094, 1.0, 93.58432006835938, 140.2791748046875, 1.0, 160.85227966308594, 145.5082244873047, 1.0, 224.48367309570312, 150.32278442382812, 1.0, 285.57769775390625, 155.22784423828125, 1.0, 344.0971984863281, 159.96481323242188, 1.0, 399.92156982421875, 164.6110076904297, 1.0, 453.07781982421875, 169.28245544433594, 1.0, 503.7810363769531, 173.6734161376953, 1.0, 551.9488525390625, 177.7654266357422, 1.0, 597.953369140625, 181.7261962890625, 1.0, 92.6393051147461, 204.12399291992188, 1.0, 159.73583984375, 207.60986328125, 1.0, 223.72445678710938, 210.9972686767578, 1.0, 285.19818115234375, 214.49337768554688, 1.0, 344.0694274902344, 217.7737274169922, 1.0, 400.08453369140625, 221.23941040039062, 1.0, 453.4175109863281, 224.36770629882812, 1.0, 504.06854248046875, 227.54754638671875, 1.0, 552.3739624023438, 230.35289001464844, 1.0, 598.2835693359375, 233.22227478027344, 1.0, 91.72006225585938, 268.1501770019531, 1.0, 158.84982299804688, 270.1849365234375, 1.0, 223.14096069335938, 272.035888671875, 1.0, 284.8760070800781, 273.99945068359375, 1.0, 344.010498046875, 275.9385070800781, 1.0, 400.2647399902344, 277.74261474609375, 1.0, 453.6685791015625, 279.56585693359375, 1.0, 504.4895324707031, 281.36248779296875, 1.0, 552.795654296875, 282.85699462890625, 1.0, 598.8081665039062, 284.405517578125, 1.0, 90.90766143798828, 332.74517822265625, 1.0, 158.15545654296875, 333.17669677734375, 1.0, 222.6317596435547, 333.4798583984375, 1.0, 284.6757507324219, 333.8881530761719, 1.0, 343.9608459472656, 334.2000427246094, 1.0, 400.40380859375, 334.60418701171875, 1.0, 453.84283447265625, 334.9540100097656, 1.0, 504.818359375, 335.30120849609375, 1.0, 553.0991821289062, 335.6302490234375, 1.0, 599.2240600585938, 335.9703674316406, 1.0, 90.29448699951172, 397.302490234375, 1.0, 157.69190979003906, 396.07177734375, 1.0, 222.31527709960938, 394.9669189453125, 1.0, 284.4049987792969, 393.711181640625, 1.0, 343.8485412597656, 392.514892578125, 1.0, 400.4624938964844, 391.349609375, 1.0, 454.05633544921875, 390.18121337890625, 1.0, 505.11505126953125, 389.1602783203125, 1.0, 553.5390625, 388.2044372558594, 1.0, 599.7293701171875, 387.3188171386719, 1.0, 89.93523406982422, 462.4222412109375, 1.0, 157.50624084472656, 459.55181884765625, 1.0, 222.1129608154297, 456.8128356933594, 1.0, 284.2224426269531, 454.2814636230469, 1.0, 343.70269775390625, 451.4315185546875, 1.0, 400.3876647949219, 448.612060546875, 1.0, 454.1785888671875, 446.1560363769531, 1.0, 505.27069091796875, 443.6311950683594, 1.0, 553.8728637695312, 441.3280334472656, 1.0, 600.2142333984375, 439.29949951171875, 1.0, 89.55401611328125, 527.5883178710938, 1.0, 157.49984741210938, 523.144287109375, 1.0, 222.05014038085938, 518.9341430664062, 1.0, 284.1291198730469, 514.7067260742188, 1.0, 343.58941650390625, 510.53363037109375, 1.0, 400.3261413574219, 506.33526611328125, 1.0, 454.1608581542969, 502.3424072265625, 1.0, 505.4449157714844, 498.44842529296875, 1.0, 554.2249755859375, 494.7930908203125, 1.0, 600.6997680664062, 491.4488830566406, 1.0, 89.32205963134766, 593.1317749023438, 1.0, 157.80276489257812, 586.7294921875, 1.0, 222.3983917236328, 581.1088256835938, 1.0, 284.2066345214844, 575.5504150390625, 1.0, 343.60711669921875, 569.7679443359375, 1.0, 400.3428039550781, 564.352783203125, 1.0, 454.2452087402344, 558.8401489257812, 1.0, 505.6885986328125, 553.6372680664062, 1.0, 554.5401000976562, 548.7374267578125, 1.0, 601.2197265625, 544.075439453125, 1.0, 88.87162780761719, 658.8931884765625, 1.0, 158.1143798828125, 650.52099609375, 1.0, 222.99806213378906, 643.1807250976562, 1.0, 284.6166687011719, 636.210205078125, 1.0, 343.8234558105469, 629.3302612304688, 1.0, 400.45159912109375, 622.4828491210938, 1.0, 454.4190979003906, 615.672607421875, 1.0, 505.8779296875, 609.1865234375, 1.0, 555.0120849609375, 602.9730834960938, 1.0, 601.7598266601562, 597.0625610351562, 1.0, 42.44449996948242, 49.47703170776367, 1.0, 113.65302276611328, 58.158267974853516, 1.0, 179.7733154296875, 65.56794738769531, 1.0, 242.1550750732422, 72.41043853759766, 1.0, 301.85064697265625, 78.80400848388672, 1.0, 358.8546142578125, 85.34903717041016, 1.0, 413.4736328125, 91.64289093017578, 1.0, 465.3656311035156, 97.78116607666016, 1.0, 514.9395141601562, 103.7115249633789, 1.0, 562.0682373046875, 109.42806243896484, 1.0, 42.49873352050781, 114.53494262695312, 1.0, 113.23994445800781, 121.03466796875, 1.0, 179.1032257080078, 126.5299072265625, 1.0, 241.7384490966797, 131.756591796875, 1.0, 301.68780517578125, 136.9629669189453, 1.0, 359.1324462890625, 142.2742156982422, 1.0, 413.9233093261719, 147.27984619140625, 1.0, 465.9804992675781, 152.16513061523438, 1.0, 515.4522705078125, 156.7657928466797, 1.0, 562.6200561523438, 161.34185791015625, 1.0, 42.45807647705078, 179.7073974609375, 1.0, 112.76324462890625, 184.16229248046875, 1.0, 178.63233947753906, 188.13865661621094, 1.0, 241.50543212890625, 191.80564880371094, 1.0, 301.8766174316406, 195.62088012695312, 1.0, 359.52313232421875, 199.44223022460938, 1.0, 414.38153076171875, 203.13949584960938, 1.0, 466.4746398925781, 206.58193969726562, 1.0, 516.1571655273438, 209.9402313232422, 1.0, 563.255126953125, 213.17575073242188, 1.0, 42.25391387939453, 244.9910888671875, 1.0, 112.37982177734375, 247.5768280029297, 1.0, 178.2878875732422, 249.84481811523438, 1.0, 241.48277282714844, 252.21798706054688, 1.0, 302.0442199707031, 254.48240661621094, 1.0, 359.97113037109375, 256.6709899902344, 1.0, 414.95513916015625, 258.9565734863281, 1.0, 467.12164306640625, 261.10552978515625, 1.0, 516.7185668945312, 263.1701354980469, 1.0, 563.8887939453125, 265.00048828125, 1.0, 42.185699462890625, 310.5834045410156, 1.0, 112.09751892089844, 311.38775634765625, 1.0, 178.22317504882812, 312.18646240234375, 1.0, 241.54356384277344, 312.8729553222656, 1.0, 302.4187927246094, 313.6199951171875, 1.0, 360.4124755859375, 314.3072814941406, 1.0, 415.4425964355469, 315.0010070800781, 1.0, 467.7202453613281, 315.7655334472656, 1.0, 517.2985229492188, 316.3611755371094, 1.0, 564.4976196289062, 316.9437255859375, 1.0, 42.20743179321289, 376.03570556640625, 1.0, 112.10607147216797, 375.138916015625, 1.0, 178.3531036376953, 374.2994384765625, 1.0, 241.83274841308594, 373.43060302734375, 1.0, 302.6883239746094, 372.5089111328125, 1.0, 360.818115234375, 371.7123718261719, 1.0, 415.9272766113281, 370.9244384765625, 1.0, 468.28509521484375, 370.1299743652344, 1.0, 517.9749755859375, 369.43975830078125, 1.0, 565.124267578125, 368.7906188964844, 1.0, 42.23005676269531, 441.9954833984375, 1.0, 112.4654312133789, 439.35400390625, 1.0, 178.5709228515625, 436.9071044921875, 1.0, 242.039794921875, 434.5081481933594, 1.0, 302.98345947265625, 432.0897216796875, 1.0, 361.1425476074219, 429.6021728515625, 1.0, 416.32769775390625, 427.3303527832031, 1.0, 468.7286376953125, 424.9896240234375, 1.0, 518.5084838867188, 422.9218444824219, 1.0, 565.7754516601562, 420.974853515625, 1.0, 42.38717269897461, 508.040771484375, 1.0, 113.00503540039062, 503.5680236816406, 1.0, 179.2921142578125, 499.5570373535156, 1.0, 242.56130981445312, 495.5963439941406, 1.0, 303.3017883300781, 491.6064453125, 1.0, 361.38751220703125, 487.6903381347656, 1.0, 416.7397766113281, 483.82183837890625, 1.0, 469.15386962890625, 480.2232666015625, 1.0, 519.0357055664062, 476.7376403808594, 1.0, 566.4267578125, 473.3963623046875, 1.0, 42.42333984375, 574.4409790039062, 1.0, 113.79206848144531, 567.8160400390625, 1.0, 180.21414184570312, 562.2509155273438, 1.0, 243.08575439453125, 556.8505859375, 1.0, 303.848876953125, 551.4530029296875, 1.0, 361.8031921386719, 546.0400390625, 1.0, 417.10675048828125, 540.7499389648438, 1.0, 469.5609436035156, 535.6895141601562, 1.0, 519.5421752929688, 530.767333984375, 1.0, 567.0321655273438, 526.2412109375, 1.0, 42.4936637878418, 641.0245361328125, 1.0, 114.23503112792969, 632.3477783203125, 1.0, 181.2540740966797, 624.6585693359375, 1.0, 244.18896484375, 617.8145141601562, 1.0, 304.5475769042969, 611.2103881835938, 1.0, 362.33282470703125, 604.4598999023438, 1.0, 417.4970703125, 597.970458984375, 1.0, 470.03045654296875, 591.4044189453125, 1.0, 520.1053466796875, 585.2901611328125, 1.0, 567.705078125, 579.39404296875, 1.0, 71.84667205810547, 64.973388671875, 1.0, 141.2090301513672, 72.14015197753906, 1.0, 206.13870239257812, 78.3087158203125, 1.0, 267.8428955078125, 84.08580017089844, 1.0, 327.0614013671875, 89.6703872680664, 1.0, 383.8471374511719, 95.4654541015625, 1.0, 438.2171630859375, 101.09745025634766, 1.0, 489.9040832519531, 106.54684448242188, 1.0, 539.305908203125, 111.75563049316406, 1.0, 586.321044921875, 116.68053436279297, 1.0, 73.31554412841797, 129.65814208984375, 1.0, 141.9579620361328, 134.71746826171875, 1.0, 206.76414489746094, 139.26150512695312, 1.0, 268.8657531738281, 143.62245178222656, 1.0, 328.5106506347656, 148.17941284179688, 1.0, 385.5683898925781, 152.59725952148438, 1.0, 439.8343200683594, 156.92005920410156, 1.0, 491.68133544921875, 161.10519409179688, 1.0, 541.016357421875, 165.10665893554688, 1.0, 588.06005859375, 168.7788543701172, 1.0, 74.47309112548828, 194.55978393554688, 1.0, 142.81544494628906, 197.7351837158203, 1.0, 207.826904296875, 200.72830200195312, 1.0, 270.2151794433594, 203.87010192871094, 1.0, 330.1361083984375, 206.93069458007812, 1.0, 387.2958068847656, 210.02943420410156, 1.0, 441.67767333984375, 212.98377990722656, 1.0, 493.4777526855469, 215.8501739501953, 1.0, 542.7153930664062, 218.4658203125, 1.0, 589.677490234375, 221.09251403808594, 1.0, 75.5283432006836, 259.5541076660156, 1.0, 143.7447967529297, 261.1806945800781, 1.0, 208.909423828125, 262.67486572265625, 1.0, 271.5673828125, 264.2537841796875, 1.0, 331.59674072265625, 265.806884765625, 1.0, 389.04193115234375, 267.4436340332031, 1.0, 443.44482421875, 268.9700622558594, 1.0, 495.2063903808594, 270.42706298828125, 1.0, 544.5176391601562, 271.8739929199219, 1.0, 591.5303344726562, 273.17034912109375, 1.0, 76.6600112915039, 324.9928894042969, 1.0, 144.9994659423828, 324.9419860839844, 1.0, 210.1722412109375, 324.918701171875, 1.0, 273.1060485839844, 324.9537048339844, 1.0, 333.2073974609375, 325.0414733886719, 1.0, 390.5666198730469, 325.0565185546875, 1.0, 445.0476989746094, 325.1819763183594, 1.0, 496.9888610839844, 325.3026428222656, 1.0, 546.217529296875, 325.3831481933594, 1.0, 593.2578735351562, 325.5030517578125, 1.0, 77.91158294677734, 390.106689453125, 1.0, 146.28424072265625, 388.5767822265625, 1.0, 211.5664520263672, 387.0700378417969, 1.0, 274.47576904296875, 385.56640625, 1.0, 334.7145080566406, 384.1077880859375, 1.0, 392.1731262207031, 382.5616760253906, 1.0, 446.68218994140625, 381.1150207519531, 1.0, 498.6357116699219, 379.8735046386719, 1.0, 547.8670043945312, 378.769287109375, 1.0, 594.8973999023438, 377.5047607421875, 1.0, 79.45706939697266, 455.7854309082031, 1.0, 147.82949829101562, 452.6614074707031, 1.0, 213.06048583984375, 449.6162414550781, 1.0, 275.9029846191406, 446.60009765625, 1.0, 336.224609375, 443.54095458984375, 1.0, 393.6123046875, 440.59722900390625, 1.0, 448.27001953125, 437.6752014160156, 1.0, 500.2298889160156, 435.0489196777344, 1.0, 549.5499877929688, 432.4696350097656, 1.0, 596.6273803710938, 430.1512145996094, 1.0, 81.08773040771484, 521.6031494140625, 1.0, 149.6183624267578, 516.7642211914062, 1.0, 214.7593994140625, 512.3590698242188, 1.0, 277.46820068359375, 507.7716369628906, 1.0, 337.6042785644531, 503.36358642578125, 1.0, 395.0916748046875, 498.7561340332031, 1.0, 449.6916809082031, 494.5017395019531, 1.0, 501.68408203125, 490.3475341796875, 1.0, 551.2515258789062, 486.5296325683594, 1.0, 598.3232421875, 482.81365966796875, 1.0, 82.53736877441406, 587.6080932617188, 1.0, 151.5994873046875, 580.9488525390625, 1.0, 216.74192810058594, 575.0464477539062, 1.0, 279.1597900390625, 569.2078247070312, 1.0, 339.06396484375, 563.3203735351562, 1.0, 396.4803466796875, 557.4310302734375, 1.0, 451.1556091308594, 551.61669921875, 1.0, 503.28076171875, 546.1670532226562, 1.0, 552.7586059570312, 540.9725341796875, 1.0, 600.042236328125, 536.1776733398438, 1.0, 83.81780242919922, 653.8369140625, 1.0, 153.5187530517578, 645.1656494140625, 1.0, 218.808837890625, 637.5654907226562, 1.0, 281.0804138183594, 630.3462524414062, 1.0, 340.74951171875, 623.209228515625, 1.0, 397.90020751953125, 616.0928344726562, 1.0, 452.6557922363281, 609.1173706054688, 1.0, 504.756103515625, 602.2732543945312, 1.0, 554.4246215820312, 595.7825317382812, 1.0, 601.7097778320312, 589.7095336914062, 1.0, 88.77007293701172, 118.9661636352539, 1.0, 150.64529418945312, 124.22348022460938, 1.0, 209.45057678222656, 128.7959442138672, 1.0, 265.6123046875, 133.38514709472656, 1.0, 319.50042724609375, 137.77418518066406, 1.0, 371.16082763671875, 142.44174194335938, 1.0, 420.42791748046875, 146.67605590820312, 1.0, 467.4390563964844, 150.9126739501953, 1.0, 512.3508911132812, 154.99314880371094, 1.0, 555.1232299804688, 158.83497619628906, 1.0, 91.1017837524414, 175.76673889160156, 1.0, 153.35794067382812, 179.3649444580078, 1.0, 212.49790954589844, 182.71987915039062, 1.0, 269.37481689453125, 185.99034118652344, 1.0, 323.798828125, 189.45916748046875, 1.0, 375.88800048828125, 192.68923950195312, 1.0, 425.54058837890625, 196.09173583984375, 1.0, 472.87548828125, 199.11073303222656, 1.0, 517.8677978515625, 202.0345916748047, 1.0, 560.8994750976562, 204.81668090820312, 1.0, 93.39482116699219, 233.6326141357422, 1.0, 155.97120666503906, 235.6654052734375, 1.0, 215.7914276123047, 237.77001953125, 1.0, 273.3464050292969, 239.8393096923828, 1.0, 328.3725280761719, 241.9322052001953, 1.0, 380.7666320800781, 244.10861206054688, 1.0, 430.7109375, 246.11708068847656, 1.0, 478.3136901855469, 248.00596618652344, 1.0, 523.6039428710938, 249.8111114501953, 1.0, 566.700439453125, 251.54098510742188, 1.0, 95.7934341430664, 292.6268310546875, 1.0, 158.95632934570312, 293.336669921875, 1.0, 219.39730834960938, 294.090087890625, 1.0, 277.38134765625, 294.7590637207031, 1.0, 332.984619140625, 295.4370422363281, 1.0, 385.8684997558594, 296.1957702636719, 1.0, 436.1148376464844, 296.89422607421875, 1.0, 483.9232482910156, 297.6243591308594, 1.0, 529.4198608398438, 298.2327575683594, 1.0, 572.6901245117188, 298.79864501953125, 1.0, 98.48149871826172, 352.9916687011719, 1.0, 162.1273651123047, 352.1202697753906, 1.0, 223.12615966796875, 351.3622131347656, 1.0, 281.5850524902344, 350.6307678222656, 1.0, 337.6779479980469, 349.9338684082031, 1.0, 390.841064453125, 349.1950378417969, 1.0, 441.5206298828125, 348.54644775390625, 1.0, 489.5375671386719, 347.9499816894531, 1.0, 535.2335205078125, 347.3280029296875, 1.0, 578.7345581054688, 346.9198913574219, 1.0, 101.36824035644531, 414.2200927734375, 1.0, 165.50340270996094, 411.7737121582031, 1.0, 226.91346740722656, 409.58245849609375, 1.0, 285.9074401855469, 407.3417663574219, 1.0, 342.3184814453125, 405.13330078125, 1.0, 395.8743591308594, 402.8985900878906, 1.0, 446.8196716308594, 400.84771728515625, 1.0, 495.1922302246094, 398.81317138671875, 1.0, 541.0382690429688, 397.0690612792969, 1.0, 584.80908203125, 395.3835144042969, 1.0, 104.54874420166016, 476.9002380371094, 1.0, 169.124267578125, 472.9372863769531, 1.0, 230.9963836669922, 469.2102966308594, 1.0, 290.2856140136719, 465.36077880859375, 1.0, 347.06414794921875, 461.5424499511719, 1.0, 401.08636474609375, 457.9178771972656, 1.0, 452.2715759277344, 454.3808288574219, 1.0, 500.78070068359375, 451.07666015625, 1.0, 547.1153564453125, 447.88116455078125, 1.0, 591.05712890625, 444.9922790527344, 1.0, 107.72763061523438, 540.8071899414062, 1.0, 173.2147674560547, 535.2113647460938, 1.0, 235.3491668701172, 529.780029296875, 1.0, 294.900634765625, 524.4472045898438, 1.0, 351.8670349121094, 519.124755859375, 1.0, 406.193359375, 513.85888671875, 1.0, 457.6610412597656, 508.9862976074219, 1.0, 506.6149597167969, 504.1621398925781, 1.0, 553.1859741210938, 499.7160339355469, 1.0, 597.406005859375, 495.5821838378906, 1.0, 111.30128479003906, 605.9645385742188, 1.0, 177.39761352539062, 598.4373779296875, 1.0, 239.9914093017578, 591.47509765625, 1.0, 299.68878173828125, 584.5852661132812, 1.0, 356.8619384765625, 577.84228515625, 1.0, 411.4456787109375, 571.1539306640625, 1.0, 463.26458740234375, 564.6757202148438, 1.0, 512.4630126953125, 558.5291137695312, 1.0, 559.2544555664062, 552.7050170898438, 1.0, 603.835205078125, 547.247802734375, 1.0, 114.61356353759766, 672.3707275390625, 1.0, 181.71875, 662.6378173828125, 1.0, 244.88023376464844, 653.9728393554688, 1.0, 304.80316162109375, 645.6055297851562, 1.0, 362.2366943359375, 637.43701171875, 1.0, 416.86224365234375, 629.3350219726562, 1.0, 468.9741516113281, 621.5293579101562, 1.0, 518.4925537109375, 613.9107666015625, 1.0, 565.6395874023438, 606.7980346679688, 1.0, 610.477294921875, 599.91650390625, 1.0, 72.15361022949219, 123.408935546875, 1.0, 134.2899169921875, 127.12602233886719, 1.0, 193.09890747070312, 130.30470275878906, 1.0, 249.2510986328125, 133.50741577148438, 1.0, 303.24774169921875, 136.57257080078125, 1.0, 355.0376892089844, 139.7841033935547, 1.0, 404.6521301269531, 142.9275665283203, 1.0, 451.959716796875, 146.142578125, 1.0, 497.3462829589844, 149.1625518798828, 1.0, 540.4861450195312, 151.91908264160156, 1.0, 75.20829772949219, 179.60789489746094, 1.0, 137.48838806152344, 181.76673889160156, 1.0, 196.53506469726562, 183.71971130371094, 1.0, 253.3568115234375, 185.7272186279297, 1.0, 307.82720947265625, 187.79547119140625, 1.0, 360.2180480957031, 189.81405639648438, 1.0, 410.1059875488281, 191.91236877441406, 1.0, 457.6871032714844, 193.96580505371094, 1.0, 503.0794372558594, 195.896728515625, 1.0, 546.4754028320312, 197.72984313964844, 1.0, 78.22248840332031, 236.822998046875, 1.0, 140.61647033691406, 237.4757843017578, 1.0, 200.3497772216797, 238.1765899658203, 1.0, 257.64404296875, 238.96044921875, 1.0, 312.7313232421875, 239.89060974121094, 1.0, 365.3352355957031, 240.73150634765625, 1.0, 415.5448303222656, 241.65997314453125, 1.0, 463.3963317871094, 242.482177734375, 1.0, 508.9517517089844, 243.3854217529297, 1.0, 552.5104370117188, 244.09933471679688, 1.0, 81.33531188964844, 294.8537902832031, 1.0, 144.18418884277344, 294.2917785644531, 1.0, 204.23660278320312, 293.6507873535156, 1.0, 262.0475769042969, 293.1299743652344, 1.0, 317.52081298828125, 292.7091064453125, 1.0, 370.5525817871094, 292.2935791015625, 1.0, 421.090087890625, 291.927978515625, 1.0, 469.09417724609375, 291.6767272949219, 1.0, 514.838623046875, 291.3335266113281, 1.0, 558.53759765625, 290.94915771484375, 1.0, 84.41571044921875, 354.2886047363281, 1.0, 147.68963623046875, 352.20037841796875, 1.0, 208.4169921875, 350.2003173828125, 1.0, 266.6141052246094, 348.2311706542969, 1.0, 322.54119873046875, 346.436279296875, 1.0, 375.83477783203125, 344.666259765625, 1.0, 426.59375, 343.0622863769531, 1.0, 474.7799987792969, 341.47821044921875, 1.0, 520.7216186523438, 340.06494140625, 1.0, 564.62744140625, 338.6543884277344, 1.0, 87.83220672607422, 414.36572265625, 1.0, 151.52853393554688, 410.75628662109375, 1.0, 212.53298950195312, 407.4414367675781, 1.0, 271.2432556152344, 404.0902099609375, 1.0, 327.4656677246094, 400.7272644042969, 1.0, 381.1649475097656, 397.6440124511719, 1.0, 432.2182922363281, 394.5872802734375, 1.0, 480.5876770019531, 391.8221435546875, 1.0, 526.7216186523438, 389.12109375, 1.0, 570.7045288085938, 386.5406188964844, 1.0, 91.39734649658203, 475.7440185546875, 1.0, 155.6331024169922, 470.6737365722656, 1.0, 217.02420043945312, 465.7836608886719, 1.0, 275.9140930175781, 461.090576171875, 1.0, 332.4588928222656, 456.38671875, 1.0, 386.3895568847656, 451.69677734375, 1.0, 437.62060546875, 447.37982177734375, 1.0, 486.3486022949219, 443.24822998046875, 1.0, 532.62158203125, 439.2367858886719, 1.0, 576.8524780273438, 435.51190185546875, 1.0, 95.15322875976562, 538.1798095703125, 1.0, 159.90548706054688, 531.5516967773438, 1.0, 221.58612060546875, 525.1984252929688, 1.0, 280.7747802734375, 518.948974609375, 1.0, 337.4604797363281, 512.8236694335938, 1.0, 391.6372985839844, 506.74395751953125, 1.0, 443.1521911621094, 500.9384460449219, 1.0, 492.1927185058594, 495.4525146484375, 1.0, 538.6657104492188, 490.294677734375, 1.0, 583.1468505859375, 485.2747802734375, 1.0, 98.81460571289062, 601.780029296875, 1.0, 164.49267578125, 593.2634887695312, 1.0, 226.45164489746094, 585.4247436523438, 1.0, 285.6913146972656, 577.7843627929688, 1.0, 342.6275329589844, 570.264892578125, 1.0, 396.9078063964844, 562.7911987304688, 1.0, 448.6789855957031, 555.556884765625, 1.0, 497.96044921875, 548.710205078125, 1.0, 544.7244262695312, 542.252197265625, 1.0, 589.47900390625, 536.0574951171875, 1.0, 102.58931732177734, 666.4903564453125, 1.0, 169.27267456054688, 655.8401489257812, 1.0, 231.6327362060547, 646.3864135742188, 1.0, 291.2019348144531, 637.3731689453125, 1.0, 348.1197204589844, 628.4695434570312, 1.0, 402.5252380371094, 619.6522216796875, 1.0, 454.48980712890625, 611.238037109375, 1.0, 503.97723388671875, 602.9161376953125, 1.0, 551.0911865234375, 595.10888671875, 1.0, 595.8787841796875, 587.6444702148438, 1.0, 34.300384521484375, 133.90042114257812, 1.0, 98.4622802734375, 139.75997924804688, 1.0, 158.4281463623047, 145.08578491210938, 1.0, 215.34722900390625, 149.84567260742188, 1.0, 270.0207214355469, 154.58450317382812, 1.0, 322.45391845703125, 159.41183471679688, 1.0, 372.7303161621094, 163.90432739257812, 1.0, 420.6701965332031, 168.56854248046875, 1.0, 466.49859619140625, 172.86099243164062, 1.0, 510.1249694824219, 177.01287841796875, 1.0, 35.282596588134766, 190.4480743408203, 1.0, 99.73329162597656, 194.80828857421875, 1.0, 159.92510986328125, 198.60781860351562, 1.0, 217.4468536376953, 202.31280517578125, 1.0, 272.7426452636719, 205.84756469726562, 1.0, 325.728271484375, 209.4743194580078, 1.0, 376.42535400390625, 213.10362243652344, 1.0, 424.7400817871094, 216.47731018066406, 1.0, 470.7060546875, 219.74205017089844, 1.0, 514.7156982421875, 222.82479858398438, 1.0, 36.27130889892578, 248.14991760253906, 1.0, 100.88543701171875, 250.9031982421875, 1.0, 161.62660217285156, 253.44100952148438, 1.0, 219.67257690429688, 255.75953674316406, 1.0, 275.6680908203125, 258.22747802734375, 1.0, 329.1988525390625, 260.5224609375, 1.0, 380.2798767089844, 262.79931640625, 1.0, 428.7948913574219, 265.1888427734375, 1.0, 475.2447509765625, 267.3263854980469, 1.0, 519.241943359375, 269.38397216796875, 1.0, 37.21852111816406, 306.8545837402344, 1.0, 102.15416717529297, 308.0528259277344, 1.0, 163.45382690429688, 309.1600341796875, 1.0, 222.12152099609375, 310.3302917480469, 1.0, 278.5569152832031, 311.432373046875, 1.0, 332.64263916015625, 312.48150634765625, 1.0, 384.08154296875, 313.5646057128906, 1.0, 433.06182861328125, 314.53033447265625, 1.0, 479.541748046875, 315.51043701171875, 1.0, 523.83642578125, 316.36456298828125, 1.0, 38.21741485595703, 366.822509765625, 1.0, 103.87936401367188, 366.5515441894531, 1.0, 165.5220184326172, 366.3236083984375, 1.0, 224.72824096679688, 366.0667419433594, 1.0, 281.656005859375, 365.72015380859375, 1.0, 336.1440734863281, 365.37158203125, 1.0, 387.8068542480469, 365.062255859375, 1.0, 437.18658447265625, 364.76971435546875, 1.0, 483.953369140625, 364.4488525390625, 1.0, 528.5045776367188, 364.2451477050781, 1.0, 39.283512115478516, 427.6241455078125, 1.0, 105.52139282226562, 425.71441650390625, 1.0, 167.7467803955078, 424.0935363769531, 1.0, 227.44442749023438, 422.4046936035156, 1.0, 284.6607360839844, 420.68267822265625, 1.0, 339.5191955566406, 418.8210144042969, 1.0, 391.693115234375, 417.1739807128906, 1.0, 441.2488098144531, 415.5196838378906, 1.0, 488.4235534667969, 414.03167724609375, 1.0, 533.17333984375, 412.4958801269531, 1.0, 40.42695999145508, 490.13690185546875, 1.0, 107.30780792236328, 486.5108337402344, 1.0, 170.2471923828125, 483.3025207519531, 1.0, 230.26588439941406, 480.1257629394531, 1.0, 287.837646484375, 476.8801574707031, 1.0, 342.9229736328125, 473.6639709472656, 1.0, 395.4712219238281, 470.63330078125, 1.0, 445.3404541015625, 467.5396728515625, 1.0, 492.7243347167969, 464.6661682128906, 1.0, 537.747314453125, 462.0441589355469, 1.0, 41.459041595458984, 553.7525634765625, 1.0, 109.48593139648438, 548.2406005859375, 1.0, 172.88394165039062, 543.296875, 1.0, 233.36453247070312, 538.671875, 1.0, 291.13580322265625, 534.1240234375, 1.0, 346.5061950683594, 529.4771728515625, 1.0, 399.3523864746094, 524.9547729492188, 1.0, 449.54022216796875, 520.55078125, 1.0, 497.2737121582031, 516.3104248046875, 1.0, 542.5886840820312, 512.39208984375, 1.0, 42.38199234008789, 618.7579345703125, 1.0, 111.61756134033203, 611.0291748046875, 1.0, 175.929931640625, 604.441650390625, 1.0, 236.5585174560547, 598.3333129882812, 1.0, 294.6327209472656, 592.2791137695312, 1.0, 350.2442321777344, 586.3250732421875, 1.0, 403.3138122558594, 580.333251953125, 1.0, 453.7062072753906, 574.6310424804688, 1.0, 501.7628173828125, 569.091796875, 1.0, 547.4309692382812, 563.7647705078125, 1.0, 43.209266662597656, 685.3463745117188, 1.0, 113.56436157226562, 675.259521484375, 1.0, 178.8863983154297, 666.4392700195312, 1.0, 240.25753784179688, 658.5916748046875, 1.0, 298.547119140625, 651.2308349609375, 1.0, 354.2424011230469, 643.83447265625, 1.0, 407.4509582519531, 636.6472778320312, 1.0, 458.16851806640625, 629.4710083007812, 1.0, 506.4657287597656, 622.696533203125, 1.0, 552.4363403320312, 616.1542358398438, 1.0, 22.953632354736328, 137.36578369140625, 1.0, 87.79594421386719, 143.46725463867188, 1.0, 148.15695190429688, 148.7759246826172, 1.0, 205.26231384277344, 153.73757934570312, 1.0, 260.1680603027344, 158.58416748046875, 1.0, 312.6971435546875, 163.40159606933594, 1.0, 363.16021728515625, 168.1812286376953, 1.0, 411.2882080078125, 172.68992614746094, 1.0, 457.30419921875, 177.1683807373047, 1.0, 501.02783203125, 181.37228393554688, 1.0, 24.036441802978516, 194.13075256347656, 1.0, 88.93379974365234, 198.65225219726562, 1.0, 149.4853973388672, 202.576416015625, 1.0, 207.26983642578125, 206.37649536132812, 1.0, 262.6057434082031, 210.0003204345703, 1.0, 315.87530517578125, 213.73204040527344, 1.0, 366.72674560546875, 217.3585968017578, 1.0, 415.2731628417969, 220.68104553222656, 1.0, 461.4371337890625, 224.13027954101562, 1.0, 505.5024719238281, 227.22080993652344, 1.0, 24.83206558227539, 252.2289581298828, 1.0, 90.07637023925781, 255.0681610107422, 1.0, 151.12901306152344, 257.60052490234375, 1.0, 209.42095947265625, 260.0741882324219, 1.0, 265.4539794921875, 262.46014404296875, 1.0, 319.195068359375, 264.8877258300781, 1.0, 370.47265625, 267.3285827636719, 1.0, 419.2471008300781, 269.5907897949219, 1.0, 465.6959228515625, 271.6709899902344, 1.0, 509.8385314941406, 273.8002014160156, 1.0, 25.72937774658203, 311.2482604980469, 1.0, 91.27843475341797, 312.5685729980469, 1.0, 152.82101440429688, 313.70074462890625, 1.0, 211.70919799804688, 314.82183837890625, 1.0, 268.3524169921875, 315.9079895019531, 1.0, 322.58111572265625, 316.9267578125, 1.0, 374.1710205078125, 318.0610656738281, 1.0, 423.2896423339844, 318.96368408203125, 1.0, 470.0474548339844, 320.0278015136719, 1.0, 514.543701171875, 320.8912353515625, 1.0, 26.643404006958008, 371.5876159667969, 1.0, 92.86140441894531, 371.2577819824219, 1.0, 154.8137664794922, 370.97509765625, 1.0, 214.24887084960938, 370.70574951171875, 1.0, 271.35009765625, 370.31988525390625, 1.0, 325.9638366699219, 370.02447509765625, 1.0, 377.87628173828125, 369.71807861328125, 1.0, 427.4164733886719, 369.4146728515625, 1.0, 474.4358215332031, 369.00299072265625, 1.0, 519.1201782226562, 368.7999572753906, 1.0, 27.60863494873047, 432.7729187011719, 1.0, 94.50289154052734, 430.7221374511719, 1.0, 157.06387329101562, 429.0242919921875, 1.0, 216.884521484375, 427.3559265136719, 1.0, 274.3472900390625, 425.5425109863281, 1.0, 329.3987121582031, 423.6839294433594, 1.0, 381.6409606933594, 422.0921325683594, 1.0, 431.4363708496094, 420.4228515625, 1.0, 478.7775573730469, 418.769287109375, 1.0, 523.6525268554688, 417.2752685546875, 1.0, 28.764522552490234, 495.5030212402344, 1.0, 96.45955657958984, 491.6739501953125, 1.0, 159.64743041992188, 488.4461669921875, 1.0, 219.72610473632812, 485.24053955078125, 1.0, 277.5263977050781, 481.9443359375, 1.0, 332.8003845214844, 478.7040100097656, 1.0, 385.5190124511719, 475.50933837890625, 1.0, 435.594482421875, 472.4759216308594, 1.0, 483.202392578125, 469.5372314453125, 1.0, 528.459228515625, 466.7781982421875, 1.0, 29.794788360595703, 559.4415893554688, 1.0, 98.56429290771484, 553.6386108398438, 1.0, 162.4178009033203, 548.6842041015625, 1.0, 222.98141479492188, 543.9749755859375, 1.0, 280.9977111816406, 539.3849487304688, 1.0, 336.4666748046875, 534.64794921875, 1.0, 389.4430847167969, 530.1524658203125, 1.0, 439.7304992675781, 525.610595703125, 1.0, 487.6285095214844, 521.3587646484375, 1.0, 533.227294921875, 517.350830078125, 1.0, 30.70627784729004, 624.981201171875, 1.0, 100.65892791748047, 616.8322143554688, 1.0, 165.4477081298828, 610.0266723632812, 1.0, 226.3727569580078, 603.6627807617188, 1.0, 284.5711975097656, 597.5887451171875, 1.0, 340.334228515625, 591.5661010742188, 1.0, 393.51129150390625, 585.5967407226562, 1.0, 444.18798828125, 579.7626342773438, 1.0, 492.2260437011719, 574.1837158203125, 1.0, 538.0993041992188, 568.7426147460938, 1.0, 31.57171058654785, 691.9331665039062, 1.0, 102.61907196044922, 681.4306640625, 1.0, 168.6241455078125, 672.29296875, 1.0, 230.0928192138672, 664.2031860351562, 1.0, 288.5758361816406, 656.6456298828125, 1.0, 344.45599365234375, 649.2979125976562, 1.0, 397.691162109375, 641.99560546875, 1.0, 448.6280517578125, 634.7208862304688, 1.0, 497.0934753417969, 627.902587890625, 1.0, 543.1521606445312, 621.2880249023438, 1.0, 38.58602523803711, 151.20123291015625, 1.0, 102.15674591064453, 156.12982177734375, 1.0, 161.66087341308594, 160.36199951171875, 1.0, 218.37100219726562, 164.44261169433594, 1.0, 272.82000732421875, 168.4290313720703, 1.0, 325.195556640625, 172.4443817138672, 1.0, 375.34063720703125, 176.36422729492188, 1.0, 423.1951904296875, 180.20074462890625, 1.0, 468.78204345703125, 183.7713623046875, 1.0, 512.5072631835938, 187.4045867919922, 1.0, 40.137691497802734, 207.41116333007812, 1.0, 103.87630462646484, 210.77099609375, 1.0, 163.63723754882812, 213.75436401367188, 1.0, 221.0664825439453, 216.56727600097656, 1.0, 276.0911865234375, 219.48841857910156, 1.0, 329.0792541503906, 222.43251037597656, 1.0, 379.5044860839844, 225.32135009765625, 1.0, 427.6495056152344, 227.97317504882812, 1.0, 473.59393310546875, 230.51708984375, 1.0, 517.48388671875, 232.99459838867188, 1.0, 41.688602447509766, 264.8307189941406, 1.0, 105.70580291748047, 266.704833984375, 1.0, 166.01190185546875, 268.3490295410156, 1.0, 223.82015991210938, 270.033447265625, 1.0, 279.545654296875, 271.6728820800781, 1.0, 332.8375244140625, 273.30645751953125, 1.0, 383.76080322265625, 274.901611328125, 1.0, 432.2828674316406, 276.45623779296875, 1.0, 478.4696960449219, 278.02520751953125, 1.0, 522.4412841796875, 279.3546142578125, 1.0, 43.27496337890625, 323.33270263671875, 1.0, 107.56729888916016, 323.712890625, 1.0, 168.40618896484375, 323.9478759765625, 1.0, 226.7960205078125, 324.32928466796875, 1.0, 283.085693359375, 324.67901611328125, 1.0, 336.8519287109375, 324.9390869140625, 1.0, 388.16827392578125, 325.3568115234375, 1.0, 436.84735107421875, 325.67108154296875, 1.0, 483.3395690917969, 325.9795227050781, 1.0, 527.5610961914062, 326.2174377441406, 1.0, 44.8243293762207, 383.0559997558594, 1.0, 109.7165298461914, 381.9292907714844, 1.0, 171.15390014648438, 380.83056640625, 1.0, 229.96249389648438, 379.7894287109375, 1.0, 286.6362609863281, 378.71417236328125, 1.0, 340.8385009765625, 377.68511962890625, 1.0, 392.4539489746094, 376.6217956542969, 1.0, 441.56854248046875, 375.74029541015625, 1.0, 488.35302734375, 374.7334899902344, 1.0, 532.6495361328125, 373.93426513671875, 1.0, 46.51844787597656, 443.5409851074219, 1.0, 112.17852783203125, 440.8190612792969, 1.0, 173.87550354003906, 438.3774108886719, 1.0, 233.309814453125, 435.8304748535156, 1.0, 290.2822265625, 433.405029296875, 1.0, 344.8559265136719, 430.9458312988281, 1.0, 396.72332763671875, 428.6126403808594, 1.0, 446.08868408203125, 426.36468505859375, 1.0, 493.14129638671875, 424.1853942871094, 1.0, 537.773681640625, 422.124267578125, 1.0, 48.35477828979492, 505.5635070800781, 1.0, 114.69306945800781, 501.224609375, 1.0, 177.12713623046875, 497.2259521484375, 1.0, 236.63819885253906, 493.3935852050781, 1.0, 293.93035888671875, 489.4034729003906, 1.0, 348.7780456542969, 485.54888916015625, 1.0, 401.1734924316406, 481.6495666503906, 1.0, 450.74700927734375, 478.1371765136719, 1.0, 498.0853576660156, 474.5521545410156, 1.0, 543.0016479492188, 471.3504333496094, 1.0, 50.121559143066406, 568.7677612304688, 1.0, 117.47554016113281, 562.4688110351562, 1.0, 180.4310760498047, 556.9512939453125, 1.0, 240.43301391601562, 551.625244140625, 1.0, 297.8954772949219, 546.37890625, 1.0, 353.00982666015625, 541.0590209960938, 1.0, 405.48681640625, 535.8302001953125, 1.0, 455.5009765625, 530.8369140625, 1.0, 503.093505859375, 526.1039428710938, 1.0, 548.3843383789062, 521.5844116210938, 1.0, 51.906585693359375, 633.45556640625, 1.0, 120.34434509277344, 625.0392456054688, 1.0, 184.13075256347656, 617.6381225585938, 1.0, 244.3610382080078, 610.8148803710938, 1.0, 302.0978088378906, 604.2196044921875, 1.0, 357.31658935546875, 597.5921630859375, 1.0, 410.0990295410156, 591.1381225585938, 1.0, 460.37457275390625, 584.666748046875, 1.0, 508.20098876953125, 578.5847778320312, 1.0, 553.6387939453125, 572.818603515625, 1.0, 53.25566482543945, 699.5446166992188, 1.0, 123.09700012207031, 688.7347412109375, 1.0, 187.78102111816406, 679.3026123046875, 1.0, 248.63580322265625, 670.7640991210938, 1.0, 306.5857238769531, 662.7513427734375, 1.0, 361.88934326171875, 654.8301391601562, 1.0, 414.8224182128906, 647.0375366210938, 1.0, 465.4030456542969, 639.4007568359375, 1.0, 513.45849609375, 632.048583984375, 1.0, 559.2698364257812, 625.002197265625, 1.0, 96.73041534423828, 59.44446563720703, 1.0, 157.21278381347656, 62.500118255615234, 1.0, 214.66751098632812, 64.8130111694336, 1.0, 269.7533874511719, 67.19503021240234, 1.0, 323.0606689453125, 69.52996063232422, 1.0, 374.2843017578125, 72.05481719970703, 1.0, 423.6101989746094, 74.46896362304688, 1.0, 471.1693115234375, 77.10026550292969, 1.0, 516.685546875, 79.50457763671875, 1.0, 560.455078125, 81.84747314453125, 1.0, 100.6465072631836, 115.06523132324219, 1.0, 160.94773864746094, 116.63713073730469, 1.0, 218.43948364257812, 117.77290344238281, 1.0, 273.898193359375, 119.17853546142578, 1.0, 327.4302062988281, 120.55538940429688, 1.0, 379.0290832519531, 122.09286499023438, 1.0, 428.50830078125, 123.74348449707031, 1.0, 476.0413818359375, 125.3325424194336, 1.0, 521.5726928710938, 126.84367370605469, 1.0, 565.4268798828125, 128.33363342285156, 1.0, 104.60444641113281, 171.21348571777344, 1.0, 164.6512908935547, 171.3095703125, 1.0, 222.37265014648438, 171.36907958984375, 1.0, 278.22589111328125, 171.7324676513672, 1.0, 332.0174865722656, 172.13037109375, 1.0, 383.6955871582031, 172.7243194580078, 1.0, 433.4676818847656, 173.39340209960938, 1.0, 481.06011962890625, 174.0054931640625, 1.0, 526.5828857421875, 174.46774291992188, 1.0, 570.4708251953125, 175.11627197265625, 1.0, 108.395751953125, 227.64926147460938, 1.0, 168.5160675048828, 226.60972595214844, 1.0, 226.5208282470703, 225.688232421875, 1.0, 282.6422424316406, 224.81179809570312, 1.0, 336.71820068359375, 224.16087341308594, 1.0, 388.6468200683594, 223.7543487548828, 1.0, 438.43829345703125, 223.20372009277344, 1.0, 486.0824279785156, 222.84066772460938, 1.0, 531.6441650390625, 222.37014770507812, 1.0, 575.505126953125, 221.97149658203125, 1.0, 112.33146667480469, 284.7355041503906, 1.0, 172.5895233154297, 282.51385498046875, 1.0, 230.82308959960938, 280.3622741699219, 1.0, 287.2947692871094, 278.45684814453125, 1.0, 341.4965515136719, 276.6841125488281, 1.0, 393.5856628417969, 275.0716247558594, 1.0, 443.4269104003906, 273.53863525390625, 1.0, 491.0852966308594, 272.021240234375, 1.0, 536.7332763671875, 270.5230712890625, 1.0, 580.542236328125, 269.2425231933594, 1.0, 116.36802673339844, 342.1842956542969, 1.0, 176.79872131347656, 338.60223388671875, 1.0, 235.33969116210938, 335.46392822265625, 1.0, 291.9216003417969, 332.352294921875, 1.0, 346.3866271972656, 329.3524169921875, 1.0, 398.5094299316406, 326.4816589355469, 1.0, 448.4654541015625, 323.78802490234375, 1.0, 496.1846008300781, 321.19732666015625, 1.0, 541.8104248046875, 318.6542663574219, 1.0, 585.5953369140625, 316.3890380859375, 1.0, 120.65599822998047, 400.27496337890625, 1.0, 181.23048400878906, 395.63067626953125, 1.0, 239.85191345214844, 391.1826477050781, 1.0, 296.57672119140625, 386.801025390625, 1.0, 351.1930847167969, 382.58294677734375, 1.0, 403.4125061035156, 378.48760986328125, 1.0, 453.383056640625, 374.6279602050781, 1.0, 501.18145751953125, 370.88470458984375, 1.0, 546.8937377929688, 367.42669677734375, 1.0, 590.6573486328125, 364.0429382324219, 1.0, 125.19471740722656, 458.7622375488281, 1.0, 185.85865783691406, 452.96868896484375, 1.0, 244.53465270996094, 447.36883544921875, 1.0, 301.346435546875, 441.6460876464844, 1.0, 356.00238037109375, 436.2081298828125, 1.0, 408.35107421875, 430.89459228515625, 1.0, 458.3744812011719, 425.7473449707031, 1.0, 506.24298095703125, 420.9639892578125, 1.0, 551.9556274414062, 416.3918762207031, 1.0, 595.7656860351562, 412.03375244140625, 1.0, 129.90745544433594, 517.82470703125, 1.0, 190.61065673828125, 510.78900146484375, 1.0, 249.37937927246094, 503.8909912109375, 1.0, 306.1011657714844, 497.0757141113281, 1.0, 360.7250061035156, 490.32763671875, 1.0, 413.0731201171875, 483.8022766113281, 1.0, 463.2410583496094, 477.55731201171875, 1.0, 511.1235046386719, 471.5673522949219, 1.0, 556.9700317382812, 465.90093994140625, 1.0, 600.9426879882812, 460.51458740234375, 1.0, 134.75326538085938, 577.02392578125, 1.0, 195.64845275878906, 568.7454833984375, 1.0, 254.37664794921875, 560.7122802734375, 1.0, 310.93939208984375, 552.72998046875, 1.0, 365.5946960449219, 544.831787109375, 1.0, 417.961181640625, 537.2256469726562, 1.0, 468.2001953125, 529.7277221679688, 1.0, 516.2417602539062, 522.6218872070312, 1.0, 562.2168579101562, 515.8599853515625, 1.0, 606.2161254882812, 509.48150634765625, 1.0, 72.47761535644531, 39.3289794921875, 1.0, 134.6459503173828, 44.03337478637695, 1.0, 193.3005828857422, 48.038143157958984, 1.0, 249.1475067138672, 51.62895584106445, 1.0, 302.8194580078125, 55.04730224609375, 1.0, 354.6011962890625, 58.57200622558594, 1.0, 404.468505859375, 62.21847152709961, 1.0, 452.3700866699219, 65.69368743896484, 1.0, 498.3255310058594, 69.1555404663086, 1.0, 542.4502563476562, 72.5999755859375, 1.0, 75.81404876708984, 95.85718536376953, 1.0, 137.6546173095703, 98.94051361083984, 1.0, 196.15382385253906, 101.5709228515625, 1.0, 252.20220947265625, 104.0014419555664, 1.0, 306.242431640625, 106.52424621582031, 1.0, 358.3154602050781, 109.16014862060547, 1.0, 408.330078125, 111.77870178222656, 1.0, 456.45587158203125, 114.44588470458984, 1.0, 502.4772033691406, 117.04011535644531, 1.0, 546.64306640625, 119.45205688476562, 1.0, 79.15949249267578, 152.79051208496094, 1.0, 140.58714294433594, 154.41334533691406, 1.0, 199.0828857421875, 155.64109802246094, 1.0, 255.42501831054688, 157.1472625732422, 1.0, 309.7901916503906, 158.59701538085938, 1.0, 362.13836669921875, 160.25433349609375, 1.0, 412.38458251953125, 161.8632354736328, 1.0, 460.4987487792969, 163.60455322265625, 1.0, 506.6163024902344, 165.13401794433594, 1.0, 550.7311401367188, 166.53326416015625, 1.0, 82.28290557861328, 209.97503662109375, 1.0, 143.47845458984375, 210.24307250976562, 1.0, 202.2388458251953, 210.4957275390625, 1.0, 258.9921875, 210.7150421142578, 1.0, 313.6029968261719, 211.13865661621094, 1.0, 366.1642761230469, 211.75439453125, 1.0, 416.5502014160156, 212.2040252685547, 1.0, 464.6710205078125, 212.8559112548828, 1.0, 510.7680358886719, 213.42166137695312, 1.0, 555.0679931640625, 214.02210998535156, 1.0, 85.27670288085938, 267.83294677734375, 1.0, 146.58949279785156, 266.78228759765625, 1.0, 205.51976013183594, 265.805908203125, 1.0, 262.49847412109375, 264.87255859375, 1.0, 317.49029541015625, 264.16064453125, 1.0, 370.1801452636719, 263.5790100097656, 1.0, 420.6332092285156, 262.9645080566406, 1.0, 468.8467712402344, 262.3773498535156, 1.0, 515.0843505859375, 261.9084167480469, 1.0, 559.2659301757812, 261.4948425292969, 1.0, 88.52117156982422, 325.69683837890625, 1.0, 149.83387756347656, 323.43017578125, 1.0, 209.08753967285156, 321.20867919921875, 1.0, 266.28375244140625, 319.1911315917969, 1.0, 321.37249755859375, 317.2366027832031, 1.0, 374.2473449707031, 315.44793701171875, 1.0, 424.7616271972656, 313.7157897949219, 1.0, 473.1239929199219, 312.0043640136719, 1.0, 519.3171997070312, 310.4284362792969, 1.0, 563.4505615234375, 308.8924560546875, 1.0, 91.82561492919922, 384.4268493652344, 1.0, 153.36111450195312, 380.7605285644531, 1.0, 212.6228790283203, 377.4422302246094, 1.0, 270.0150146484375, 374.111328125, 1.0, 325.2838439941406, 370.8493347167969, 1.0, 378.25274658203125, 367.7263488769531, 1.0, 428.82720947265625, 364.86578369140625, 1.0, 477.23388671875, 362.0757751464844, 1.0, 523.4736328125, 359.40826416015625, 1.0, 567.6734008789062, 356.8453674316406, 1.0, 95.3963394165039, 443.45263671875, 1.0, 157.1060333251953, 438.56439208984375, 1.0, 216.4614715576172, 433.9541320800781, 1.0, 273.8181457519531, 429.40960693359375, 1.0, 329.2457580566406, 424.8851013183594, 1.0, 382.2149353027344, 420.56939697265625, 1.0, 432.9034729003906, 416.4285888671875, 1.0, 481.34527587890625, 412.4730224609375, 1.0, 527.6024169921875, 408.7005615234375, 1.0, 571.93798828125, 405.0606994628906, 1.0, 99.1511001586914, 502.7724304199219, 1.0, 160.8806915283203, 496.67633056640625, 1.0, 220.35531616210938, 490.87103271484375, 1.0, 277.70001220703125, 485.21575927734375, 1.0, 333.0604553222656, 479.42242431640625, 1.0, 386.1465759277344, 473.7708435058594, 1.0, 436.8939208984375, 468.4232177734375, 1.0, 485.460693359375, 463.3312683105469, 1.0, 531.814208984375, 458.3913269042969, 1.0, 576.2208251953125, 453.6784973144531, 1.0, 102.91996765136719, 562.5341796875, 1.0, 165.18109130859375, 555.1761474609375, 1.0, 224.49940490722656, 548.0859375, 1.0, 281.7251281738281, 541.17041015625, 1.0, 337.0403137207031, 534.32177734375, 1.0, 390.055908203125, 527.4520874023438, 1.0, 440.9465026855469, 520.85498046875, 1.0, 489.5489501953125, 514.5445556640625, 1.0, 536.0432739257812, 508.4922180175781, 1.0, 580.501953125, 502.76287841796875, 1.0, 76.84519958496094, 37.207576751708984, 1.0, 138.81455993652344, 41.7939338684082, 1.0, 197.3032684326172, 45.55839538574219, 1.0, 253.01101684570312, 48.97139358520508, 1.0, 306.59344482421875, 52.352909088134766, 1.0, 358.390380859375, 55.718318939208984, 1.0, 408.1712646484375, 59.12434768676758, 1.0, 455.8743896484375, 62.61038589477539, 1.0, 501.741943359375, 65.97637939453125, 1.0, 545.7805786132812, 69.25554656982422, 1.0, 80.29183959960938, 93.50518798828125, 1.0, 141.6949462890625, 96.44989776611328, 1.0, 200.01248168945312, 98.78562927246094, 1.0, 255.97988891601562, 101.12423706054688, 1.0, 309.9117126464844, 103.579833984375, 1.0, 361.8691711425781, 106.02606964111328, 1.0, 411.8533935546875, 108.5563735961914, 1.0, 459.8680725097656, 111.11649322509766, 1.0, 505.7994689941406, 113.56129455566406, 1.0, 549.8870849609375, 115.90019989013672, 1.0, 83.24932098388672, 150.06788635253906, 1.0, 144.477294921875, 151.48333740234375, 1.0, 202.82339477539062, 152.6941680908203, 1.0, 259.14886474609375, 153.99716186523438, 1.0, 313.484375, 155.3998565673828, 1.0, 365.5986022949219, 156.86695861816406, 1.0, 415.79376220703125, 158.43057250976562, 1.0, 463.81573486328125, 160.00405883789062, 1.0, 509.8055725097656, 161.50128173828125, 1.0, 553.9735107421875, 162.77870178222656, 1.0, 86.18521118164062, 206.95846557617188, 1.0, 147.27589416503906, 207.0045166015625, 1.0, 205.78981018066406, 207.06826782226562, 1.0, 262.4729919433594, 207.3333282470703, 1.0, 317.09368896484375, 207.71400451660156, 1.0, 369.5538330078125, 208.04832458496094, 1.0, 419.6913146972656, 208.6158447265625, 1.0, 467.93408203125, 209.08485412597656, 1.0, 514.0067138671875, 209.62197875976562, 1.0, 558.142578125, 210.01602172851562, 1.0, 88.91697692871094, 264.4234924316406, 1.0, 150.21014404296875, 263.2495422363281, 1.0, 209.05198669433594, 262.1244812011719, 1.0, 265.9383239746094, 261.1890563964844, 1.0, 320.7735595703125, 260.4104309082031, 1.0, 373.4576416015625, 259.80157470703125, 1.0, 423.7610778808594, 259.1478576660156, 1.0, 471.8976135253906, 258.4684143066406, 1.0, 517.9848022460938, 257.896728515625, 1.0, 562.2225952148438, 257.3843994140625, 1.0, 91.9265365600586, 322.0770568847656, 1.0, 153.359619140625, 319.7014465332031, 1.0, 212.37855529785156, 317.42724609375, 1.0, 269.5170593261719, 315.3478088378906, 1.0, 324.54669189453125, 313.1764221191406, 1.0, 377.42047119140625, 311.4193115234375, 1.0, 427.7286071777344, 309.63970947265625, 1.0, 475.943603515625, 307.839111328125, 1.0, 522.13330078125, 306.2099609375, 1.0, 566.2928466796875, 304.6034851074219, 1.0, 95.15941619873047, 380.48333740234375, 1.0, 156.60520935058594, 376.79168701171875, 1.0, 215.76315307617188, 373.41864013671875, 1.0, 273.1880798339844, 369.9586486816406, 1.0, 328.4065856933594, 366.6484375, 1.0, 381.2314758300781, 363.5692138671875, 1.0, 431.71087646484375, 360.5528259277344, 1.0, 480.0116882324219, 357.68450927734375, 1.0, 526.1791381835938, 355.04412841796875, 1.0, 570.3659057617188, 352.43389892578125, 1.0, 98.47919464111328, 439.21075439453125, 1.0, 160.1269073486328, 434.35504150390625, 1.0, 219.40621948242188, 429.6467590332031, 1.0, 276.7685241699219, 425.05853271484375, 1.0, 332.04315185546875, 420.5042724609375, 1.0, 385.12762451171875, 416.140380859375, 1.0, 435.6131286621094, 411.9083251953125, 1.0, 483.93133544921875, 407.9139709472656, 1.0, 530.2772216796875, 404.0740051269531, 1.0, 574.5279541015625, 400.4395751953125, 1.0, 102.02011108398438, 498.4022216796875, 1.0, 163.77491760253906, 492.3210144042969, 1.0, 223.16259765625, 486.40863037109375, 1.0, 280.4849548339844, 480.4705810546875, 1.0, 335.72808837890625, 474.689697265625, 1.0, 388.78558349609375, 469.21783447265625, 1.0, 439.502685546875, 463.667236328125, 1.0, 487.9236755371094, 458.45880126953125, 1.0, 534.3201904296875, 453.5514831542969, 1.0, 578.6365356445312, 448.8492736816406, 1.0, 105.64714813232422, 557.8618774414062, 1.0, 167.66583251953125, 550.4118041992188, 1.0, 227.06666564941406, 543.3786010742188, 1.0, 284.30682373046875, 536.3128051757812, 1.0, 339.5625, 529.3931274414062, 1.0, 392.6278381347656, 522.4853515625, 1.0, 443.3916015625, 515.84716796875, 1.0, 491.9213562011719, 509.5439147949219, 1.0, 538.3771362304688, 503.5101623535156, 1.0, 582.7599487304688, 497.7420349121094, 1.0, 60.31643295288086, 47.62422180175781, 1.0, 122.72756958007812, 52.42689514160156, 1.0, 181.59210205078125, 56.45444107055664, 1.0, 237.50189208984375, 60.17593002319336, 1.0, 291.3468017578125, 63.59465408325195, 1.0, 343.0706481933594, 67.14251708984375, 1.0, 393.0096740722656, 70.7441177368164, 1.0, 440.9457702636719, 74.3985595703125, 1.0, 486.94439697265625, 77.95095825195312, 1.0, 531.0966186523438, 81.33528900146484, 1.0, 63.406211853027344, 104.07683563232422, 1.0, 125.5479736328125, 107.344482421875, 1.0, 184.26278686523438, 109.90219116210938, 1.0, 240.40821838378906, 112.42976379394531, 1.0, 294.3666076660156, 114.90987396240234, 1.0, 346.611328125, 117.5876235961914, 1.0, 396.6278381347656, 120.31593322753906, 1.0, 444.67340087890625, 122.8938980102539, 1.0, 490.7525634765625, 125.52776336669922, 1.0, 535.02392578125, 128.05899047851562, 1.0, 66.37144470214844, 160.8820343017578, 1.0, 128.25531005859375, 162.5590362548828, 1.0, 186.80433654785156, 164.00259399414062, 1.0, 243.2553253173828, 165.37550354003906, 1.0, 297.67681884765625, 166.82310485839844, 1.0, 350.1144714355469, 168.5000457763672, 1.0, 400.4356994628906, 170.21385192871094, 1.0, 448.54559326171875, 171.8437957763672, 1.0, 494.72412109375, 173.51779174804688, 1.0, 538.9724731445312, 175.0270233154297, 1.0, 69.18946075439453, 217.9351348876953, 1.0, 130.71571350097656, 218.2874755859375, 1.0, 189.5377960205078, 218.53602600097656, 1.0, 246.32443237304688, 218.81201171875, 1.0, 301.16229248046875, 219.28253173828125, 1.0, 353.8482971191406, 219.83242797851562, 1.0, 404.2732238769531, 220.4454345703125, 1.0, 452.4997863769531, 220.96852111816406, 1.0, 498.7098693847656, 221.66014099121094, 1.0, 542.8942260742188, 222.0806884765625, 1.0, 71.8978042602539, 275.668212890625, 1.0, 133.49417114257812, 274.6429748535156, 1.0, 192.59518432617188, 273.7403564453125, 1.0, 249.5988311767578, 272.88775634765625, 1.0, 304.65203857421875, 272.1831970214844, 1.0, 357.51275634765625, 271.5341491699219, 1.0, 408.14508056640625, 270.9628601074219, 1.0, 456.4207458496094, 270.4417724609375, 1.0, 502.66021728515625, 269.9648132324219, 1.0, 546.8946533203125, 269.5623474121094, 1.0, 74.61827850341797, 333.4782409667969, 1.0, 136.45346069335938, 331.3415222167969, 1.0, 195.56655883789062, 329.12420654296875, 1.0, 252.90975952148438, 327.0351867675781, 1.0, 308.1533508300781, 325.1000671386719, 1.0, 361.2887878417969, 323.4222412109375, 1.0, 411.8450012207031, 321.6553649902344, 1.0, 460.33050537109375, 319.95587158203125, 1.0, 506.5780334472656, 318.3710632324219, 1.0, 550.79052734375, 316.78704833984375, 1.0, 77.5754165649414, 392.0911560058594, 1.0, 139.51617431640625, 388.5447082519531, 1.0, 198.8560028076172, 385.27386474609375, 1.0, 256.3256530761719, 382.0156555175781, 1.0, 311.71832275390625, 378.6810607910156, 1.0, 364.80810546875, 375.5997314453125, 1.0, 415.63629150390625, 372.72503662109375, 1.0, 464.1743469238281, 369.91192626953125, 1.0, 510.50732421875, 367.2491149902344, 1.0, 554.7760009765625, 364.7335205078125, 1.0, 80.73731231689453, 451.05194091796875, 1.0, 142.741455078125, 446.35809326171875, 1.0, 202.2892608642578, 441.6668395996094, 1.0, 259.7841796875, 437.2366638183594, 1.0, 315.2790222167969, 432.6985168457031, 1.0, 368.48370361328125, 428.42193603515625, 1.0, 419.37762451171875, 424.2804260253906, 1.0, 467.9698791503906, 420.3266906738281, 1.0, 514.398681640625, 416.4297180175781, 1.0, 558.7438354492188, 412.7710266113281, 1.0, 83.94570922851562, 510.4798889160156, 1.0, 146.33709716796875, 504.3478698730469, 1.0, 205.75936889648438, 498.5427551269531, 1.0, 263.26727294921875, 492.7896728515625, 1.0, 318.7015686035156, 487.1927490234375, 1.0, 372.0814514160156, 481.63031005859375, 1.0, 422.94317626953125, 476.2029113769531, 1.0, 471.69427490234375, 471.0871276855469, 1.0, 518.2185668945312, 466.06298828125, 1.0, 562.736572265625, 461.4574279785156, 1.0, 87.22357940673828, 570.2926025390625, 1.0, 149.8231201171875, 562.7362060546875, 1.0, 209.56924438476562, 555.6497192382812, 1.0, 266.9493713378906, 548.7507934570312, 1.0, 322.3875427246094, 541.927734375, 1.0, 375.5967712402344, 535.243896484375, 1.0, 426.660400390625, 528.6124877929688, 1.0, 475.450927734375, 522.3209228515625, 1.0, 522.1305541992188, 516.2488403320312, 1.0, 566.6597290039062, 510.4836120605469, 1.0, 50.26654052734375, 39.73555374145508, 1.0, 113.47649383544922, 45.295982360839844, 1.0, 172.75814819335938, 49.86429977416992, 1.0, 229.0904541015625, 54.044063568115234, 1.0, 283.0978088378906, 57.92597961425781, 1.0, 334.9991760253906, 61.930015563964844, 1.0, 385.1769104003906, 65.87452697753906, 1.0, 433.23095703125, 69.82817840576172, 1.0, 479.367431640625, 73.68851470947266, 1.0, 523.6433715820312, 77.57759094238281, 1.0, 53.20327377319336, 96.43521881103516, 1.0, 115.97550964355469, 100.32292175292969, 1.0, 175.11842346191406, 103.572021484375, 1.0, 231.481689453125, 106.46675109863281, 1.0, 285.7724304199219, 109.40959167480469, 1.0, 338.1803894042969, 112.39451599121094, 1.0, 388.4501037597656, 115.56275177001953, 1.0, 436.7074279785156, 118.5559310913086, 1.0, 482.9024353027344, 121.51969146728516, 1.0, 527.3554077148438, 124.42311096191406, 1.0, 55.982460021972656, 153.54193115234375, 1.0, 118.39885711669922, 155.8921661376953, 1.0, 177.3998565673828, 157.7100372314453, 1.0, 234.12596130371094, 159.60671997070312, 1.0, 288.740234375, 161.49281311035156, 1.0, 341.4098205566406, 163.5843048095703, 1.0, 391.9136657714844, 165.66653442382812, 1.0, 440.31719970703125, 167.6129913330078, 1.0, 486.62750244140625, 169.6607208251953, 1.0, 530.9525756835938, 171.56964111328125, 1.0, 58.505672454833984, 210.90386962890625, 1.0, 120.72218322753906, 211.77467346191406, 1.0, 179.8262939453125, 212.4402618408203, 1.0, 236.77577209472656, 213.20443725585938, 1.0, 291.8931579589844, 214.05001831054688, 1.0, 344.695068359375, 214.99664306640625, 1.0, 395.4179382324219, 215.92550659179688, 1.0, 443.8873596191406, 216.86749267578125, 1.0, 490.3085021972656, 217.95115661621094, 1.0, 534.6832275390625, 218.82830810546875, 1.0, 60.99771499633789, 268.82012939453125, 1.0, 123.1832275390625, 268.30584716796875, 1.0, 182.49594116210938, 267.7698669433594, 1.0, 239.68385314941406, 267.3979187011719, 1.0, 295.0181579589844, 267.0889892578125, 1.0, 348.11102294921875, 266.8761901855469, 1.0, 398.9335021972656, 266.7252197265625, 1.0, 447.4891052246094, 266.5346984863281, 1.0, 493.9370422363281, 266.4184265136719, 1.0, 538.385009765625, 266.2655029296875, 1.0, 63.592525482177734, 326.81634521484375, 1.0, 125.6702880859375, 325.1959533691406, 1.0, 185.3110809326172, 323.36541748046875, 1.0, 242.7506103515625, 321.72100830078125, 1.0, 298.2457580566406, 320.2154235839844, 1.0, 351.4386901855469, 318.6906433105469, 1.0, 402.4106750488281, 317.48211669921875, 1.0, 451.1123352050781, 316.2268371582031, 1.0, 497.5914611816406, 314.91259765625, 1.0, 542.0330200195312, 313.795654296875, 1.0, 66.16412353515625, 385.5759582519531, 1.0, 128.52194213867188, 382.53411865234375, 1.0, 188.19029235839844, 379.589599609375, 1.0, 245.76515197753906, 376.671875, 1.0, 301.4923400878906, 373.97393798828125, 1.0, 354.8320617675781, 371.33587646484375, 1.0, 405.8885192871094, 368.6803283691406, 1.0, 454.5827941894531, 366.3470458984375, 1.0, 501.1639709472656, 363.8713684082031, 1.0, 545.7210083007812, 361.7273864746094, 1.0, 68.96357727050781, 444.72808837890625, 1.0, 131.50267028808594, 440.38702392578125, 1.0, 191.27932739257812, 436.2525939941406, 1.0, 248.99009704589844, 432.2221374511719, 1.0, 304.7132873535156, 428.06939697265625, 1.0, 358.16131591796875, 424.23760986328125, 1.0, 409.31768798828125, 420.34918212890625, 1.0, 458.15521240234375, 416.68194580078125, 1.0, 504.77496337890625, 413.26666259765625, 1.0, 549.3382568359375, 409.91497802734375, 1.0, 71.83232879638672, 504.4030456542969, 1.0, 134.6112518310547, 498.54443359375, 1.0, 194.4735107421875, 493.2440490722656, 1.0, 252.21176147460938, 487.86541748046875, 1.0, 307.880859375, 482.6226501464844, 1.0, 361.43798828125, 477.47198486328125, 1.0, 412.6578674316406, 472.38916015625, 1.0, 461.6023254394531, 467.6033630371094, 1.0, 508.3421325683594, 462.89434814453125, 1.0, 552.9393920898438, 458.5717468261719, 1.0, 74.75777435302734, 564.3286743164062, 1.0, 138.08633422851562, 557.1097412109375, 1.0, 198.04855346679688, 550.406982421875, 1.0, 255.58804321289062, 543.8723754882812, 1.0, 311.3184814453125, 537.5452880859375, 1.0, 364.7107849121094, 531.0989990234375, 1.0, 416.0608215332031, 524.8629150390625, 1.0, 465.0722351074219, 518.8340454101562, 1.0, 511.8164978027344, 513.1148681640625, 1.0, 556.6273193359375, 507.6580810546875, 1.0, 45.6619873046875, 37.56427001953125, 1.0, 109.18427276611328, 43.53058624267578, 1.0, 168.7196807861328, 48.49058151245117, 1.0, 225.1221160888672, 52.9122428894043, 1.0, 279.2234802246094, 57.15110778808594, 1.0, 331.2815856933594, 61.29966354370117, 1.0, 381.4120178222656, 65.4199447631836, 1.0, 429.4836730957031, 69.66938018798828, 1.0, 475.68896484375, 73.70116424560547, 1.0, 519.9686889648438, 77.63896942138672, 1.0, 48.51932907104492, 94.5354995727539, 1.0, 111.63723754882812, 98.81523132324219, 1.0, 170.87762451171875, 102.36206817626953, 1.0, 227.40635681152344, 105.47669219970703, 1.0, 281.663818359375, 108.57073974609375, 1.0, 334.1737976074219, 111.88683319091797, 1.0, 384.5519714355469, 115.25841522216797, 1.0, 432.88653564453125, 118.47843170166016, 1.0, 479.09185791015625, 121.64424133300781, 1.0, 523.5558471679688, 124.66930389404297, 1.0, 51.19837951660156, 151.90948486328125, 1.0, 113.85720825195312, 154.54103088378906, 1.0, 173.06463623046875, 156.61720275878906, 1.0, 229.73011779785156, 158.6776885986328, 1.0, 284.5465087890625, 160.77684020996094, 1.0, 337.2142639160156, 163.15310668945312, 1.0, 387.7438659667969, 165.4095458984375, 1.0, 436.2545471191406, 167.62403869628906, 1.0, 482.6356506347656, 169.7655792236328, 1.0, 527.0902099609375, 171.83778381347656, 1.0, 53.554473876953125, 209.48243713378906, 1.0, 116.13304138183594, 210.71041870117188, 1.0, 175.3681182861328, 211.5887451171875, 1.0, 232.43287658691406, 212.50929260253906, 1.0, 287.4232177734375, 213.58438110351562, 1.0, 340.4355163574219, 214.736572265625, 1.0, 391.16046142578125, 215.84352111816406, 1.0, 439.6776123046875, 216.91078186035156, 1.0, 486.20849609375, 218.085205078125, 1.0, 530.6317138671875, 219.17550659179688, 1.0, 55.95781707763672, 267.5619812011719, 1.0, 118.4043197631836, 267.325439453125, 1.0, 177.76828002929688, 266.98443603515625, 1.0, 235.09144592285156, 266.7471618652344, 1.0, 290.47650146484375, 266.5747985839844, 1.0, 343.5861511230469, 266.5962829589844, 1.0, 394.5171203613281, 266.6337890625, 1.0, 443.23419189453125, 266.655029296875, 1.0, 489.6808166503906, 266.6583557128906, 1.0, 534.20947265625, 266.7067565917969, 1.0, 58.44145202636719, 325.71099853515625, 1.0, 120.75556945800781, 324.2882995605469, 1.0, 180.44432067871094, 322.6397399902344, 1.0, 237.9028778076172, 321.2475891113281, 1.0, 293.48565673828125, 319.97882080078125, 1.0, 346.85308837890625, 318.59307861328125, 1.0, 397.84332275390625, 317.4758605957031, 1.0, 446.61724853515625, 316.3558044433594, 1.0, 493.20904541015625, 315.292236328125, 1.0, 537.6854248046875, 314.28717041015625, 1.0, 60.909828186035156, 384.65936279296875, 1.0, 123.45470428466797, 381.79364013671875, 1.0, 183.25482177734375, 379.0862121582031, 1.0, 240.9093780517578, 376.42718505859375, 1.0, 296.5685729980469, 373.7342224121094, 1.0, 350.0838928222656, 371.33599853515625, 1.0, 401.23931884765625, 368.7576904296875, 1.0, 449.9818420410156, 366.52728271484375, 1.0, 496.6780090332031, 364.3550109863281, 1.0, 541.2815551757812, 362.3482360839844, 1.0, 63.5292854309082, 443.9300537109375, 1.0, 126.31642150878906, 439.7803649902344, 1.0, 186.2104034423828, 435.7387390136719, 1.0, 243.892333984375, 431.83709716796875, 1.0, 299.6688232421875, 427.9828796386719, 1.0, 353.3299255371094, 424.223876953125, 1.0, 404.46893310546875, 420.5440673828125, 1.0, 453.4176025390625, 417.0682373046875, 1.0, 500.0986633300781, 413.7401428222656, 1.0, 544.73681640625, 410.53564453125, 1.0, 66.26969146728516, 503.73736572265625, 1.0, 129.39378356933594, 498.2029724121094, 1.0, 189.30226135253906, 492.8515930175781, 1.0, 246.96864318847656, 487.7068176269531, 1.0, 302.737548828125, 482.59716796875, 1.0, 356.42547607421875, 477.6062316894531, 1.0, 407.7342529296875, 472.65325927734375, 1.0, 456.74163818359375, 467.9707336425781, 1.0, 503.52642822265625, 463.4375305175781, 1.0, 548.2482299804688, 459.2557678222656, 1.0, 68.96481323242188, 563.8550415039062, 1.0, 132.48536682128906, 556.7364501953125, 1.0, 192.62283325195312, 550.2810668945312, 1.0, 250.34165954589844, 543.8187255859375, 1.0, 306.0623779296875, 537.6283569335938, 1.0, 359.57257080078125, 531.3259887695312, 1.0, 410.9559020996094, 525.2648315429688, 1.0, 459.99188232421875, 519.360107421875, 1.0, 506.9574890136719, 513.730712890625, 1.0, 551.7242431640625, 508.39422607421875, 1.0, 45.40883255004883, 37.689239501953125, 1.0, 108.9662857055664, 43.64992141723633, 1.0, 168.5281982421875, 48.673667907714844, 1.0, 224.81959533691406, 53.18874740600586, 1.0, 278.9213562011719, 57.37275314331055, 1.0, 330.90777587890625, 61.573272705078125, 1.0, 381.0701904296875, 65.7608642578125, 1.0, 429.2510681152344, 70.08580017089844, 1.0, 475.3643798828125, 74.24755859375, 1.0, 519.5963745117188, 78.16877746582031, 1.0, 48.302879333496094, 94.5896987915039, 1.0, 111.5092544555664, 98.90160369873047, 1.0, 170.65248107910156, 102.44042205810547, 1.0, 227.23402404785156, 105.64240264892578, 1.0, 281.5381774902344, 108.78602600097656, 1.0, 333.87109375, 112.14190673828125, 1.0, 384.27178955078125, 115.48019409179688, 1.0, 432.60546875, 118.70476531982422, 1.0, 478.7220153808594, 121.86924743652344, 1.0, 523.195556640625, 124.97367095947266, 1.0, 51.076541900634766, 151.87142944335938, 1.0, 113.71025085449219, 154.5745849609375, 1.0, 172.82814025878906, 156.6609344482422, 1.0, 229.56973266601562, 158.7928924560547, 1.0, 284.35540771484375, 160.9428253173828, 1.0, 336.93243408203125, 163.3186798095703, 1.0, 387.5758361816406, 165.57196044921875, 1.0, 435.9566955566406, 167.8370819091797, 1.0, 482.314697265625, 169.9835662841797, 1.0, 526.6434326171875, 172.164794921875, 1.0, 53.44479751586914, 209.38827514648438, 1.0, 115.97401428222656, 210.6977996826172, 1.0, 175.28024291992188, 211.53878784179688, 1.0, 232.32896423339844, 212.57054138183594, 1.0, 287.3466491699219, 213.6834259033203, 1.0, 340.2319030761719, 214.7460174560547, 1.0, 390.9075012207031, 215.9617919921875, 1.0, 439.4717712402344, 217.15542602539062, 1.0, 485.85888671875, 218.2826385498047, 1.0, 530.3486938476562, 219.40481567382812, 1.0, 55.88916015625, 267.3623352050781, 1.0, 118.30064392089844, 267.2641296386719, 1.0, 177.67880249023438, 266.9656677246094, 1.0, 235.01919555664062, 266.7353515625, 1.0, 290.4019470214844, 266.63623046875, 1.0, 343.4521789550781, 266.5893249511719, 1.0, 394.3694152832031, 266.71466064453125, 1.0, 442.89752197265625, 266.73260498046875, 1.0, 489.4049987792969, 266.7738342285156, 1.0, 533.7838745117188, 266.85943603515625, 1.0, 58.42721939086914, 325.57122802734375, 1.0, 120.76683807373047, 324.1524353027344, 1.0, 180.43873596191406, 322.5524597167969, 1.0, 237.8745880126953, 321.1553955078125, 1.0, 293.3868713378906, 319.8646240234375, 1.0, 346.696044921875, 318.5610656738281, 1.0, 397.6548767089844, 317.4825134277344, 1.0, 446.3988037109375, 316.3310546875, 1.0, 492.9329528808594, 315.2914733886719, 1.0, 537.4004516601562, 314.28106689453125, 1.0, 60.982032775878906, 384.5614013671875, 1.0, 123.48114776611328, 381.5855712890625, 1.0, 183.2399139404297, 378.8393859863281, 1.0, 240.8603515625, 376.30657958984375, 1.0, 296.6180114746094, 373.60809326171875, 1.0, 349.9337158203125, 371.1903076171875, 1.0, 401.0924377441406, 368.6854553222656, 1.0, 449.77789306640625, 366.4845275878906, 1.0, 496.45703125, 364.3421630859375, 1.0, 540.9501953125, 362.2820129394531, 1.0, 63.62831115722656, 443.6578063964844, 1.0, 126.40107727050781, 439.5386657714844, 1.0, 186.20787048339844, 435.5903015136719, 1.0, 243.8825225830078, 431.64031982421875, 1.0, 299.6883239746094, 427.78369140625, 1.0, 353.25311279296875, 423.9825744628906, 1.0, 404.3730773925781, 420.408447265625, 1.0, 453.2006530761719, 416.8368835449219, 1.0, 499.8568115234375, 413.58282470703125, 1.0, 544.5176391601562, 410.4066162109375, 1.0, 66.42555236816406, 503.480224609375, 1.0, 129.4638214111328, 497.8001708984375, 1.0, 189.46646118164062, 492.61566162109375, 1.0, 247.1297607421875, 487.47576904296875, 1.0, 302.76019287109375, 482.3790588378906, 1.0, 356.3760070800781, 477.44805908203125, 1.0, 407.66845703125, 472.4306335449219, 1.0, 456.55059814453125, 467.72283935546875, 1.0, 503.3589782714844, 463.24334716796875, 1.0, 547.9976196289062, 458.9939270019531, 1.0, 69.30217742919922, 563.5381469726562, 1.0, 132.78150939941406, 556.4181518554688, 1.0, 192.8097381591797, 549.9221801757812, 1.0, 250.47169494628906, 543.5307006835938, 1.0, 306.17901611328125, 537.3140869140625, 1.0, 359.6174011230469, 530.9926147460938, 1.0, 410.9590148925781, 524.8812255859375, 1.0, 459.9207458496094, 519.0556030273438, 1.0, 506.8015441894531, 513.4364013671875, 1.0, 551.5579223632812, 508.0296936035156, 1.0, 25.11705780029297, 80.95185089111328, 1.0, 88.78612518310547, 87.29051971435547, 1.0, 148.4122772216797, 92.5675048828125, 1.0, 204.84471130371094, 97.30640411376953, 1.0, 258.89483642578125, 101.71369934082031, 1.0, 311.0838928222656, 106.38096618652344, 1.0, 361.2763977050781, 110.75877380371094, 1.0, 409.3351135253906, 115.32389068603516, 1.0, 455.47784423828125, 119.60375213623047, 1.0, 499.6577453613281, 123.82568359375, 1.0, 26.620019912719727, 137.53683471679688, 1.0, 90.16288757324219, 142.0605926513672, 1.0, 149.63668823242188, 145.87550354003906, 1.0, 206.2541046142578, 149.47869873046875, 1.0, 260.67584228515625, 152.91761779785156, 1.0, 313.3590087890625, 156.5628204345703, 1.0, 363.69378662109375, 160.08799743652344, 1.0, 412.09820556640625, 163.56378173828125, 1.0, 458.3944091796875, 166.913818359375, 1.0, 502.72442626953125, 170.26197814941406, 1.0, 28.08135414123535, 194.5557861328125, 1.0, 91.38835906982422, 197.5318145751953, 1.0, 150.8720703125, 200.1528778076172, 1.0, 207.7528533935547, 202.48123168945312, 1.0, 262.7373352050781, 204.81736755371094, 1.0, 315.6297302246094, 207.42652893066406, 1.0, 366.37860107421875, 209.84385681152344, 1.0, 414.8664855957031, 212.3706817626953, 1.0, 461.4200439453125, 214.58880615234375, 1.0, 505.7370910644531, 216.82542419433594, 1.0, 29.361841201782227, 252.00552368164062, 1.0, 92.66197967529297, 253.5807342529297, 1.0, 152.380126953125, 254.8229217529297, 1.0, 209.54676818847656, 256.0129089355469, 1.0, 264.85906982421875, 257.3822326660156, 1.0, 318.05181884765625, 258.7084655761719, 1.0, 369.08026123046875, 260.0998229980469, 1.0, 417.7539367675781, 261.37982177734375, 1.0, 464.4092712402344, 262.5970153808594, 1.0, 508.86309814453125, 263.9552917480469, 1.0, 30.578393936157227, 310.2010498046875, 1.0, 93.97584533691406, 310.3103332519531, 1.0, 153.87254333496094, 310.2894287109375, 1.0, 211.4500274658203, 310.35443115234375, 1.0, 267.04248046875, 310.4258728027344, 1.0, 320.5784606933594, 310.55181884765625, 1.0, 371.6360168457031, 310.7120361328125, 1.0, 420.648193359375, 310.8819274902344, 1.0, 467.3629150390625, 311.0073547363281, 1.0, 511.99957275390625, 311.2213134765625, 1.0, 31.84644317626953, 368.5420837402344, 1.0, 95.51353454589844, 367.3214111328125, 1.0, 155.59153747558594, 366.0879821777344, 1.0, 213.435791015625, 364.9168701171875, 1.0, 269.3201599121094, 363.79132080078125, 1.0, 323.0769958496094, 362.5771484375, 1.0, 374.3726806640625, 361.6290283203125, 1.0, 423.459228515625, 360.49871826171875, 1.0, 470.3317565917969, 359.64801025390625, 1.0, 515.02978515625, 358.6292419433594, 1.0, 33.21080017089844, 427.87451171875, 1.0, 97.18061828613281, 425.27301025390625, 1.0, 157.52589416503906, 422.6844482421875, 1.0, 215.5146942138672, 420.3663635253906, 1.0, 271.477783203125, 417.8236999511719, 1.0, 325.3809814453125, 415.47833251953125, 1.0, 377.08062744140625, 413.2318420410156, 1.0, 426.2019348144531, 410.876220703125, 1.0, 473.2728271484375, 408.67340087890625, 1.0, 518.0950927734375, 406.6583251953125, 1.0, 34.569637298583984, 487.7084655761719, 1.0, 99.0850601196289, 483.61065673828125, 1.0, 159.59783935546875, 479.7208557128906, 1.0, 217.72914123535156, 476.15106201171875, 1.0, 273.8387145996094, 472.4698181152344, 1.0, 327.8647766113281, 468.7991943359375, 1.0, 379.5507507324219, 465.21319580078125, 1.0, 428.9584655761719, 461.7147216796875, 1.0, 476.09906005859375, 458.42266845703125, 1.0, 521.1792602539062, 455.3182373046875, 1.0, 35.9395751953125, 548.397216796875, 1.0, 101.0383071899414, 542.4883422851562, 1.0, 162.00643920898438, 537.372802734375, 1.0, 220.242919921875, 532.4865112304688, 1.0, 276.3467102050781, 527.54345703125, 1.0, 330.3362731933594, 522.6640625, 1.0, 382.1150817871094, 517.8594970703125, 1.0, 431.5777587890625, 513.2355346679688, 1.0, 478.9202575683594, 508.6356201171875, 1.0, 524.13134765625, 504.3752746582031, 1.0, 37.20021057128906, 609.5597534179688, 1.0, 102.9089584350586, 601.9089965820312, 1.0, 164.48321533203125, 595.2984619140625, 1.0, 222.76663208007812, 589.1585083007812, 1.0, 278.915771484375, 583.11572265625, 1.0, 332.84173583984375, 577.0302124023438, 1.0, 384.7706298828125, 571.0848388671875, 1.0, 434.3807067871094, 565.2445678710938, 1.0, 481.8085021972656, 559.5435180664062, 1.0, 527.2496948242188, 554.1991577148438, 1.0, 44.313751220703125, 114.32288360595703, 1.0, 106.37887573242188, 119.71698760986328, 1.0, 164.68077087402344, 124.30187225341797, 1.0, 220.27731323242188, 128.56784057617188, 1.0, 273.7959289550781, 132.84141540527344, 1.0, 325.5244140625, 137.11483764648438, 1.0, 375.26397705078125, 141.3702850341797, 1.0, 422.8016357421875, 145.6119384765625, 1.0, 468.52801513671875, 149.59219360351562, 1.0, 512.2760009765625, 153.49655151367188, 1.0, 45.71213912963867, 171.23060607910156, 1.0, 107.69615173339844, 174.99183654785156, 1.0, 166.12484741210938, 178.3642578125, 1.0, 222.04824829101562, 181.54261779785156, 1.0, 276.0880126953125, 184.66127014160156, 1.0, 328.2427978515625, 188.0231170654297, 1.0, 378.1600646972656, 191.3224639892578, 1.0, 426.0072937011719, 194.39328002929688, 1.0, 471.83331298828125, 197.39053344726562, 1.0, 515.7078247070312, 200.33865356445312, 1.0, 47.215538024902344, 228.6951141357422, 1.0, 108.99491119384766, 230.97525024414062, 1.0, 167.63650512695312, 233.09986877441406, 1.0, 223.95489501953125, 235.1342315673828, 1.0, 278.47564697265625, 237.3125457763672, 1.0, 330.8050231933594, 239.39535522460938, 1.0, 381.0896911621094, 241.47378540039062, 1.0, 429.1593933105469, 243.5512237548828, 1.0, 475.21478271484375, 245.55137634277344, 1.0, 519.1124877929688, 247.30905151367188, 1.0, 48.5771484375, 286.72332763671875, 1.0, 110.42012023925781, 287.771728515625, 1.0, 169.4317626953125, 288.63043212890625, 1.0, 226.14361572265625, 289.4911804199219, 1.0, 280.8598327636719, 290.42803955078125, 1.0, 333.6287536621094, 291.38958740234375, 1.0, 384.1532897949219, 292.2589111328125, 1.0, 432.43902587890625, 293.15814208984375, 1.0, 478.48309326171875, 294.1148681640625, 1.0, 522.580078125, 294.8208312988281, 1.0, 49.91529846191406, 345.7340087890625, 1.0, 112.13038635253906, 345.205078125, 1.0, 171.2798614501953, 344.90069580078125, 1.0, 228.39366149902344, 344.5543212890625, 1.0, 283.40533447265625, 344.1805419921875, 1.0, 336.4272155761719, 343.8419189453125, 1.0, 387.13323974609375, 343.5471496582031, 1.0, 435.58746337890625, 343.30902099609375, 1.0, 481.7982177734375, 342.9342346191406, 1.0, 526.0575561523438, 342.79876708984375, 1.0, 51.4875602722168, 405.0140380859375, 1.0, 113.97982025146484, 403.3800354003906, 1.0, 173.38255310058594, 401.7563171386719, 1.0, 230.5846710205078, 400.0623779296875, 1.0, 286.049560546875, 398.4441223144531, 1.0, 339.227294921875, 396.7843933105469, 1.0, 390.14825439453125, 395.21484375, 1.0, 438.661376953125, 393.6758728027344, 1.0, 485.1984558105469, 392.2953186035156, 1.0, 529.5120239257812, 390.90863037109375, 1.0, 53.07552719116211, 465.4554443359375, 1.0, 116.03954315185547, 462.3036193847656, 1.0, 175.65826416015625, 459.4273986816406, 1.0, 233.18161010742188, 456.5236511230469, 1.0, 288.61505126953125, 453.46954345703125, 1.0, 341.9970703125, 450.57147216796875, 1.0, 393.1793518066406, 447.70355224609375, 1.0, 441.8980712890625, 445.04193115234375, 1.0, 488.5418395996094, 442.3106994628906, 1.0, 533.06689453125, 439.7900695800781, 1.0, 54.74620056152344, 526.5100708007812, 1.0, 118.29168701171875, 521.8299560546875, 1.0, 178.3271942138672, 517.594482421875, 1.0, 235.76568603515625, 513.346923828125, 1.0, 291.4106750488281, 509.24932861328125, 1.0, 345.0139465332031, 505.0474853515625, 1.0, 396.1183166503906, 500.92169189453125, 1.0, 445.16546630859375, 496.8942565917969, 1.0, 491.8827819824219, 493.1794128417969, 1.0, 536.6282958984375, 489.44287109375, 1.0, 56.48295974731445, 588.3698120117188, 1.0, 120.75617218017578, 581.8804931640625, 1.0, 181.16165161132812, 576.2498779296875, 1.0, 238.7323455810547, 570.83447265625, 1.0, 294.3258972167969, 565.4466552734375, 1.0, 347.83477783203125, 560.1342163085938, 1.0, 399.2549133300781, 554.6334228515625, 1.0, 448.44598388671875, 549.5546875, 1.0, 495.3644104003906, 544.4611206054688, 1.0, 540.2542114257812, 539.784423828125, 1.0, 57.97751998901367, 650.9403076171875, 1.0, 123.15129852294922, 642.6248779296875, 1.0, 184.1455535888672, 635.3338012695312, 1.0, 241.9749755859375, 628.6021728515625, 1.0, 297.61273193359375, 622.10595703125, 1.0, 351.15069580078125, 615.5579833984375, 1.0, 402.5236511230469, 609.0951538085938, 1.0, 451.7320251464844, 602.6934204101562, 1.0, 498.90118408203125, 596.5844116210938, 1.0, 544.0361328125, 590.6925659179688, 1.0, 58.34465026855469, 121.9444351196289, 1.0, 119.07322692871094, 127.62841796875, 1.0, 176.50376892089844, 132.55101013183594, 1.0, 231.5596466064453, 137.33204650878906, 1.0, 284.66058349609375, 141.82550048828125, 1.0, 335.8585205078125, 146.65762329101562, 1.0, 385.29608154296875, 151.2900390625, 1.0, 432.5063781738281, 155.72264099121094, 1.0, 477.9097595214844, 160.15614318847656, 1.0, 521.4472045898438, 164.41583251953125, 1.0, 58.561283111572266, 177.1417694091797, 1.0, 119.1972427368164, 181.39173889160156, 1.0, 176.9203643798828, 185.21788024902344, 1.0, 232.34361267089844, 188.8938446044922, 1.0, 285.8913879394531, 192.58799743652344, 1.0, 337.6740417480469, 196.37167358398438, 1.0, 387.2698059082031, 199.9344482421875, 1.0, 434.7593078613281, 203.5254364013672, 1.0, 480.35552978515625, 206.92868041992188, 1.0, 524.082763671875, 210.22390747070312, 1.0, 58.66523742675781, 233.21405029296875, 1.0, 119.4823989868164, 236.04261779785156, 1.0, 177.45901489257812, 238.66221618652344, 1.0, 233.31082153320312, 241.40370178222656, 1.0, 287.3946838378906, 243.95339965820312, 1.0, 339.3929748535156, 246.6002197265625, 1.0, 389.3450622558594, 249.2949981689453, 1.0, 437.1015319824219, 251.7366485595703, 1.0, 482.7077331542969, 254.13258361816406, 1.0, 526.478271484375, 256.44097900390625, 1.0, 58.713687896728516, 289.64971923828125, 1.0, 119.84346008300781, 291.42108154296875, 1.0, 178.07644653320312, 292.937744140625, 1.0, 234.42803955078125, 294.4010925292969, 1.0, 288.8689880371094, 295.9378356933594, 1.0, 341.1974182128906, 297.4700622558594, 1.0, 391.3792419433594, 298.8844299316406, 1.0, 439.35992431640625, 300.3204345703125, 1.0, 485.2852478027344, 301.6858825683594, 1.0, 529.195556640625, 302.9031677246094, 1.0, 58.98334503173828, 347.1190185546875, 1.0, 120.29534149169922, 347.4819641113281, 1.0, 178.86990356445312, 347.9228515625, 1.0, 235.5929412841797, 348.2457275390625, 1.0, 290.2939758300781, 348.6029968261719, 1.0, 342.9747314453125, 348.9142761230469, 1.0, 393.35400390625, 349.1907958984375, 1.0, 441.5556335449219, 349.4845275878906, 1.0, 487.5860900878906, 349.7925109863281, 1.0, 531.7045288085938, 350.0633239746094, 1.0, 59.28432083129883, 404.955078125, 1.0, 120.99591064453125, 404.05517578125, 1.0, 179.88119506835938, 403.28082275390625, 1.0, 236.7750701904297, 402.4322509765625, 1.0, 291.76983642578125, 401.5429382324219, 1.0, 344.7332763671875, 400.6600036621094, 1.0, 395.347412109375, 399.8263244628906, 1.0, 443.6734313964844, 398.8937072753906, 1.0, 490.0231628417969, 398.1480712890625, 1.0, 534.302978515625, 397.311767578125, 1.0, 59.62857437133789, 463.70770263671875, 1.0, 121.84089660644531, 461.5428466796875, 1.0, 181.000732421875, 459.5135498046875, 1.0, 237.98390197753906, 457.514892578125, 1.0, 293.30078125, 455.457763671875, 1.0, 346.4219055175781, 453.3474426269531, 1.0, 397.3199768066406, 451.2746887207031, 1.0, 445.7745666503906, 449.23028564453125, 1.0, 492.3705139160156, 447.2397766113281, 1.0, 536.7720336914062, 445.43902587890625, 1.0, 60.043067932128906, 523.2175903320312, 1.0, 122.80545806884766, 519.6312866210938, 1.0, 182.3238067626953, 516.40087890625, 1.0, 239.58131408691406, 513.1622924804688, 1.0, 294.8175354003906, 509.8993835449219, 1.0, 348.10797119140625, 506.55780029296875, 1.0, 399.1814270019531, 503.30615234375, 1.0, 447.9834289550781, 500.1683654785156, 1.0, 494.6796875, 497.0881652832031, 1.0, 539.4471435546875, 494.1808776855469, 1.0, 60.328453063964844, 583.5018920898438, 1.0, 123.97802734375, 578.2651977539062, 1.0, 183.9486846923828, 573.6741943359375, 1.0, 241.22555541992188, 569.3778686523438, 1.0, 296.6324462890625, 564.959228515625, 1.0, 349.8235778808594, 560.5136108398438, 1.0, 401.14520263671875, 556.1366577148438, 1.0, 450.24139404296875, 551.7743530273438, 1.0, 497.1141662597656, 547.5640869140625, 1.0, 541.9163208007812, 543.61962890625, 1.0, 60.5865478515625, 644.533203125, 1.0, 125.04153442382812, 637.5986328125, 1.0, 185.5740966796875, 631.4480590820312, 1.0, 243.1474609375, 625.8724975585938, 1.0, 298.5612487792969, 620.4501953125, 1.0, 351.86932373046875, 614.9254760742188, 1.0, 403.2582702636719, 609.3937377929688, 1.0, 452.4393615722656, 604.0089111328125, 1.0, 499.51336669921875, 598.7507934570312, 1.0, 544.5728149414062, 593.7134399414062, 1.0 + }; + // clang-format on + + // convert to point3 + std::span observations_board_cast{ + reinterpret_cast(observations_board.data()), + observations_board.size() / 3}; + + std::vector intrinsics{ + 1139.0877048105797, 1138.7936678503925, 614.197328375207, + 342.96774319938083, 0.17554290320344965, -1.2420874177297045, + 0.001987356556591965, 0.000661995743813977, 2.3790066724705845, + 0.014075252514880635, 0.06584882088340283, -0.08989288352937631}; + + // clang-format off + std::vector rt_ref_frames{ + -0.047004306172660305, -0.1953652317074409, -0.014718030710803935, -0.11714470180459202, -0.11044776297284907, 0.4872417386696977, -0.055345234965503864, -0.11842593799304003, 0.028070499659796903, -0.010253881381890834, -0.09699916929824123, 0.5270211502588821, -0.024091321145403438, -0.09965845308196734, 0.010038053974155251, 0.015262776851103206, -0.12338044877785284, 0.5368948636958539, -0.01917228604517911, -0.10161880700563304, 0.010784388201468105, 0.009773929877139525, -0.12228991280576412, 0.5348541416027282, -0.020137577242060126, -0.10715062294096635, 0.00890779299378829, -0.003031714349329292, -0.11846984454742, 0.532574231402967, -0.07474531682522022, -0.06659428816230632, 0.01688346322749981, 0.035268156205246495, -0.0813949949843843, 0.5352922630887893, -0.07230193681779774, -0.06747544437527893, 0.01048283184459011, 0.038804524185141645, -0.08626375712285009, 0.5340103172209525, -0.07283667015445425, -0.0534549136074793, 0.01815227554412941, 0.04933921821776387, -0.07933532222096236, 0.5337754743791806, -0.06898936541229508, -0.05238626777059468, 0.018740642547525263, 0.04921076108722912, -0.07926631289258274, 0.5336184571947247, -0.021832802376273323, -0.09920569151201776, -1.552518220636697, 0.05002614225370199, 0.14826966999704658, 0.5165337737993788, -0.05408251946838829, -0.033938549446873086, 0.01153593834672308, 0.06453216563350693, -0.09724195340981683, 0.5372124447150408, -0.030200265735705473, -0.02565897098181332, 0.01576696955014461, 0.06760282099621549, -0.11250875385589608, 0.5406952748648778, -0.02625562084832495, -0.035022493150552274, 0.01588871771003158, 0.0631526390842202, -0.1233660285353782, 0.5399902443340023, 0.045994519719122835, -0.39872118678901003, -0.012183819439398553, -0.13715103476109547, -0.12376076830676783, 0.4842940744427504, 0.053654556669916725, -0.39910093349673387, -0.01310823596579951, -0.13906752751316925, -0.12169319772598786, 0.4799394086278141, 0.0566163737486635, -0.40816647736315287, -0.015895506007347734, -0.14263787132818442, -0.12049322613019689, 0.47366636839443915, 0.08530906818100024, -0.4852650658344714, -0.0001995634592919339, -0.1979066609973269, -0.12035643794420765, 0.45265637787748964, -0.04295163159112323, -0.42266095467740356, -0.0029866891724735, -0.1738800717979726, -0.0752274983701105, 0.5306530558575043, -0.30584058016027255, -0.32173755403916715, -0.011178342092909334, -0.1430773966474769, -0.07697138709737951, 0.5535881731343656, -0.3107528683677335, -0.31515948361840895, -0.017475156884679998, -0.13869015371147464, -0.07650765012863062, 0.5556203930401917, -0.08974529843283034, -0.46966510178804166, -0.0488026541542244, -0.09756687563832524, -0.10174456343827941, 0.42439802293745144, -0.0777543273329202, -0.3041058802564181, -0.01565580141065693, -0.06885431655284334, -0.1096058563668464, 0.46291516589093096, -0.1939948248310135, -0.054029924105555634, 0.01897559946438612, -0.12049149045209066, -0.1032512648145544, 0.5385137039230198, -0.09624234715753875, -0.18349757735515917, -1.555423391461948, -0.1325806832713912, 0.11207556701400972, 0.49164512347545625, -0.17630482078541576, -0.0581164458259199, 0.007200647012021255, -0.13931146646379217, -0.11642257549697248, 0.5282537885449882, -0.1730047329186272, -0.06209080175357189, 0.0034711538091089233, -0.14568210157239814, -0.1135887945981603, 0.5217239846361765, -0.16951073662555638, -0.0715212395866129, -0.008651990844819827, -0.1595886272352252, -0.11771125597961, 0.5137030198180008, -0.1642691194481401, -0.08084635003474029, -0.027145856774707107, -0.1661971756679497, -0.1288907824702096, 0.5119881725994787, -0.1526508129156874, -0.05487242379388627, -0.035847371010403806, -0.12836104233836051, -0.12567451900015772, 0.5171091445758811, -0.21071135368392666, -0.006029301946157025, 0.02295899257319795, -0.06881987463991168, -0.14125233820824756, 0.5526346719256523, 0.4815748668319757, -0.010524976426770248, -0.012463828564064656, -0.08624190157554534, -0.09574747207398955, 0.4322989116606923, 0.3975430904619126, 0.38996936172089197, -1.528839752978028, -0.09205158557711193, 0.12372145272147032, 0.5535867298426473, 0.4816554848534646, -0.00233342529051152, 0.009468520934219314, -0.08575187139542743, -0.05785852096770379, 0.4443264388133215, 0.5063874893856302, 0.02601866823169376, 0.028077418154194442, -0.06254642307528244, -0.0744408530689823, 0.43120568819281635, 0.5109051138846294, 0.009615736518050049, 0.013370742858919565, -0.11834778371218806, -0.07908883898030773, 0.4270041877556613, 0.518164512895916, 0.028869771803758878, 0.002811675077189608, -0.12286724150898527, -0.08156831707812594, 0.41942856137855306, 0.5230996885276785, 0.03160878864747653, 0.0002742031757451005, -0.1221323916551221, -0.08891843113406415, 0.41181642438020294, 0.5181741706026067, -0.001074349054356459, -0.021231116221788675, -0.16784458926674461, -0.08791058050536545, 0.4150458288632706, -0.13018235970974956, -0.41987663768634065, -0.038676573828468896, 0.016259519037694934, -0.0990631053294075, 0.556754831470393, -0.09426748772274587, -0.4001597037044663, -0.022518520436246074, -0.012914029687794745, -0.11370302060400853, 0.5012555792697971, -0.09258188713418979, -0.41305619738545113, -0.029924059184856307, -0.0334775182876198, -0.120961252723117, 0.4937690787466395, -0.08682916965683705, -0.5095107444168042, 0.006391602402700453, -0.11044805440174023, -0.10897986547342892, 0.48938034356390375, -0.11223976480548668, -0.42695354388070733, 0.02416851127956154, -0.21234477323532228, -0.11271464433958879, 0.44581391617615973, -0.10994135637131239, -0.44335068010617984, 0.028033734509171203, -0.15309695135839885, -0.11720830356676878, 0.4365960110980569, -0.11741500587570622, -0.42042418628117856, 0.028629016428962796, -0.13941118397732832, -0.10246858249864402, 0.45474887218864485, -0.09365497946029529, -0.42247684418475195, 0.016008967965519396, -0.14689932843123352, -0.11886181961378606, 0.44724578891880473, -0.11128720120662593, -0.42078319927981384, -0.022336887107584014, -0.12583012457354695, -0.12128015932681956, 0.43021801738924537, -0.1346669117984339, -0.4206190260360411, -0.013351506105407949, -0.11937453224279396, -0.10018329765082977, 0.4343324613188333, -0.05648588456032588, -0.2862362948497834, 0.02124581034991523, -0.027612165249570463, -0.1307423291747037, 0.47030464586228843, -0.10812777672452589, -0.26834060720588493, 0.03472460366136833, -0.009511823612452378, -0.09838535331281618, 0.46182762014481565, -0.1065054343428483, -0.27573517255544466, 0.04580400243215025, -0.014679754685597709, -0.0949898758901544, 0.46305844561194026, -0.102948640688396, -0.2787643437667313, 0.038923274202977046, -0.025532319597839408, -0.10255445879160485, 0.46538694260502095, -0.09920968588727923, -0.2922032179536637, 0.035031433253161465, -0.03298651124196258, -0.10531690818083715, 0.46362769487971617, -0.09329068180578565, -0.3006691269026988, 0.029456266379024935, -0.04686730739784998, -0.11212814997219311, 0.46436778421412117, -0.0792419255386736, -0.2963929770694256, 0.011100025806615081, -0.047986470821347355, -0.12573733506472268, 0.4618032133607116, -0.08084599857660028, -0.27629649102689713, 0.0009913132122056267, -0.028855217845579095, -0.123564124581364, 0.4596169811245802, -0.08480543284893811, -0.2534094310583, 0.0011815437595078836, -0.014155232828786309, -0.12026684062087813, 0.4647702518127843, -0.08838321171904871, -0.23965972988193984, -0.014931578293203006, -0.004438458300192876, -0.12662274587303254, 0.46446140066930097, -0.0849478827950881, -0.2203938278815323, -0.019220166219887824, 0.011610973664933884, -0.11442699717586857, 0.4622330690023284, -0.06694721856790363, -0.30424365184919866, -0.009162131027202355, -0.05510274170031518, -0.12318964162996356, 0.4602774718722789, -0.0647087148967503, -0.3187276703147968, -0.014469824684808293, -0.06231535356529181, -0.13012958063187086, 0.4562964191391322, -0.07435171240068739, -0.32552728583124235, -0.07345083474619403, -0.07659390579294742, -0.12454128521490264, 0.45510077997428383, -0.07923691348923813, -0.3382378252928151, -0.11031980730044197, -0.0910922554352501, -0.11995295061232122, 0.45003564452933037, -0.09045552530416608, -0.40989865192892705, -0.128831633180097, -0.14284604877605653, -0.11175494025774851, 0.43660369546689665, -0.08796428930221825, -0.42458487418235, -0.11250321841687129, -0.15132628961162758, -0.11531341214569477, 0.43625788238784685, -0.08131870560971491, -0.4721807609331924, -0.12785028302423454, -0.18581622180676394, -0.11574255854110763, 0.4279113382436763, -0.0834251808696392, -0.4958366844033709, -0.14113497016718868, -0.19198176962016666, -0.10945116808472322, 0.4215328701440197, -0.14794656272050347, 0.26164381352723803, -0.027800858564120852, -0.177487512223495, -0.1027446011377281, 0.5352977387065467, -0.17422339568055223, 0.221374451114371, 0.004791132273043643, -0.10948284661669781, -0.10138046487836899, 0.5270591691611365, -0.16992854445842392, 0.23033405238242455, -0.015997949504893826, -0.11825259246922863, -0.10605771858766024, 0.5120018322351892, -0.17564106635783017, 0.2405271590968977, -0.022549052301806077, -0.12620658706674173, -0.09829171793288778, 0.49354916737639426, -0.22227845825825057, 0.05670158463160482, 0.03884545505797212, -0.09778634723350685, -0.11985189857516136, 0.4770950582503515, -0.08259515777400257, -0.13175416762754782, -0.1151055346426632, -0.043244088885263085, -0.11232688670082931, 0.5107585063300708, -0.08556286350157662, -0.14997626734429628, -0.09934069774458654, -0.05612738671386882, -0.11081165303793297, 0.5102333076914944, -0.114618761179249, -0.19851352420763654, -0.08536368142530087, -0.09359095064718446, -0.08845799392719765, 0.5170006222371887, -0.13464460305076287, -0.23169056204092275, -0.12047387100054924, -0.12738661624323075, -0.08164968518239235, 0.5146836949890118, -0.07022806269196116, -0.24920104546498228, -0.11949274998838562, -0.1651943435094681, -0.10837573393615896, 0.5069004621883348, -0.08152397038826781, -0.29208240465065816, -0.1380438596079465, -0.20113757292404347, -0.1078448416828516, 0.4946088814055431, -0.16035136166316996, -0.1808416854704937, -0.3152010928489003, -0.12035210165781449, -0.06818336225637615, 0.5212626866309217, -0.12612640122023047, -0.3392113856766548, -0.15309361184253442, -0.04887873363122359, -0.09201577060519547, 0.5323351077652437, -0.08873631757198919, -0.43103368643028683, -0.19813539213172116, -0.14275773405238312, -0.10159373554365518, 0.5080219772023695, -0.4104048573492802, -0.22984760979087096, 1.3853978721271245, 0.07412986640021083, -0.11395729167523591, 0.6066826154555843, -0.12335112910311734, -0.3974511190156746, -0.12855875890974017, -0.1211808148046586, -0.08842732655174856, 0.5181366851267113, -0.11070364185035957, -0.29752481431778555, -0.08016373875087704, -0.048414636577130465, -0.08913810211146712, 0.5292619912625632, -0.06743151727960756, -0.240329493588494, 0.03997850745819658, 0.004387918892829247, -0.09060015958177232, 0.5215979717992739, -0.05399744465085986, -0.2812936046372046, 0.004813573308596919, -0.05842391127655427, -0.10912287406397063, 0.5114930039676504, -0.05175054789195563, -0.2882477216248057, 0.0005636599367538858, -0.06249304172575453, -0.11180944930255632, 0.5093623621818001, -0.04571979684750356, -0.2970813994044686, -0.005651931127662076, -0.06940082176359294, -0.11662220533980365, 0.5066145110607203, -0.03563561388028399, -0.5235806908191502, 0.00424860547482411, -0.1952536721178624, -0.11109684529757988, 0.45801073823947125, -0.023319785670648713, -0.5187833519130814, -0.0008615546344926509, -0.20651352404212364, -0.10570302177490547, 0.44881023704133816, -0.023598209280888606, -0.5276117321514215, -0.006129699316765362, -0.22300036443704316, -0.1141561250570126, 0.4424563779467063, -0.05079671725123564, -0.5179533881527354, -0.022406789891731105, -0.21239319352340133, -0.1084265112721251, 0.445192670053362, -0.21055882026680298, -0.5714519588686251, -0.07184765703153781, -0.2231588951433215, -0.095015960136815, 0.4805372156839633, -0.18605111492345483, -0.5423288434927818, -0.08402484757956001, -0.23409824471223342, -0.0947305721546156, 0.4890401839916591, -0.2027355137008096, -0.5651844549123625, -0.053599407590335435, -0.2484022139743236, -0.08948095474680692, 0.48608051074934566, -0.2051636306998435, -0.5764430396707201, -0.05332793098806168, -0.2520897222102508, -0.08755577374236798, 0.48391508204121, -0.2106346941360721, -0.558805755489966, -0.06335653740184154, -0.2481502591224318, -0.08252139653064229, 0.48941455467714673, -0.09815911922062052, -0.4775509323104476, -0.08691437979564473, -0.23083374555754824, -0.12617879022078757, 0.505488054048065, -0.08609011382310261, -0.49248846196577745, -0.0704490089157578, -0.2389433952545194, -0.13356330411924427, 0.500236589621627, -0.07995912930980585, -0.4787057241743439, -0.06957911087840804, -0.23849654451570682, -0.135370382436307, 0.5032398468147548, -0.08416163255353482, -0.4938502525838439, -0.0656042391336118, -0.24494964418859236, -0.13029178883920223, 0.5016182549213785, -0.0810637659910788, -0.4999252532897884, -0.05990906094347525, -0.24827920681174903, -0.1331997326735296, 0.49974862360229594, -0.07998032717437525, -0.5069067900447491, -0.05695209637918325, -0.24951948838012794, -0.13366353135597478, 0.49824939114663436, -0.08238164312158697, -0.5081479948738344, -0.05749665442262227, -0.2497375212840711, -0.13370026705777302, 0.49872509938029197, -0.11023361368461057, -0.5267230663223763, -0.043264778681540585, -0.25907369970649335, -0.1149190387317738, 0.4996431075313804, -0.1312053214452298, -0.5671978379730777, -0.04466268414032407, -0.24784820473901642, -0.09930474878576066, 0.49203700920879906, -0.13569602073033576, -0.5212069315392756, -0.028191156463427416, -0.24888416800730284, -0.09869505494198492, 0.5079932722875511 + }; + std::span rt_ref_cast{ + reinterpret_cast(rt_ref_frames.data()), + rt_ref_frames.size() / 6}; + + // clang-format on + + mrcal_calobject_warp_t warp{8.601078636394221E-5, 2.7993528448348494E-5}; + + cv::Size imagerSize{1280, 720}; + cv::Size calobjectSize{10, 10}; + double calobjectSpacing(0.0254); + cv::Size sampleRes{60, 40}; + + for (int i = 0; i < 5; i++) { + auto start = std::chrono::high_resolution_clock::now(); + auto ret = compute_uncertainty(observations_board_cast, intrinsics, + rt_ref_cast, warp, imagerSize, calobjectSize, + calobjectSpacing, sampleRes); + auto stop = std::chrono::high_resolution_clock::now(); + auto duration = + std::chrono::duration_cast(stop - start); + std::cout << "Time taken: " << duration.count() << " ms" << std::endl; + + std::ofstream outFile("out"); + if (!outFile) + return -1; + for (auto &point : ret) { + outFile << point.x << "," << point.y << "," << point.z << "\n"; + } + } } diff --git a/src/mrcal_wrapper.cpp b/src/mrcal_wrapper.cpp index 4690930..af10cc0 100644 --- a/src/mrcal_wrapper.cpp +++ b/src/mrcal_wrapper.cpp @@ -501,7 +501,7 @@ std::unique_ptr mrcal_main( return result; } -bool undistort_mrcal(const cv::Mat *src, cv::Mat *dst, const cv::Mat *cameraMat, +bool undistort_mrcal(cv::Mat *dst, const cv::Mat *cameraMat, const cv::Mat *distCoeffs, CameraLensModel lensModel, // Extra stuff for splined stereographic models uint16_t order, uint16_t Nx, uint16_t Ny, @@ -536,15 +536,15 @@ bool undistort_mrcal(const cv::Mat *src, cv::Mat *dst, const cv::Mat *cameraMat, return false; } - if (!(dst->cols == 2 && dst->cols == 2)) { + if (!(dst->cols == 2)) { std::cerr << "Bad input array size\n"; return false; } - if (!(dst->type() == CV_64FC2 && dst->type() == CV_64FC2)) { + if (!(dst->type() == CV_64FC2)) { std::cerr << "Bad input type -- need CV_64F\n"; return false; } - if (!(dst->isContinuous() && dst->isContinuous())) { + if (!(dst->isContinuous())) { std::cerr << "Bad input array -- need continuous\n"; return false; } diff --git a/src/mrcal_wrapper.h b/src/mrcal_wrapper.h index a047db4..3f18968 100644 --- a/src/mrcal_wrapper.h +++ b/src/mrcal_wrapper.h @@ -88,7 +88,7 @@ enum class CameraLensModel { LENSMODEL_SPLINED_STEREOGRAPHIC }; -bool undistort_mrcal(const cv::Mat *src, cv::Mat *dst, const cv::Mat *cameraMat, +bool undistort_mrcal(cv::Mat *dst, const cv::Mat *cameraMat, const cv::Mat *distCoeffs, CameraLensModel lensModel, // Extra stuff for splined stereographic models uint16_t order, uint16_t Nx, uint16_t Ny,