mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-28 12:00:05 +08:00
Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7827555e6d | |||
| 1317b1a6e1 | |||
| 9e54c6d1aa | |||
| e90734881b | |||
| 8aae39e82a | |||
| 689ab12845 | |||
| 9afc390552 | |||
| 1461eb0e32 | |||
| 32be88404a | |||
| 7006b0aee9 | |||
| c9b89ee869 | |||
| be5c5856e7 |
+1
-1
Submodule Tools/jMAVSim updated: 0a5a8c6d9d...b23dc53d55
@@ -26,7 +26,6 @@ CONFIG_MODULES_EVENTS=y
|
||||
CONFIG_MODULES_FLIGHT_MODE_MANAGER=y
|
||||
CONFIG_MODULES_GYRO_CALIBRATION=y
|
||||
CONFIG_MODULES_LAND_DETECTOR=y
|
||||
CONFIG_MODULES_LOAD_MON=y
|
||||
CONFIG_MODULES_LOGGER=y
|
||||
CONFIG_MODULES_MAVLINK=y
|
||||
CONFIG_MODULES_MC_ATT_CONTROL=y
|
||||
@@ -41,8 +40,5 @@ CONFIG_SYSTEMCMDS_DMESG=y
|
||||
CONFIG_SYSTEMCMDS_HARDFAULT_LOG=y
|
||||
CONFIG_SYSTEMCMDS_MIXER=y
|
||||
CONFIG_SYSTEMCMDS_PARAM=y
|
||||
CONFIG_SYSTEMCMDS_PERF=y
|
||||
CONFIG_SYSTEMCMDS_PWM=y
|
||||
CONFIG_SYSTEMCMDS_REBOOT=y
|
||||
CONFIG_SYSTEMCMDS_TOP=y
|
||||
CONFIG_SYSTEMCMDS_VER=y
|
||||
|
||||
@@ -156,11 +156,12 @@ function(px4_add_module)
|
||||
if(NOT DYNAMIC)
|
||||
target_link_libraries(${MODULE} PRIVATE prebuild_targets parameters_interface px4_layer px4_platform systemlib)
|
||||
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_LIBRARIES ${MODULE})
|
||||
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_PATHS ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
px4_list_make_absolute(ABS_SRCS ${CMAKE_CURRENT_SOURCE_DIR} ${SRCS})
|
||||
set_property(GLOBAL APPEND PROPERTY PX4_SRC_FILES ${ABS_SRCS})
|
||||
endif()
|
||||
|
||||
set_property(GLOBAL APPEND PROPERTY PX4_MODULE_PATHS ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
px4_list_make_absolute(ABS_SRCS ${CMAKE_CURRENT_SOURCE_DIR} ${SRCS})
|
||||
set_property(GLOBAL APPEND PROPERTY PX4_SRC_FILES ${ABS_SRCS})
|
||||
|
||||
# set defaults if not set
|
||||
set(MAIN_DEFAULT MAIN-NOTFOUND)
|
||||
set(STACK_MAIN_DEFAULT 2048)
|
||||
|
||||
@@ -90,7 +90,7 @@ ARCHCCMAJOR = $(shell echo $(ARCHCCVERSION) | cut -d'.' -f1)
|
||||
ifeq ($(CONFIG_DEBUG_CUSTOMOPT),y)
|
||||
MAXOPTIMIZATION = $(CONFIG_DEBUG_OPTLEVEL)
|
||||
else
|
||||
MAXOPTIMIZATION = -Os
|
||||
MAXOPTIMIZATION = ${MAX_CUSTOM_OPT_LEVEL}
|
||||
endif
|
||||
|
||||
FLAGS = $(MAXOPTIMIZATION) -g2 \
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module_name: uLanding Radar
|
||||
serial_config:
|
||||
- command: ulanding_radar start ${SERIAL_DEV}
|
||||
- command: ulanding_radar start -d ${SERIAL_DEV}
|
||||
port_config_param:
|
||||
name: SENS_ULAND_CFG
|
||||
group: Sensors
|
||||
|
||||
@@ -3912,7 +3912,7 @@ void Commander::estimator_check()
|
||||
|
||||
if (run_quality_checks && _status.vehicle_type == vehicle_status_s::VEHICLE_TYPE_ROTARY_WING) {
|
||||
|
||||
if (_status.arming_state == vehicle_status_s::ARMING_STATE_STANDBY) {
|
||||
if (_status.arming_state != vehicle_status_s::ARMING_STATE_ARMED) {
|
||||
_nav_test_failed = false;
|
||||
_nav_test_passed = false;
|
||||
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
#include <ControlAllocation/ControlAllocation.hpp>
|
||||
|
||||
#include <matrix/matrix/math.hpp>
|
||||
#include <uORB/topics/vehicle_actuator_setpoint.h>
|
||||
|
||||
class ActuatorEffectiveness
|
||||
{
|
||||
@@ -54,6 +55,23 @@ public:
|
||||
static constexpr uint8_t NUM_ACTUATORS = ControlAllocation::NUM_ACTUATORS;
|
||||
static constexpr uint8_t NUM_AXES = ControlAllocation::NUM_AXES;
|
||||
|
||||
enum class FlightPhase {
|
||||
HOVER_FLIGHT = 0,
|
||||
FORWARD_FLIGHT = 1,
|
||||
TRANSITION_HF_TO_FF = 2,
|
||||
TRANSITION_FF_TO_HF = 3
|
||||
};
|
||||
|
||||
/**
|
||||
* Set the current flight phase
|
||||
*
|
||||
* @param Flight phase
|
||||
*/
|
||||
virtual void setFlightPhase(const FlightPhase &flight_phase)
|
||||
{
|
||||
_flight_phase = flight_phase;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the control effectiveness matrix if updated
|
||||
*
|
||||
@@ -66,7 +84,20 @@ public:
|
||||
*
|
||||
* @return Actuator trims
|
||||
*/
|
||||
const matrix::Vector<float, NUM_ACTUATORS> &getActuatorTrim() const { return _trim; }
|
||||
const matrix::Vector<float, NUM_ACTUATORS> &getActuatorTrim() const
|
||||
{
|
||||
return _trim;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the current flight phase
|
||||
*
|
||||
* @return Flight phase
|
||||
*/
|
||||
const FlightPhase &getFlightPhase() const
|
||||
{
|
||||
return _flight_phase;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the number of actuators
|
||||
@@ -75,4 +106,5 @@ public:
|
||||
|
||||
protected:
|
||||
matrix::Vector<float, NUM_ACTUATORS> _trim; ///< Actuator trim
|
||||
FlightPhase _flight_phase{FlightPhase::HOVER_FLIGHT}; ///< Current flight phase
|
||||
};
|
||||
|
||||
@@ -1,85 +0,0 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2021 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name PX4 nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#include "ActuatorEffectivenessCustom.hpp"
|
||||
|
||||
ActuatorEffectivenessCustom::ActuatorEffectivenessCustom(ModuleParams *parent):
|
||||
ModuleParams(parent)
|
||||
{
|
||||
}
|
||||
|
||||
bool ActuatorEffectivenessCustom::getEffectivenessMatrix(matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &matrix,
|
||||
bool force)
|
||||
{
|
||||
if (_updated || force) {
|
||||
_updated = false;
|
||||
|
||||
int num_actuators = 0;
|
||||
|
||||
for (int n = 0; n < NUM_ACTUATORS; n++) {
|
||||
// CA_ACTn_TRQ_R
|
||||
// CA_ACTn_TRQ_P
|
||||
// CA_ACTn_TRQ_Y
|
||||
char torque_str[3][17];
|
||||
sprintf(torque_str[0], "CA_ACT%u_TRQ_R", n);
|
||||
sprintf(torque_str[1], "CA_ACT%u_TRQ_P", n);
|
||||
sprintf(torque_str[2], "CA_ACT%u_TRQ_Y", n);
|
||||
|
||||
// CA_ACTn_THR_X
|
||||
// CA_ACTn_THR_Y
|
||||
// CA_ACTn_THR_Z
|
||||
char thrust_str[3][17];
|
||||
sprintf(thrust_str[0], "CA_ACT%u_THR_X", n);
|
||||
sprintf(thrust_str[1], "CA_ACT%u_THR_Y", n);
|
||||
sprintf(thrust_str[2], "CA_ACT%u_THR_Z", n);
|
||||
|
||||
for (int i = 0; i < 3; i++) {
|
||||
// CA_ACTn_TRQ_{R,P,Y}
|
||||
param_get(param_find(torque_str[i]), &_matrix(n, i));
|
||||
|
||||
// CA_ACTn_THR_{X,Y,Z}
|
||||
param_get(param_find(thrust_str[i]), &_matrix(n, i + 3));
|
||||
}
|
||||
|
||||
if (_matrix.row(n).longerThan(0.f)) {
|
||||
num_actuators++;
|
||||
}
|
||||
}
|
||||
|
||||
_num_actuators = num_actuators;
|
||||
matrix = _matrix;
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
@@ -1,68 +0,0 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2021 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name PX4 nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* @file ActuatorEffectivenessCustom.hpp
|
||||
*
|
||||
* Actuator effectiveness computed from rotors position and orientation
|
||||
*
|
||||
* @author Julien Lecoeur <julien.lecoeur@gmail.com>
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "ActuatorEffectiveness.hpp"
|
||||
|
||||
#include <px4_platform_common/module_params.h>
|
||||
#include <uORB/Subscription.hpp>
|
||||
#include <uORB/SubscriptionInterval.hpp>
|
||||
|
||||
using namespace time_literals;
|
||||
|
||||
class ActuatorEffectivenessCustom: public ModuleParams, public ActuatorEffectiveness
|
||||
{
|
||||
public:
|
||||
ActuatorEffectivenessCustom(ModuleParams *parent);
|
||||
virtual ~ActuatorEffectivenessCustom() = default;
|
||||
|
||||
bool getEffectivenessMatrix(matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &matrix, bool force) override;
|
||||
|
||||
int numActuators() const override { return _num_actuators; }
|
||||
private:
|
||||
|
||||
matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> _matrix{};
|
||||
|
||||
int _num_actuators{0};
|
||||
|
||||
bool _updated{true};
|
||||
};
|
||||
+78
-25
@@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2020-2021 PX4 Development Team. All rights reserved.
|
||||
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@@ -54,33 +54,78 @@ ActuatorEffectivenessMultirotor::getEffectivenessMatrix(matrix::Matrix<float, NU
|
||||
_updated = false;
|
||||
|
||||
// Get multirotor geometry
|
||||
MultirotorGeometry geometry{};
|
||||
MultirotorGeometry geometry = {};
|
||||
geometry.rotors[0].position_x = _param_ca_mc_r0_px.get();
|
||||
geometry.rotors[0].position_y = _param_ca_mc_r0_py.get();
|
||||
geometry.rotors[0].position_z = _param_ca_mc_r0_pz.get();
|
||||
geometry.rotors[0].axis_x = _param_ca_mc_r0_ax.get();
|
||||
geometry.rotors[0].axis_y = _param_ca_mc_r0_ay.get();
|
||||
geometry.rotors[0].axis_z = _param_ca_mc_r0_az.get();
|
||||
geometry.rotors[0].thrust_coef = _param_ca_mc_r0_ct.get();
|
||||
geometry.rotors[0].moment_ratio = _param_ca_mc_r0_km.get();
|
||||
|
||||
for (int n = 0; n < NUM_ROTORS_MAX; n++) {
|
||||
char buffer[17];
|
||||
geometry.rotors[1].position_x = _param_ca_mc_r1_px.get();
|
||||
geometry.rotors[1].position_y = _param_ca_mc_r1_py.get();
|
||||
geometry.rotors[1].position_z = _param_ca_mc_r1_pz.get();
|
||||
geometry.rotors[1].axis_x = _param_ca_mc_r1_ax.get();
|
||||
geometry.rotors[1].axis_y = _param_ca_mc_r1_ay.get();
|
||||
geometry.rotors[1].axis_z = _param_ca_mc_r1_az.get();
|
||||
geometry.rotors[1].thrust_coef = _param_ca_mc_r1_ct.get();
|
||||
geometry.rotors[1].moment_ratio = _param_ca_mc_r1_km.get();
|
||||
|
||||
for (int i = 0; i < 3; i++) {
|
||||
char axis_char = 'X' + i;
|
||||
geometry.rotors[2].position_x = _param_ca_mc_r2_px.get();
|
||||
geometry.rotors[2].position_y = _param_ca_mc_r2_py.get();
|
||||
geometry.rotors[2].position_z = _param_ca_mc_r2_pz.get();
|
||||
geometry.rotors[2].axis_x = _param_ca_mc_r2_ax.get();
|
||||
geometry.rotors[2].axis_y = _param_ca_mc_r2_ay.get();
|
||||
geometry.rotors[2].axis_z = _param_ca_mc_r2_az.get();
|
||||
geometry.rotors[2].thrust_coef = _param_ca_mc_r2_ct.get();
|
||||
geometry.rotors[2].moment_ratio = _param_ca_mc_r2_km.get();
|
||||
|
||||
// CA_MC_Rn_P{X,Y,Z}
|
||||
sprintf(buffer, "CA_MC_R%u_P%c", n, axis_char);
|
||||
param_get(param_find(buffer), &geometry.rotors[n].position(i));
|
||||
geometry.rotors[3].position_x = _param_ca_mc_r3_px.get();
|
||||
geometry.rotors[3].position_y = _param_ca_mc_r3_py.get();
|
||||
geometry.rotors[3].position_z = _param_ca_mc_r3_pz.get();
|
||||
geometry.rotors[3].axis_x = _param_ca_mc_r3_ax.get();
|
||||
geometry.rotors[3].axis_y = _param_ca_mc_r3_ay.get();
|
||||
geometry.rotors[3].axis_z = _param_ca_mc_r3_az.get();
|
||||
geometry.rotors[3].thrust_coef = _param_ca_mc_r3_ct.get();
|
||||
geometry.rotors[3].moment_ratio = _param_ca_mc_r3_km.get();
|
||||
|
||||
// CA_MC_Rn_A{X,Y,Z}
|
||||
sprintf(buffer, "CA_MC_R%u_A%c", n, axis_char);
|
||||
param_get(param_find(buffer), &geometry.rotors[n].axis(i));
|
||||
}
|
||||
geometry.rotors[4].position_x = _param_ca_mc_r4_px.get();
|
||||
geometry.rotors[4].position_y = _param_ca_mc_r4_py.get();
|
||||
geometry.rotors[4].position_z = _param_ca_mc_r4_pz.get();
|
||||
geometry.rotors[4].axis_x = _param_ca_mc_r4_ax.get();
|
||||
geometry.rotors[4].axis_y = _param_ca_mc_r4_ay.get();
|
||||
geometry.rotors[4].axis_z = _param_ca_mc_r4_az.get();
|
||||
geometry.rotors[4].thrust_coef = _param_ca_mc_r4_ct.get();
|
||||
geometry.rotors[4].moment_ratio = _param_ca_mc_r4_km.get();
|
||||
|
||||
geometry.rotors[n].axis.normalize();
|
||||
geometry.rotors[5].position_x = _param_ca_mc_r5_px.get();
|
||||
geometry.rotors[5].position_y = _param_ca_mc_r5_py.get();
|
||||
geometry.rotors[5].position_z = _param_ca_mc_r5_pz.get();
|
||||
geometry.rotors[5].axis_x = _param_ca_mc_r5_ax.get();
|
||||
geometry.rotors[5].axis_y = _param_ca_mc_r5_ay.get();
|
||||
geometry.rotors[5].axis_z = _param_ca_mc_r5_az.get();
|
||||
geometry.rotors[5].thrust_coef = _param_ca_mc_r5_ct.get();
|
||||
geometry.rotors[5].moment_ratio = _param_ca_mc_r5_km.get();
|
||||
|
||||
// CA_MC_Rn_CT
|
||||
sprintf(buffer, "CA_MC_R%u_CT", n);
|
||||
param_get(param_find(buffer), &geometry.rotors[n].thrust_coef);
|
||||
geometry.rotors[6].position_x = _param_ca_mc_r6_px.get();
|
||||
geometry.rotors[6].position_y = _param_ca_mc_r6_py.get();
|
||||
geometry.rotors[6].position_z = _param_ca_mc_r6_pz.get();
|
||||
geometry.rotors[6].axis_x = _param_ca_mc_r6_ax.get();
|
||||
geometry.rotors[6].axis_y = _param_ca_mc_r6_ay.get();
|
||||
geometry.rotors[6].axis_z = _param_ca_mc_r6_az.get();
|
||||
geometry.rotors[6].thrust_coef = _param_ca_mc_r6_ct.get();
|
||||
geometry.rotors[6].moment_ratio = _param_ca_mc_r6_km.get();
|
||||
|
||||
// CA_MC_Rn_KM
|
||||
sprintf(buffer, "CA_MC_R%u_KM", n);
|
||||
param_get(param_find(buffer), &geometry.rotors[n].moment_ratio);
|
||||
}
|
||||
geometry.rotors[7].position_x = _param_ca_mc_r7_px.get();
|
||||
geometry.rotors[7].position_y = _param_ca_mc_r7_py.get();
|
||||
geometry.rotors[7].position_z = _param_ca_mc_r7_pz.get();
|
||||
geometry.rotors[7].axis_x = _param_ca_mc_r7_ax.get();
|
||||
geometry.rotors[7].axis_y = _param_ca_mc_r7_ay.get();
|
||||
geometry.rotors[7].axis_z = _param_ca_mc_r7_az.get();
|
||||
geometry.rotors[7].thrust_coef = _param_ca_mc_r7_ct.get();
|
||||
geometry.rotors[7].moment_ratio = _param_ca_mc_r7_km.get();
|
||||
|
||||
_num_actuators = computeEffectivenessMatrix(geometry, matrix);
|
||||
return true;
|
||||
@@ -100,7 +145,11 @@ ActuatorEffectivenessMultirotor::computeEffectivenessMatrix(const MultirotorGeom
|
||||
for (size_t i = 0; i < NUM_ROTORS_MAX; i++) {
|
||||
|
||||
// Get rotor axis
|
||||
matrix::Vector3f axis{geometry.rotors[i].axis};
|
||||
matrix::Vector3f axis(
|
||||
geometry.rotors[i].axis_x,
|
||||
geometry.rotors[i].axis_y,
|
||||
geometry.rotors[i].axis_z
|
||||
);
|
||||
|
||||
// Normalize axis
|
||||
float axis_norm = axis.norm();
|
||||
@@ -114,7 +163,11 @@ ActuatorEffectivenessMultirotor::computeEffectivenessMatrix(const MultirotorGeom
|
||||
}
|
||||
|
||||
// Get rotor position
|
||||
const matrix::Vector3f position{geometry.rotors[i].position};
|
||||
matrix::Vector3f position(
|
||||
geometry.rotors[i].position_x,
|
||||
geometry.rotors[i].position_y,
|
||||
geometry.rotors[i].position_z
|
||||
);
|
||||
|
||||
// Get coefficients
|
||||
float ct = geometry.rotors[i].thrust_coef;
|
||||
@@ -125,10 +178,10 @@ ActuatorEffectivenessMultirotor::computeEffectivenessMatrix(const MultirotorGeom
|
||||
}
|
||||
|
||||
// Compute thrust generated by this rotor
|
||||
const matrix::Vector3f thrust{ct * axis};
|
||||
matrix::Vector3f thrust = ct * axis;
|
||||
|
||||
// Compute moment generated by this rotor
|
||||
const matrix::Vector3f moment{ct * position.cross(axis) - ct *km * axis};
|
||||
matrix::Vector3f moment = ct * position.cross(axis) - ct * km * axis;
|
||||
|
||||
// Fill corresponding items in effectiveness matrix
|
||||
for (size_t j = 0; j < 3; j++) {
|
||||
|
||||
+87
-9
@@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2020-2021 PX4 Development Team. All rights reserved.
|
||||
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@@ -57,16 +57,20 @@ public:
|
||||
|
||||
static constexpr int NUM_ROTORS_MAX = 8;
|
||||
|
||||
struct RotorGeometry {
|
||||
matrix::Vector3f position{};
|
||||
matrix::Vector3f axis{};
|
||||
float thrust_coef{0.f};
|
||||
float moment_ratio{0.f};
|
||||
};
|
||||
typedef struct {
|
||||
float position_x;
|
||||
float position_y;
|
||||
float position_z;
|
||||
float axis_x;
|
||||
float axis_y;
|
||||
float axis_z;
|
||||
float thrust_coef;
|
||||
float moment_ratio;
|
||||
} RotorGeometry;
|
||||
|
||||
struct MultirotorGeometry {
|
||||
typedef struct {
|
||||
RotorGeometry rotors[NUM_ROTORS_MAX];
|
||||
};
|
||||
} MultirotorGeometry;
|
||||
|
||||
static int computeEffectivenessMatrix(const MultirotorGeometry &geometry,
|
||||
matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &effectiveness);
|
||||
@@ -77,4 +81,78 @@ public:
|
||||
private:
|
||||
bool _updated{true};
|
||||
int _num_actuators{0};
|
||||
|
||||
DEFINE_PARAMETERS(
|
||||
(ParamFloat<px4::params::CA_MC_R0_PX>) _param_ca_mc_r0_px,
|
||||
(ParamFloat<px4::params::CA_MC_R0_PY>) _param_ca_mc_r0_py,
|
||||
(ParamFloat<px4::params::CA_MC_R0_PZ>) _param_ca_mc_r0_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R0_AX>) _param_ca_mc_r0_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R0_AY>) _param_ca_mc_r0_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R0_AZ>) _param_ca_mc_r0_az,
|
||||
(ParamFloat<px4::params::CA_MC_R0_CT>) _param_ca_mc_r0_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R0_KM>) _param_ca_mc_r0_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R1_PX>) _param_ca_mc_r1_px,
|
||||
(ParamFloat<px4::params::CA_MC_R1_PY>) _param_ca_mc_r1_py,
|
||||
(ParamFloat<px4::params::CA_MC_R1_PZ>) _param_ca_mc_r1_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R1_AX>) _param_ca_mc_r1_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R1_AY>) _param_ca_mc_r1_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R1_AZ>) _param_ca_mc_r1_az,
|
||||
(ParamFloat<px4::params::CA_MC_R1_CT>) _param_ca_mc_r1_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R1_KM>) _param_ca_mc_r1_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R2_PX>) _param_ca_mc_r2_px,
|
||||
(ParamFloat<px4::params::CA_MC_R2_PY>) _param_ca_mc_r2_py,
|
||||
(ParamFloat<px4::params::CA_MC_R2_PZ>) _param_ca_mc_r2_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R2_AX>) _param_ca_mc_r2_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R2_AY>) _param_ca_mc_r2_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R2_AZ>) _param_ca_mc_r2_az,
|
||||
(ParamFloat<px4::params::CA_MC_R2_CT>) _param_ca_mc_r2_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R2_KM>) _param_ca_mc_r2_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R3_PX>) _param_ca_mc_r3_px,
|
||||
(ParamFloat<px4::params::CA_MC_R3_PY>) _param_ca_mc_r3_py,
|
||||
(ParamFloat<px4::params::CA_MC_R3_PZ>) _param_ca_mc_r3_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R3_AX>) _param_ca_mc_r3_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R3_AY>) _param_ca_mc_r3_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R3_AZ>) _param_ca_mc_r3_az,
|
||||
(ParamFloat<px4::params::CA_MC_R3_CT>) _param_ca_mc_r3_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R3_KM>) _param_ca_mc_r3_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R4_PX>) _param_ca_mc_r4_px,
|
||||
(ParamFloat<px4::params::CA_MC_R4_PY>) _param_ca_mc_r4_py,
|
||||
(ParamFloat<px4::params::CA_MC_R4_PZ>) _param_ca_mc_r4_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R4_AX>) _param_ca_mc_r4_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R4_AY>) _param_ca_mc_r4_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R4_AZ>) _param_ca_mc_r4_az,
|
||||
(ParamFloat<px4::params::CA_MC_R4_CT>) _param_ca_mc_r4_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R4_KM>) _param_ca_mc_r4_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R5_PX>) _param_ca_mc_r5_px,
|
||||
(ParamFloat<px4::params::CA_MC_R5_PY>) _param_ca_mc_r5_py,
|
||||
(ParamFloat<px4::params::CA_MC_R5_PZ>) _param_ca_mc_r5_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R5_AX>) _param_ca_mc_r5_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R5_AY>) _param_ca_mc_r5_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R5_AZ>) _param_ca_mc_r5_az,
|
||||
(ParamFloat<px4::params::CA_MC_R5_CT>) _param_ca_mc_r5_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R5_KM>) _param_ca_mc_r5_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R6_PX>) _param_ca_mc_r6_px,
|
||||
(ParamFloat<px4::params::CA_MC_R6_PY>) _param_ca_mc_r6_py,
|
||||
(ParamFloat<px4::params::CA_MC_R6_PZ>) _param_ca_mc_r6_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R6_AX>) _param_ca_mc_r6_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R6_AY>) _param_ca_mc_r6_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R6_AZ>) _param_ca_mc_r6_az,
|
||||
(ParamFloat<px4::params::CA_MC_R6_CT>) _param_ca_mc_r6_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R6_KM>) _param_ca_mc_r6_km,
|
||||
|
||||
(ParamFloat<px4::params::CA_MC_R7_PX>) _param_ca_mc_r7_px,
|
||||
(ParamFloat<px4::params::CA_MC_R7_PY>) _param_ca_mc_r7_py,
|
||||
(ParamFloat<px4::params::CA_MC_R7_PZ>) _param_ca_mc_r7_pz,
|
||||
(ParamFloat<px4::params::CA_MC_R7_AX>) _param_ca_mc_r7_ax,
|
||||
(ParamFloat<px4::params::CA_MC_R7_AY>) _param_ca_mc_r7_ay,
|
||||
(ParamFloat<px4::params::CA_MC_R7_AZ>) _param_ca_mc_r7_az,
|
||||
(ParamFloat<px4::params::CA_MC_R7_CT>) _param_ca_mc_r7_ct,
|
||||
(ParamFloat<px4::params::CA_MC_R7_KM>) _param_ca_mc_r7_km
|
||||
)
|
||||
};
|
||||
|
||||
+14
-31
@@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2020-2021 PX4 Development Team. All rights reserved.
|
||||
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@@ -41,40 +41,15 @@
|
||||
|
||||
#include "ActuatorEffectivenessStandardVTOL.hpp"
|
||||
|
||||
ActuatorEffectivenessStandardVTOL::ActuatorEffectivenessStandardVTOL()
|
||||
{
|
||||
setFlightPhase(FlightPhase::HOVER_FLIGHT);
|
||||
}
|
||||
|
||||
bool
|
||||
ActuatorEffectivenessStandardVTOL::getEffectivenessMatrix(matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &matrix,
|
||||
bool force)
|
||||
{
|
||||
vehicle_status_s vehicle_status;
|
||||
|
||||
if (_vehicle_status_sub.update(&vehicle_status)) {
|
||||
|
||||
FlightPhase flight_phase{FlightPhase::HOVER_FLIGHT};
|
||||
|
||||
// Check if the current flight phase is HOVER or FIXED_WING
|
||||
if (vehicle_status.vehicle_type == vehicle_status_s::VEHICLE_TYPE_ROTARY_WING) {
|
||||
flight_phase = FlightPhase::HOVER_FLIGHT;
|
||||
|
||||
} else {
|
||||
flight_phase = FlightPhase::FORWARD_FLIGHT;
|
||||
}
|
||||
|
||||
// Special cases for VTOL in transition
|
||||
if (vehicle_status.is_vtol && vehicle_status.in_transition_mode) {
|
||||
if (vehicle_status.in_transition_to_fw) {
|
||||
flight_phase = FlightPhase::TRANSITION_HF_TO_FF;
|
||||
|
||||
} else {
|
||||
flight_phase = FlightPhase::TRANSITION_FF_TO_HF;
|
||||
}
|
||||
}
|
||||
|
||||
if (flight_phase != _flight_phase) {
|
||||
_flight_phase = flight_phase;
|
||||
_updated = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!(_updated || force)) {
|
||||
return false;
|
||||
}
|
||||
@@ -124,3 +99,11 @@ ActuatorEffectivenessStandardVTOL::getEffectivenessMatrix(matrix::Matrix<float,
|
||||
_updated = false;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
ActuatorEffectivenessStandardVTOL::setFlightPhase(const FlightPhase &flight_phase)
|
||||
{
|
||||
ActuatorEffectiveness::setFlightPhase(flight_phase);
|
||||
_updated = true;
|
||||
|
||||
}
|
||||
|
||||
+9
-17
@@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2020-2021 PX4 Development Team. All rights reserved.
|
||||
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@@ -43,30 +43,22 @@
|
||||
|
||||
#include "ActuatorEffectiveness.hpp"
|
||||
|
||||
#include <uORB/Subscription.hpp>
|
||||
#include <uORB/topics/vehicle_status.h>
|
||||
|
||||
class ActuatorEffectivenessStandardVTOL: public ActuatorEffectiveness
|
||||
{
|
||||
public:
|
||||
ActuatorEffectivenessStandardVTOL() = default;
|
||||
ActuatorEffectivenessStandardVTOL();
|
||||
virtual ~ActuatorEffectivenessStandardVTOL() = default;
|
||||
|
||||
bool getEffectivenessMatrix(matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &matrix, bool force) override;
|
||||
|
||||
/**
|
||||
* Set the current flight phase
|
||||
*
|
||||
* @param Flight phase
|
||||
*/
|
||||
void setFlightPhase(const FlightPhase &flight_phase) override;
|
||||
|
||||
int numActuators() const override { return 7; }
|
||||
protected:
|
||||
|
||||
enum class FlightPhase {
|
||||
HOVER_FLIGHT = 0,
|
||||
FORWARD_FLIGHT = 1,
|
||||
TRANSITION_HF_TO_FF = 2,
|
||||
TRANSITION_FF_TO_HF = 3
|
||||
};
|
||||
|
||||
FlightPhase _flight_phase{FlightPhase::HOVER_FLIGHT};
|
||||
|
||||
uORB::Subscription _vehicle_status_sub{ORB_ID(vehicle_status)};
|
||||
|
||||
bool _updated{true};
|
||||
};
|
||||
|
||||
+13
-31
@@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2020-2021 PX4 Development Team. All rights reserved.
|
||||
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@@ -41,40 +41,14 @@
|
||||
|
||||
#include "ActuatorEffectivenessTiltrotorVTOL.hpp"
|
||||
|
||||
ActuatorEffectivenessTiltrotorVTOL::ActuatorEffectivenessTiltrotorVTOL()
|
||||
{
|
||||
setFlightPhase(FlightPhase::HOVER_FLIGHT);
|
||||
}
|
||||
bool
|
||||
ActuatorEffectivenessTiltrotorVTOL::getEffectivenessMatrix(matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &matrix,
|
||||
bool force)
|
||||
{
|
||||
vehicle_status_s vehicle_status;
|
||||
|
||||
if (_vehicle_status_sub.update(&vehicle_status)) {
|
||||
|
||||
FlightPhase flight_phase{FlightPhase::HOVER_FLIGHT};
|
||||
|
||||
// Check if the current flight phase is HOVER or FIXED_WING
|
||||
if (vehicle_status.vehicle_type == vehicle_status_s::VEHICLE_TYPE_ROTARY_WING) {
|
||||
flight_phase = FlightPhase::HOVER_FLIGHT;
|
||||
|
||||
} else {
|
||||
flight_phase = FlightPhase::FORWARD_FLIGHT;
|
||||
}
|
||||
|
||||
// Special cases for VTOL in transition
|
||||
if (vehicle_status.is_vtol && vehicle_status.in_transition_mode) {
|
||||
if (vehicle_status.in_transition_to_fw) {
|
||||
flight_phase = FlightPhase::TRANSITION_HF_TO_FF;
|
||||
|
||||
} else {
|
||||
flight_phase = FlightPhase::TRANSITION_FF_TO_HF;
|
||||
}
|
||||
}
|
||||
|
||||
if (flight_phase != _flight_phase) {
|
||||
_flight_phase = flight_phase;
|
||||
_updated = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (!(_updated || force)) {
|
||||
return false;
|
||||
}
|
||||
@@ -132,3 +106,11 @@ ActuatorEffectivenessTiltrotorVTOL::getEffectivenessMatrix(matrix::Matrix<float,
|
||||
_updated = false;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
ActuatorEffectivenessTiltrotorVTOL::setFlightPhase(const FlightPhase &flight_phase)
|
||||
{
|
||||
ActuatorEffectiveness::setFlightPhase(flight_phase);
|
||||
|
||||
_updated = true;
|
||||
}
|
||||
|
||||
+9
-17
@@ -1,6 +1,6 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2020-2021 PX4 Development Team. All rights reserved.
|
||||
* Copyright (c) 2020 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
@@ -43,30 +43,22 @@
|
||||
|
||||
#include "ActuatorEffectiveness.hpp"
|
||||
|
||||
#include <uORB/Subscription.hpp>
|
||||
#include <uORB/topics/vehicle_status.h>
|
||||
|
||||
class ActuatorEffectivenessTiltrotorVTOL: public ActuatorEffectiveness
|
||||
{
|
||||
public:
|
||||
ActuatorEffectivenessTiltrotorVTOL() = default;
|
||||
ActuatorEffectivenessTiltrotorVTOL();
|
||||
virtual ~ActuatorEffectivenessTiltrotorVTOL() = default;
|
||||
|
||||
bool getEffectivenessMatrix(matrix::Matrix<float, NUM_AXES, NUM_ACTUATORS> &matrix, bool force) override;
|
||||
|
||||
/**
|
||||
* Set the current flight phase
|
||||
*
|
||||
* @param Flight phase
|
||||
*/
|
||||
void setFlightPhase(const FlightPhase &flight_phase) override;
|
||||
|
||||
int numActuators() const override { return 10; }
|
||||
protected:
|
||||
|
||||
enum class FlightPhase {
|
||||
HOVER_FLIGHT = 0,
|
||||
FORWARD_FLIGHT = 1,
|
||||
TRANSITION_HF_TO_FF = 2,
|
||||
TRANSITION_FF_TO_HF = 3
|
||||
};
|
||||
|
||||
FlightPhase _flight_phase{FlightPhase::HOVER_FLIGHT};
|
||||
|
||||
uORB::Subscription _vehicle_status_sub{ORB_ID(vehicle_status)};
|
||||
|
||||
bool _updated{true};
|
||||
};
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 PX4 Development Team. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in
|
||||
# the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
# 3. Neither the name PX4 nor the names of its contributors may be
|
||||
# used to endorse or promote products derived from this software
|
||||
# without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
px4_add_library(ActuatorEffectiveness
|
||||
ActuatorEffectiveness.hpp
|
||||
ActuatorEffectivenessMultirotor.cpp
|
||||
ActuatorEffectivenessMultirotor.hpp
|
||||
ActuatorEffectivenessStandardVTOL.cpp
|
||||
ActuatorEffectivenessStandardVTOL.hpp
|
||||
ActuatorEffectivenessTiltrotorVTOL.cpp
|
||||
ActuatorEffectivenessTiltrotorVTOL.hpp
|
||||
)
|
||||
|
||||
target_compile_options(ActuatorEffectiveness PRIVATE ${MAX_CUSTOM_OPT_LEVEL})
|
||||
target_include_directories(ActuatorEffectiveness PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
target_link_libraries(ActuatorEffectiveness
|
||||
PRIVATE
|
||||
mathlib
|
||||
ControlAllocation
|
||||
)
|
||||
|
||||
# px4_add_unit_gtest(SRC ActuatorEffectivenessMultirotorTest.cpp LINKLIBS ActuatorEffectiveness)
|
||||
@@ -31,45 +31,22 @@
|
||||
#
|
||||
############################################################################
|
||||
|
||||
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
||||
add_subdirectory(ActuatorEffectiveness)
|
||||
add_subdirectory(ControlAllocation)
|
||||
|
||||
px4_add_module(
|
||||
MODULE modules__control_allocator
|
||||
MAIN control_allocator
|
||||
COMPILE_FLAGS
|
||||
${MAX_CUSTOM_OPT_LEVEL}
|
||||
INCLUDES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
SRCS
|
||||
ActuatorEffectiveness/ActuatorEffectiveness.hpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessCustom.cpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessCustom.hpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessMultirotor.cpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessMultirotor.hpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessStandardVTOL.cpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessStandardVTOL.hpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessTiltrotorVTOL.cpp
|
||||
ActuatorEffectiveness/ActuatorEffectivenessTiltrotorVTOL.hpp
|
||||
|
||||
ControlAllocation/ControlAllocation.cpp
|
||||
ControlAllocation/ControlAllocation.hpp
|
||||
ControlAllocation/ControlAllocationPseudoInverse.cpp
|
||||
ControlAllocation/ControlAllocationPseudoInverse.hpp
|
||||
ControlAllocation/ControlAllocationSequentialDesaturation.cpp
|
||||
ControlAllocation/ControlAllocationSequentialDesaturation.hpp
|
||||
|
||||
ControlAllocator.cpp
|
||||
ControlAllocator.hpp
|
||||
DEPENDS
|
||||
mathlib
|
||||
ActuatorEffectiveness
|
||||
ControlAllocation
|
||||
mixer
|
||||
px4_work_queue
|
||||
MODULE_CONFIG
|
||||
module.yaml
|
||||
)
|
||||
|
||||
px4_add_library(ControlAllocation_testing
|
||||
ControlAllocation/ControlAllocation.cpp
|
||||
ControlAllocation/ControlAllocationPseudoInverse.cpp
|
||||
)
|
||||
target_link_libraries(ControlAllocation_testing PRIVATE mathlib)
|
||||
|
||||
px4_add_unit_gtest(SRC ControlAllocation/ControlAllocationPseudoInverseTest.cpp LINKLIBS ControlAllocation_testing)
|
||||
# px4_add_unit_gtest(SRC ActuatorEffectivenessMultirotorTest.cpp LINKLIBS ActuatorEffectiveness)
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
############################################################################
|
||||
#
|
||||
# Copyright (c) 2019 PX4 Development Team. All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
#
|
||||
# 1. Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in
|
||||
# the documentation and/or other materials provided with the
|
||||
# distribution.
|
||||
# 3. Neither the name PX4 nor the names of its contributors may be
|
||||
# used to endorse or promote products derived from this software
|
||||
# without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
# POSSIBILITY OF SUCH DAMAGE.
|
||||
#
|
||||
############################################################################
|
||||
|
||||
px4_add_library(ControlAllocation
|
||||
ControlAllocation.cpp
|
||||
ControlAllocation.hpp
|
||||
ControlAllocationPseudoInverse.cpp
|
||||
ControlAllocationPseudoInverse.hpp
|
||||
ControlAllocationSequentialDesaturation.cpp
|
||||
ControlAllocationSequentialDesaturation.hpp
|
||||
)
|
||||
target_compile_options(ControlAllocation PRIVATE ${MAX_CUSTOM_OPT_LEVEL})
|
||||
target_include_directories(ControlAllocation PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||
target_link_libraries(ControlAllocation PRIVATE mathlib)
|
||||
|
||||
px4_add_unit_gtest(SRC ControlAllocationPseudoInverseTest.cpp LINKLIBS ControlAllocation)
|
||||
@@ -70,6 +70,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <matrix/matrix/math.hpp>
|
||||
#include <uORB/topics/vehicle_actuator_setpoint.h>
|
||||
|
||||
class ControlAllocation
|
||||
{
|
||||
@@ -80,7 +81,7 @@ public:
|
||||
static constexpr uint8_t NUM_ACTUATORS = 16;
|
||||
static constexpr uint8_t NUM_AXES = 6;
|
||||
|
||||
using ActuatorVector = matrix::Vector<float, NUM_ACTUATORS>;
|
||||
typedef matrix::Vector<float, NUM_ACTUATORS> ActuatorVector;
|
||||
|
||||
enum ControlAxis {
|
||||
ROLL = 0,
|
||||
|
||||
+1
-2
@@ -40,8 +40,7 @@
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "ControlAllocationPseudoInverse.hpp"
|
||||
#include <ControlAllocationPseudoInverse.hpp>
|
||||
|
||||
using namespace matrix;
|
||||
|
||||
|
||||
@@ -212,10 +212,6 @@ ControlAllocator::update_effectiveness_source()
|
||||
tmp = new ActuatorEffectivenessTiltrotorVTOL();
|
||||
break;
|
||||
|
||||
case EffectivenessSource::CUSTOM:
|
||||
tmp = new ActuatorEffectivenessCustom(this);
|
||||
break;
|
||||
|
||||
default:
|
||||
PX4_ERR("Unknown airframe");
|
||||
break;
|
||||
@@ -264,6 +260,34 @@ ControlAllocator::Run()
|
||||
return;
|
||||
}
|
||||
|
||||
vehicle_status_s vehicle_status;
|
||||
|
||||
if (_vehicle_status_sub.update(&vehicle_status)) {
|
||||
|
||||
ActuatorEffectiveness::FlightPhase flight_phase{ActuatorEffectiveness::FlightPhase::HOVER_FLIGHT};
|
||||
|
||||
// Check if the current flight phase is HOVER or FIXED_WING
|
||||
if (vehicle_status.vehicle_type == vehicle_status_s::VEHICLE_TYPE_ROTARY_WING) {
|
||||
flight_phase = ActuatorEffectiveness::FlightPhase::HOVER_FLIGHT;
|
||||
|
||||
} else {
|
||||
flight_phase = ActuatorEffectiveness::FlightPhase::FORWARD_FLIGHT;
|
||||
}
|
||||
|
||||
// Special cases for VTOL in transition
|
||||
if (vehicle_status.is_vtol && vehicle_status.in_transition_mode) {
|
||||
if (vehicle_status.in_transition_to_fw) {
|
||||
flight_phase = ActuatorEffectiveness::FlightPhase::TRANSITION_HF_TO_FF;
|
||||
|
||||
} else {
|
||||
flight_phase = ActuatorEffectiveness::FlightPhase::TRANSITION_FF_TO_HF;
|
||||
}
|
||||
}
|
||||
|
||||
// Forward to effectiveness source
|
||||
_actuator_effectiveness->setFlightPhase(flight_phase);
|
||||
}
|
||||
|
||||
// Guard against too small (< 0.2ms) and too large (> 20ms) dt's.
|
||||
const hrt_abstime now = hrt_absolute_time();
|
||||
const float dt = math::constrain(((now - _last_run) / 1e6f), 0.0002f, 0.02f);
|
||||
@@ -488,10 +512,6 @@ int ControlAllocator::print_status()
|
||||
case EffectivenessSource::TILTROTOR_VTOL:
|
||||
PX4_INFO("EffectivenessSource: Tiltrotor VTOL");
|
||||
break;
|
||||
|
||||
case EffectivenessSource::CUSTOM:
|
||||
PX4_INFO("EffectivenessSource: Custom");
|
||||
break;
|
||||
}
|
||||
|
||||
// Print current effectiveness matrix
|
||||
|
||||
@@ -41,15 +41,14 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <ActuatorEffectiveness/ActuatorEffectiveness.hpp>
|
||||
#include <ActuatorEffectiveness/ActuatorEffectivenessCustom.hpp>
|
||||
#include <ActuatorEffectiveness/ActuatorEffectivenessMultirotor.hpp>
|
||||
#include <ActuatorEffectiveness/ActuatorEffectivenessStandardVTOL.hpp>
|
||||
#include <ActuatorEffectiveness/ActuatorEffectivenessTiltrotorVTOL.hpp>
|
||||
#include <ActuatorEffectiveness.hpp>
|
||||
#include <ActuatorEffectivenessMultirotor.hpp>
|
||||
#include <ActuatorEffectivenessStandardVTOL.hpp>
|
||||
#include <ActuatorEffectivenessTiltrotorVTOL.hpp>
|
||||
|
||||
#include <ControlAllocation/ControlAllocation.hpp>
|
||||
#include <ControlAllocation/ControlAllocationPseudoInverse.hpp>
|
||||
#include <ControlAllocation/ControlAllocationSequentialDesaturation.hpp>
|
||||
#include <ControlAllocation.hpp>
|
||||
#include <ControlAllocationPseudoInverse.hpp>
|
||||
#include <ControlAllocationSequentialDesaturation.hpp>
|
||||
|
||||
#include <lib/matrix/matrix/math.hpp>
|
||||
#include <lib/perf/perf_counter.h>
|
||||
@@ -69,6 +68,7 @@
|
||||
#include <uORB/topics/vehicle_torque_setpoint.h>
|
||||
#include <uORB/topics/vehicle_thrust_setpoint.h>
|
||||
#include <uORB/topics/vehicle_actuator_setpoint.h>
|
||||
#include <uORB/topics/vehicle_status.h>
|
||||
|
||||
class ControlAllocator : public ModuleBase<ControlAllocator>, public ModuleParams, public px4::WorkItem
|
||||
{
|
||||
@@ -124,11 +124,10 @@ private:
|
||||
ControlAllocation *_control_allocation{nullptr}; ///< class for control allocation calculations
|
||||
|
||||
enum class EffectivenessSource {
|
||||
NONE = -1,
|
||||
MULTIROTOR = 0,
|
||||
STANDARD_VTOL = 1,
|
||||
NONE = -1,
|
||||
MULTIROTOR = 0,
|
||||
STANDARD_VTOL = 1,
|
||||
TILTROTOR_VTOL = 2,
|
||||
CUSTOM = 3,
|
||||
};
|
||||
|
||||
EffectivenessSource _effectiveness_source_id{EffectivenessSource::NONE};
|
||||
@@ -148,6 +147,7 @@ private:
|
||||
uORB::SubscriptionInterval _parameter_update_sub{ORB_ID(parameter_update), 1_s};
|
||||
|
||||
uORB::Subscription _airspeed_sub{ORB_ID(airspeed)}; /**< airspeed subscription */
|
||||
uORB::Subscription _vehicle_status_sub{ORB_ID(vehicle_status)};
|
||||
|
||||
matrix::Vector3f _torque_sp;
|
||||
matrix::Vector3f _thrust_sp;
|
||||
|
||||
@@ -50,7 +50,6 @@
|
||||
* @value 0 Multirotor
|
||||
* @value 1 Standard VTOL (WIP)
|
||||
* @value 2 Tiltrotor VTOL (WIP)
|
||||
* @value 3 Custom (CA_ACTn* torque and thrust parameters)
|
||||
* @group Control Allocation
|
||||
*/
|
||||
PARAM_DEFINE_INT32(CA_AIRFRAME, 0);
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
__max_num_config_instances: &max_num_config_instances 16
|
||||
|
||||
module_name: control_allocator
|
||||
|
||||
parameters:
|
||||
- group: Control Allocator
|
||||
definitions:
|
||||
CA_ACT${i}_TRQ_R:
|
||||
description:
|
||||
short: actuator ${i} roll
|
||||
long: Actuator ${i} roll torque
|
||||
type: float
|
||||
decimal: 2
|
||||
reboot_required: false
|
||||
num_instances: *max_num_config_instances
|
||||
instance_start: 0
|
||||
default: 0.0
|
||||
|
||||
CA_ACT${i}_TRQ_P:
|
||||
description:
|
||||
short: actuator ${i} pitch
|
||||
long: Actuator ${i} pitch torque
|
||||
type: float
|
||||
decimal: 2
|
||||
reboot_required: false
|
||||
num_instances: *max_num_config_instances
|
||||
instance_start: 0
|
||||
default: 0.0
|
||||
|
||||
CA_ACT${i}_TRQ_Y:
|
||||
description:
|
||||
short: actuator ${i} yaw
|
||||
long: Actuator ${i} yaw torque
|
||||
type: float
|
||||
decimal: 2
|
||||
reboot_required: false
|
||||
num_instances: *max_num_config_instances
|
||||
instance_start: 0
|
||||
default: 0.0
|
||||
|
||||
CA_ACT${i}_THR_X:
|
||||
description:
|
||||
short: actuator ${i} thrust x
|
||||
long: Actuator ${i} thrust x
|
||||
type: float
|
||||
decimal: 2
|
||||
reboot_required: false
|
||||
num_instances: *max_num_config_instances
|
||||
instance_start: 0
|
||||
default: 0.0
|
||||
|
||||
CA_ACT${i}_THR_Y:
|
||||
description:
|
||||
short: actuator ${i} thrust y
|
||||
long: Actuator ${i} thrust y
|
||||
type: float
|
||||
decimal: 2
|
||||
reboot_required: false
|
||||
num_instances: *max_num_config_instances
|
||||
instance_start: 0
|
||||
default: 0.0
|
||||
|
||||
CA_ACT${i}_THR_Z:
|
||||
description:
|
||||
short: actuator ${i} thrust y
|
||||
long: Actuator ${i} thrust y
|
||||
type: float
|
||||
decimal: 2
|
||||
reboot_required: false
|
||||
num_instances: *max_num_config_instances
|
||||
instance_start: 0
|
||||
default: 0.0
|
||||
@@ -54,6 +54,8 @@ px4_add_module(
|
||||
EKF/EKFGSF_yaw.cpp
|
||||
EKF/estimator_interface.cpp
|
||||
EKF/gps_checks.cpp
|
||||
EKF/gps_control.cpp
|
||||
EKF/gps_fusion.cpp
|
||||
EKF/gps_yaw_fusion.cpp
|
||||
EKF/imu_down_sampler.cpp
|
||||
EKF/mag_control.cpp
|
||||
|
||||
@@ -42,6 +42,8 @@ add_library(ecl_EKF
|
||||
EKFGSF_yaw.cpp
|
||||
estimator_interface.cpp
|
||||
gps_checks.cpp
|
||||
gps_control.cpp
|
||||
gps_fusion.cpp
|
||||
gps_yaw_fusion.cpp
|
||||
imu_down_sampler.cpp
|
||||
mag_control.cpp
|
||||
|
||||
@@ -519,242 +519,6 @@ void Ekf::resetOnGroundMotionForOpticalFlowChecks()
|
||||
_time_good_motion_us = _imu_sample_delayed.time_us;
|
||||
}
|
||||
|
||||
void Ekf::controlGpsFusion()
|
||||
{
|
||||
// Check for new GPS data that has fallen behind the fusion time horizon
|
||||
if (_gps_data_ready) {
|
||||
|
||||
const bool gps_checks_passing = isTimedOut(_last_gps_fail_us, (uint64_t)5e6);
|
||||
const bool gps_checks_failing = isTimedOut(_last_gps_pass_us, (uint64_t)5e6);
|
||||
|
||||
controlGpsYawFusion(gps_checks_passing, gps_checks_failing);
|
||||
|
||||
// Determine if we should use GPS aiding for velocity and horizontal position
|
||||
// To start using GPS we need angular alignment completed, the local NED origin set and GPS data that has not failed checks recently
|
||||
if ((_params.fusion_mode & MASK_USE_GPS) && !_control_status.flags.gps) {
|
||||
if (_control_status.flags.tilt_align && _NED_origin_initialised && gps_checks_passing) {
|
||||
// If the heading is not aligned, reset the yaw and magnetic field states
|
||||
// Do not use external vision for yaw if using GPS because yaw needs to be
|
||||
// defined relative to an NED reference frame
|
||||
if (_control_status.flags.ev_yaw
|
||||
|| _mag_inhibit_yaw_reset_req
|
||||
|| _mag_yaw_reset_req) {
|
||||
|
||||
_mag_yaw_reset_req = true;
|
||||
|
||||
// Stop the vision for yaw fusion and do not allow it to start again
|
||||
stopEvYawFusion();
|
||||
_inhibit_ev_yaw_use = true;
|
||||
|
||||
} else if (_control_status.flags.yaw_align) {
|
||||
// If the heading is valid start using gps aiding
|
||||
startGpsFusion();
|
||||
}
|
||||
}
|
||||
|
||||
} else if (_control_status.flags.gps
|
||||
&& (!(_params.fusion_mode & MASK_USE_GPS) || !_control_status.flags.yaw_align)) {
|
||||
|
||||
stopGpsFusion();
|
||||
}
|
||||
|
||||
// Handle the case where we are using GPS and another source of aiding and GPS is failing checks
|
||||
if (_control_status.flags.gps && gps_checks_failing && isOtherSourceOfHorizontalAidingThan(_control_status.flags.gps)) {
|
||||
stopGpsFusion();
|
||||
|
||||
// Reset position state to external vision if we are going to use absolute values
|
||||
if (_control_status.flags.ev_pos && !(_params.fusion_mode & MASK_ROTATE_EV)) {
|
||||
resetHorizontalPosition();
|
||||
}
|
||||
|
||||
_warning_events.flags.gps_quality_poor = true;
|
||||
ECL_WARN("GPS quality poor - stopping use");
|
||||
}
|
||||
|
||||
// handle case where we are not currently using GPS, but need to align yaw angle using EKF-GSF before
|
||||
// we can start using GPS
|
||||
const bool align_yaw_using_gsf = !_control_status.flags.yaw_align
|
||||
&& (_params.mag_fusion_type == MAG_FUSE_TYPE_NONE);
|
||||
|
||||
if ((align_yaw_using_gsf || _do_ekfgsf_yaw_reset)
|
||||
&& isTimedOut(_ekfgsf_yaw_reset_time, 5000000)){
|
||||
if (resetYawToEKFGSF()) {
|
||||
_ekfgsf_yaw_reset_time = _time_last_imu;
|
||||
_do_ekfgsf_yaw_reset = false;
|
||||
}
|
||||
}
|
||||
|
||||
// handle the case when we now have GPS, but have not been fusing it for an extended period
|
||||
if (_control_status.flags.gps) {
|
||||
// We are relying on aiding to constrain drift so after a specified time
|
||||
// with no aiding we need to do something
|
||||
bool do_vel_pos_reset = isTimedOut(_time_last_hor_pos_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_delpos_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_hor_vel_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_of_fuse, _params.reset_timeout_max);
|
||||
|
||||
// We haven't had an absolute position fix for a longer time so need to do something
|
||||
do_vel_pos_reset = do_vel_pos_reset || isTimedOut(_time_last_hor_pos_fuse, 2 * _params.reset_timeout_max);
|
||||
|
||||
/* Logic controlling the reset of navigation filter yaw to the EKF-GSF estimate to recover from loss of
|
||||
navigation casued by a bad yaw estimate.
|
||||
|
||||
A rapid reset to the EKF-GSF estimate is performed after a recent takeoff if horizontal velocity
|
||||
innovation checks fail. This enables recovery from a bad yaw estimate. After 30 seconds from takeoff,
|
||||
different test criteria are used that take longer to trigger and reduce false positives. A reset is
|
||||
not performed if the fault condition was present before flight to prevent triggering due to GPS glitches
|
||||
or other sensor errors.
|
||||
|
||||
The yaw reset to the EKF-GSF estimate can be requested externally at any time during flight.
|
||||
|
||||
The total number of resets allowed per boot cycle is limited.
|
||||
|
||||
The minimum time interval between resets to the EKF-GSF estimate is limited to allow the EKF-GSF time
|
||||
to improve its estimate if the previous reset was not successful.
|
||||
|
||||
A reset is not performed when getting GPS back after a significant period of no data because the timeout
|
||||
could have been caused by bad GPS.
|
||||
*/
|
||||
|
||||
const bool recent_takeoff_nav_failure = _control_status.flags.in_air &&
|
||||
!isTimedOut(_time_last_on_ground_us, 30000000) &&
|
||||
isTimedOut(_time_last_hor_vel_fuse, _params.EKFGSF_reset_delay) &&
|
||||
(_time_last_hor_vel_fuse > _time_last_on_ground_us);
|
||||
|
||||
const bool inflight_nav_failure = _control_status.flags.in_air &&
|
||||
do_vel_pos_reset &&
|
||||
(_time_last_hor_vel_fuse > _time_last_on_ground_us) &&
|
||||
(_time_last_hor_pos_fuse > _time_last_on_ground_us);
|
||||
|
||||
bool is_yaw_failure = false;
|
||||
|
||||
if ((recent_takeoff_nav_failure || inflight_nav_failure) && _time_last_hor_vel_fuse > 0) {
|
||||
// Do sanity check to see if the innovation failures is likely caused by a yaw angle error
|
||||
// by measuring the angle between the velocity estimate and the last velocity observation
|
||||
// Only use those vectors if their norm if they are larger than 4 times their noise standard deviation
|
||||
const float vel_obs_xy_norm_sq = _last_vel_obs.xy().norm_squared();
|
||||
const float vel_state_xy_norm_sq = _state.vel.xy().norm_squared();
|
||||
|
||||
const float vel_obs_threshold_sq = fmaxf(sq(4.f) * (_last_vel_obs_var(0) + _last_vel_obs_var(1)), sq(0.4f));
|
||||
const float vel_state_threshold_sq = fmaxf(sq(4.f) * (P(4, 4) + P(5, 5)), sq(0.4f));
|
||||
|
||||
if (vel_obs_xy_norm_sq > vel_obs_threshold_sq && vel_state_xy_norm_sq > vel_state_threshold_sq) {
|
||||
const float obs_dot_vel = Vector2f(_last_vel_obs).dot(_state.vel.xy());
|
||||
const float cos_sq = sq(obs_dot_vel) / (vel_state_xy_norm_sq * vel_obs_xy_norm_sq);
|
||||
|
||||
if (cos_sq < sq(cosf(math::radians(25.f))) || obs_dot_vel < 0.f) {
|
||||
// The angle between the observation and the velocity estimate is greater than 25 degrees
|
||||
is_yaw_failure = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Detect if coming back after significant time without GPS data
|
||||
const bool gps_signal_was_lost = isTimedOut(_time_prev_gps_us, 1000000);
|
||||
const bool do_yaw_vel_pos_reset = (_do_ekfgsf_yaw_reset || is_yaw_failure) &&
|
||||
_ekfgsf_yaw_reset_count < _params.EKFGSF_reset_count_limit &&
|
||||
isTimedOut(_ekfgsf_yaw_reset_time, 5000000) &&
|
||||
!gps_signal_was_lost;
|
||||
|
||||
if (do_yaw_vel_pos_reset) {
|
||||
if (resetYawToEKFGSF()) {
|
||||
_ekfgsf_yaw_reset_time = _time_last_imu;
|
||||
_do_ekfgsf_yaw_reset = false;
|
||||
_ekfgsf_yaw_reset_count++;
|
||||
|
||||
// Reset the timeout counters
|
||||
_time_last_hor_pos_fuse = _time_last_imu;
|
||||
_time_last_delpos_fuse = _time_last_imu;
|
||||
_time_last_hor_vel_fuse = _time_last_imu;
|
||||
_time_last_of_fuse = _time_last_imu;
|
||||
}
|
||||
|
||||
} else if (do_vel_pos_reset) {
|
||||
// use GPS velocity data to check and correct yaw angle if a FW vehicle
|
||||
if (_control_status.flags.fixed_wing && _control_status.flags.in_air) {
|
||||
// if flying a fixed wing aircraft, do a complete reset that includes yaw
|
||||
_control_status.flags.mag_aligned_in_flight = realignYawGPS();
|
||||
}
|
||||
|
||||
resetVelocity();
|
||||
resetHorizontalPosition();
|
||||
_velpos_reset_request = false;
|
||||
_warning_events.flags.gps_fusion_timout = true;
|
||||
ECL_WARN("GPS fusion timeout - reset to GPS");
|
||||
|
||||
// Reset the timeout counters
|
||||
_time_last_hor_pos_fuse = _time_last_imu;
|
||||
_time_last_hor_vel_fuse = _time_last_imu;
|
||||
}
|
||||
}
|
||||
|
||||
// Only use GPS data for position and velocity aiding if enabled
|
||||
if (_control_status.flags.gps) {
|
||||
|
||||
Vector2f gps_vel_innov_gates; // [horizontal vertical]
|
||||
Vector2f gps_pos_innov_gates; // [horizontal vertical]
|
||||
Vector3f gps_pos_obs_var;
|
||||
|
||||
// correct velocity for offset relative to IMU
|
||||
const Vector3f pos_offset_body = _params.gps_pos_body - _params.imu_pos_body;
|
||||
const Vector3f vel_offset_body = _ang_rate_delayed_raw % pos_offset_body;
|
||||
const Vector3f vel_offset_earth = _R_to_earth * vel_offset_body;
|
||||
_gps_sample_delayed.vel -= vel_offset_earth;
|
||||
|
||||
// correct position and height for offset relative to IMU
|
||||
const Vector3f pos_offset_earth = _R_to_earth * pos_offset_body;
|
||||
_gps_sample_delayed.pos -= pos_offset_earth.xy();
|
||||
_gps_sample_delayed.hgt += pos_offset_earth(2);
|
||||
|
||||
const float lower_limit = fmaxf(_params.gps_pos_noise, 0.01f);
|
||||
|
||||
if (isOtherSourceOfHorizontalAidingThan(_control_status.flags.gps)) {
|
||||
// if we are using other sources of aiding, then relax the upper observation
|
||||
// noise limit which prevents bad GPS perturbing the position estimate
|
||||
gps_pos_obs_var(0) = gps_pos_obs_var(1) = sq(fmaxf(_gps_sample_delayed.hacc, lower_limit));
|
||||
|
||||
} else {
|
||||
// if we are not using another source of aiding, then we are reliant on the GPS
|
||||
// observations to constrain attitude errors and must limit the observation noise value.
|
||||
float upper_limit = fmaxf(_params.pos_noaid_noise, lower_limit);
|
||||
gps_pos_obs_var(0) = gps_pos_obs_var(1) = sq(math::constrain(_gps_sample_delayed.hacc, lower_limit, upper_limit));
|
||||
}
|
||||
|
||||
_gps_sample_delayed.sacc = fmaxf(_gps_sample_delayed.sacc, _params.gps_vel_noise);
|
||||
|
||||
_last_vel_obs_var.setAll(sq(_gps_sample_delayed.sacc));
|
||||
_last_vel_obs_var(2) *= sq(1.5f);
|
||||
|
||||
// calculate innovations
|
||||
_last_vel_obs = _gps_sample_delayed.vel;
|
||||
_gps_vel_innov = _state.vel - _last_vel_obs;
|
||||
_gps_pos_innov.xy() = Vector2f(_state.pos) - _gps_sample_delayed.pos;
|
||||
|
||||
// set innovation gate size
|
||||
gps_pos_innov_gates(0) = fmaxf(_params.gps_pos_innov_gate, 1.0f);
|
||||
gps_vel_innov_gates(0) = gps_vel_innov_gates(1) = fmaxf(_params.gps_vel_innov_gate, 1.0f);
|
||||
|
||||
// fuse GPS measurement
|
||||
fuseHorizontalVelocity(_gps_vel_innov, gps_vel_innov_gates, _last_vel_obs_var, _gps_vel_innov_var, _gps_vel_test_ratio);
|
||||
fuseVerticalVelocity(_gps_vel_innov, gps_vel_innov_gates, _last_vel_obs_var, _gps_vel_innov_var, _gps_vel_test_ratio);
|
||||
fuseHorizontalPosition(_gps_pos_innov, gps_pos_innov_gates, gps_pos_obs_var, _gps_pos_innov_var, _gps_pos_test_ratio);
|
||||
}
|
||||
|
||||
} else if (_control_status.flags.gps && (_imu_sample_delayed.time_us - _gps_sample_delayed.time_us > (uint64_t)10e6)) {
|
||||
stopGpsFusion();
|
||||
_warning_events.flags.gps_data_stopped = true;
|
||||
ECL_WARN("GPS data stopped");
|
||||
|
||||
} else if (_control_status.flags.gps && (_imu_sample_delayed.time_us - _gps_sample_delayed.time_us > (uint64_t)1e6)
|
||||
&& isOtherSourceOfHorizontalAidingThan(_control_status.flags.gps)) {
|
||||
// Handle the case where we are fusing another position source along GPS,
|
||||
// stop waiting for GPS after 1 s of lost signal
|
||||
stopGpsFusion();
|
||||
_warning_events.flags.gps_data_stopped_using_alternate = true;
|
||||
ECL_WARN("GPS data stopped, using only EV, OF or air data");
|
||||
}
|
||||
}
|
||||
|
||||
void Ekf::controlGpsYawFusion(bool gps_checks_passing, bool gps_checks_failing)
|
||||
{
|
||||
if (!(_params.fusion_mode & MASK_USE_GPSYAW)
|
||||
@@ -820,10 +584,10 @@ void Ekf::controlGpsYawFusion(bool gps_checks_passing, bool gps_checks_failing)
|
||||
} else {
|
||||
if (starting_conditions_passing) {
|
||||
// Try to activate GPS yaw fusion
|
||||
if (resetYawToGps()) {
|
||||
_control_status.flags.yaw_align = true;
|
||||
startGpsYawFusion();
|
||||
|
||||
if (_control_status.flags.gps_yaw) {
|
||||
_nb_gps_yaw_reset_available = 1;
|
||||
startGpsYawFusion();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1465,3 +1229,50 @@ void Ekf::controlAuxVelFusion()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
bool Ekf::isVelStateAlignedWithObs() const
|
||||
{
|
||||
/* Do sanity check to see if the innovation failures is likely caused by a yaw angle error
|
||||
* by measuring the angle between the velocity estimate and the last velocity observation
|
||||
* Only use those vectors if their norm if they are larger than 4 times their noise standard deviation
|
||||
*/
|
||||
const float vel_obs_xy_norm_sq = _last_vel_obs.xy().norm_squared();
|
||||
const float vel_state_xy_norm_sq = _state.vel.xy().norm_squared();
|
||||
|
||||
const float vel_obs_threshold_sq = fmaxf(sq(4.f) * (_last_vel_obs_var(0) + _last_vel_obs_var(1)), sq(0.4f));
|
||||
const float vel_state_threshold_sq = fmaxf(sq(4.f) * (P(4, 4) + P(5, 5)), sq(0.4f));
|
||||
|
||||
if (vel_obs_xy_norm_sq > vel_obs_threshold_sq && vel_state_xy_norm_sq > vel_state_threshold_sq) {
|
||||
const float obs_dot_vel = Vector2f(_last_vel_obs).dot(_state.vel.xy());
|
||||
const float cos_sq = sq(obs_dot_vel) / (vel_state_xy_norm_sq * vel_obs_xy_norm_sq);
|
||||
|
||||
if (cos_sq < sq(cosf(math::radians(25.f))) || obs_dot_vel < 0.f) {
|
||||
// The angle between the observation and the velocity estimate is greater than 25 degrees
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool Ekf::hasHorizontalAidingTimedOut() const
|
||||
{
|
||||
return isTimedOut(_time_last_hor_pos_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_delpos_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_hor_vel_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_of_fuse, _params.reset_timeout_max);
|
||||
}
|
||||
|
||||
void Ekf::processVelPosResetRequest()
|
||||
{
|
||||
if (_velpos_reset_request) {
|
||||
resetVelocity();
|
||||
resetHorizontalPosition();
|
||||
_velpos_reset_request = false;
|
||||
|
||||
// Reset the timeout counters
|
||||
_time_last_hor_pos_fuse = _time_last_imu;
|
||||
_time_last_hor_vel_fuse = _time_last_imu;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -661,6 +661,8 @@ private:
|
||||
bool fuseVerticalPosition(const Vector3f &innov, const Vector2f &innov_gate, const Vector3f &obs_var,
|
||||
Vector3f &innov_var, Vector2f &test_ratio);
|
||||
|
||||
void fuseGpsVelPos();
|
||||
|
||||
// calculate optical flow body angular rate compensation
|
||||
// returns false if bias corrected body rate data is unavailable
|
||||
bool calcOptFlowBodyRateComp();
|
||||
@@ -802,6 +804,12 @@ private:
|
||||
|
||||
// control fusion of GPS observations
|
||||
void controlGpsFusion();
|
||||
bool shouldResetGpsFusion() const;
|
||||
bool hasHorizontalAidingTimedOut() const;
|
||||
bool isVelStateAlignedWithObs() const;
|
||||
void processYawEstimatorResetRequest();
|
||||
void processVelPosResetRequest();
|
||||
|
||||
void controlGpsYawFusion(bool gps_checks_passing, bool gps_checks_failing);
|
||||
|
||||
// control fusion of magnetometer observations
|
||||
|
||||
@@ -1515,9 +1515,14 @@ void Ekf::startGpsFusion()
|
||||
|
||||
void Ekf::stopGpsFusion()
|
||||
{
|
||||
stopGpsPosFusion();
|
||||
stopGpsVelFusion();
|
||||
stopGpsYawFusion();
|
||||
if (_control_status.flags.gps) {
|
||||
stopGpsPosFusion();
|
||||
stopGpsVelFusion();
|
||||
}
|
||||
|
||||
if (_control_status.flags.gps_yaw) {
|
||||
stopGpsYawFusion();
|
||||
}
|
||||
|
||||
// We do not need to know the true North anymore
|
||||
// EV yaw can start again
|
||||
@@ -1546,11 +1551,15 @@ void Ekf::stopGpsVelFusion()
|
||||
|
||||
void Ekf::startGpsYawFusion()
|
||||
{
|
||||
_control_status.flags.mag_dec = false;
|
||||
stopEvYawFusion();
|
||||
stopMagHdgFusion();
|
||||
stopMag3DFusion();
|
||||
_control_status.flags.gps_yaw = true;
|
||||
if (resetYawToGps()) {
|
||||
_control_status.flags.yaw_align = true;
|
||||
_control_status.flags.mag_dec = false;
|
||||
stopEvYawFusion();
|
||||
stopMagHdgFusion();
|
||||
stopMag3DFusion();
|
||||
_control_status.flags.gps_yaw = true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void Ekf::stopGpsYawFusion()
|
||||
|
||||
@@ -0,0 +1,209 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2021 PX4 Development Team. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name PX4 nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* @file gps_control.cpp
|
||||
* Control functions for ekf GNSS fusion
|
||||
*/
|
||||
|
||||
#include "ekf.h"
|
||||
#include <mathlib/mathlib.h>
|
||||
|
||||
void Ekf::controlGpsFusion()
|
||||
{
|
||||
if (!(_params.fusion_mode & MASK_USE_GPS)) {
|
||||
stopGpsFusion();
|
||||
return;
|
||||
}
|
||||
|
||||
// Check for new GPS data that has fallen behind the fusion time horizon
|
||||
if (_gps_data_ready) {
|
||||
const bool gps_checks_passing = isTimedOut(_last_gps_fail_us, (uint64_t)5e6);
|
||||
const bool gps_checks_failing = isTimedOut(_last_gps_pass_us, (uint64_t)5e6);
|
||||
|
||||
controlGpsYawFusion(gps_checks_passing, gps_checks_failing);
|
||||
|
||||
// Determine if we should use GPS aiding for velocity and horizontal position
|
||||
// To start using GPS we need angular alignment completed, the local NED origin set and GPS data that has not failed checks recently
|
||||
const bool mandatory_conditions_passing = _control_status.flags.tilt_align
|
||||
&& _control_status.flags.yaw_align
|
||||
&& _NED_origin_initialised;
|
||||
const bool continuing_conditions_passing = mandatory_conditions_passing
|
||||
&& !gps_checks_failing;
|
||||
const bool starting_conditions_passing = continuing_conditions_passing
|
||||
&& gps_checks_passing;
|
||||
|
||||
if (_control_status.flags.gps) {
|
||||
if (mandatory_conditions_passing) {
|
||||
if (continuing_conditions_passing
|
||||
|| !isOtherSourceOfHorizontalAidingThan(_control_status.flags.gps)) {
|
||||
|
||||
fuseGpsVelPos();
|
||||
|
||||
if (shouldResetGpsFusion()){
|
||||
const bool is_yaw_failure = !isVelStateAlignedWithObs();
|
||||
const bool was_gps_signal_lost = isTimedOut(_time_prev_gps_us, 1000000);
|
||||
|
||||
/* A reset is not performed when getting GPS back after a significant period of no data
|
||||
* because the timeout could have been caused by bad GPS.
|
||||
* The total number of resets allowed per boot cycle is limited.
|
||||
*/
|
||||
if (is_yaw_failure
|
||||
&& _control_status.flags.in_air
|
||||
&& !was_gps_signal_lost
|
||||
&& _ekfgsf_yaw_reset_count < _params.EKFGSF_reset_count_limit) {
|
||||
|
||||
_do_ekfgsf_yaw_reset = true;
|
||||
|
||||
} else {
|
||||
// use GPS velocity data to check and correct yaw angle if a FW vehicle
|
||||
if (_control_status.flags.fixed_wing && _control_status.flags.in_air) {
|
||||
// if flying a fixed wing aircraft, do a complete reset that includes yaw
|
||||
_control_status.flags.mag_aligned_in_flight = realignYawGPS();
|
||||
}
|
||||
|
||||
_warning_events.flags.gps_fusion_timout = true;
|
||||
ECL_WARN("GPS fusion timeout - resetting");
|
||||
_velpos_reset_request = true;
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
stopGpsFusion();
|
||||
_warning_events.flags.gps_quality_poor = true;
|
||||
ECL_WARN("GPS quality poor - stopping use");
|
||||
|
||||
// TODO: move this to EV control logic
|
||||
// Reset position state to external vision if we are going to use absolute values
|
||||
if (_control_status.flags.ev_pos && !(_params.fusion_mode & MASK_ROTATE_EV)) {
|
||||
resetHorizontalPosition();
|
||||
}
|
||||
}
|
||||
|
||||
} else { // mandatory conditions are not passing
|
||||
stopGpsFusion();
|
||||
}
|
||||
|
||||
} else {
|
||||
if (starting_conditions_passing) {
|
||||
// Do not use external vision for yaw if using GPS because yaw needs to be
|
||||
// defined relative to an NED reference frame
|
||||
if (_control_status.flags.ev_yaw
|
||||
|| _mag_inhibit_yaw_reset_req
|
||||
|| _mag_yaw_reset_req) {
|
||||
|
||||
_mag_yaw_reset_req = true;
|
||||
|
||||
// Stop the vision for yaw fusion and do not allow it to start again
|
||||
stopEvYawFusion();
|
||||
_inhibit_ev_yaw_use = true;
|
||||
|
||||
} else {
|
||||
startGpsFusion();
|
||||
}
|
||||
|
||||
} else if(!_control_status.flags.yaw_align
|
||||
&& (_params.mag_fusion_type == MAG_FUSE_TYPE_NONE)) {
|
||||
// If no mag is used, align using the yaw estimator
|
||||
_do_ekfgsf_yaw_reset = true;
|
||||
}
|
||||
}
|
||||
|
||||
processYawEstimatorResetRequest();
|
||||
processVelPosResetRequest();
|
||||
|
||||
} else if (_control_status.flags.gps && (_imu_sample_delayed.time_us - _gps_sample_delayed.time_us > (uint64_t)10e6)) {
|
||||
stopGpsFusion();
|
||||
_warning_events.flags.gps_data_stopped = true;
|
||||
ECL_WARN("GPS data stopped");
|
||||
|
||||
} else if (_control_status.flags.gps && (_imu_sample_delayed.time_us - _gps_sample_delayed.time_us > (uint64_t)1e6)
|
||||
&& isOtherSourceOfHorizontalAidingThan(_control_status.flags.gps)) {
|
||||
// Handle the case where we are fusing another position source along GPS,
|
||||
// stop waiting for GPS after 1 s of lost signal
|
||||
stopGpsFusion();
|
||||
_warning_events.flags.gps_data_stopped_using_alternate = true;
|
||||
ECL_WARN("GPS data stopped, using only EV, OF or air data");
|
||||
}
|
||||
}
|
||||
|
||||
bool Ekf::shouldResetGpsFusion() const
|
||||
{
|
||||
/* We are relying on aiding to constrain drift so after a specified time
|
||||
* with no aiding we need to do something
|
||||
*/
|
||||
const bool is_reset_required = hasHorizontalAidingTimedOut()
|
||||
|| isTimedOut(_time_last_hor_pos_fuse, 2 * _params.reset_timeout_max);
|
||||
|
||||
/* Logic controlling the reset of navigation filter yaw to the EKF-GSF estimate to recover from loss of
|
||||
* navigation casued by a bad yaw estimate.
|
||||
|
||||
* A rapid reset to the EKF-GSF estimate is performed after a recent takeoff if horizontal velocity
|
||||
* innovation checks fail. This enables recovery from a bad yaw estimate. After 30 seconds from takeoff,
|
||||
* different test criteria are used that take longer to trigger and reduce false positives. A reset is
|
||||
* not performed if the fault condition was present before flight to prevent triggering due to GPS glitches
|
||||
* or other sensor errors.
|
||||
*/
|
||||
const bool is_recent_takeoff_nav_failure = _control_status.flags.in_air
|
||||
&& isRecent(_time_last_on_ground_us, 30000000)
|
||||
&& isTimedOut(_time_last_hor_vel_fuse, _params.EKFGSF_reset_delay)
|
||||
&& (_time_last_hor_vel_fuse > _time_last_on_ground_us);
|
||||
|
||||
const bool is_inflight_nav_failure = _control_status.flags.in_air
|
||||
&& isTimedOut(_time_last_hor_vel_fuse, _params.reset_timeout_max)
|
||||
&& isTimedOut(_time_last_hor_pos_fuse, _params.reset_timeout_max)
|
||||
&& (_time_last_hor_vel_fuse > _time_last_on_ground_us)
|
||||
&& (_time_last_hor_pos_fuse > _time_last_on_ground_us);
|
||||
|
||||
return (is_reset_required || is_recent_takeoff_nav_failure || is_inflight_nav_failure);
|
||||
}
|
||||
|
||||
void Ekf::processYawEstimatorResetRequest()
|
||||
{
|
||||
/* The yaw reset to the EKF-GSF estimate can be requested externally at any time during flight.
|
||||
* The minimum time interval between resets to the EKF-GSF estimate is limited to allow the EKF-GSF time
|
||||
* to improve its estimate if the previous reset was not successful.
|
||||
*/
|
||||
if (_do_ekfgsf_yaw_reset
|
||||
&& isTimedOut(_ekfgsf_yaw_reset_time, 5000000)){
|
||||
if (resetYawToEKFGSF()) {
|
||||
_ekfgsf_yaw_reset_time = _time_last_imu;
|
||||
_time_last_hor_pos_fuse = _time_last_imu;
|
||||
_time_last_hor_vel_fuse = _time_last_imu;
|
||||
|
||||
_do_ekfgsf_yaw_reset = false;
|
||||
_velpos_reset_request = false; // included in yaw reset
|
||||
_ekfgsf_yaw_reset_count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
/****************************************************************************
|
||||
*
|
||||
* Copyright (c) 2021 PX4. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name PX4 nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/**
|
||||
* @file gps_fusion.cpp
|
||||
* Function for fusing gps measurements
|
||||
*/
|
||||
|
||||
/* #include <mathlib/mathlib.h> */
|
||||
#include "ekf.h"
|
||||
|
||||
void Ekf::fuseGpsVelPos()
|
||||
{
|
||||
Vector2f gps_vel_innov_gates; // [horizontal vertical]
|
||||
Vector2f gps_pos_innov_gates; // [horizontal vertical]
|
||||
Vector3f gps_pos_obs_var;
|
||||
|
||||
// correct velocity for offset relative to IMU
|
||||
const Vector3f pos_offset_body = _params.gps_pos_body - _params.imu_pos_body;
|
||||
const Vector3f vel_offset_body = _ang_rate_delayed_raw % pos_offset_body;
|
||||
const Vector3f vel_offset_earth = _R_to_earth * vel_offset_body;
|
||||
_gps_sample_delayed.vel -= vel_offset_earth;
|
||||
|
||||
// correct position and height for offset relative to IMU
|
||||
const Vector3f pos_offset_earth = _R_to_earth * pos_offset_body;
|
||||
_gps_sample_delayed.pos -= pos_offset_earth.xy();
|
||||
_gps_sample_delayed.hgt += pos_offset_earth(2);
|
||||
|
||||
const float lower_limit = fmaxf(_params.gps_pos_noise, 0.01f);
|
||||
|
||||
if (isOtherSourceOfHorizontalAidingThan(_control_status.flags.gps)) {
|
||||
// if we are using other sources of aiding, then relax the upper observation
|
||||
// noise limit which prevents bad GPS perturbing the position estimate
|
||||
gps_pos_obs_var(0) = gps_pos_obs_var(1) = sq(fmaxf(_gps_sample_delayed.hacc, lower_limit));
|
||||
|
||||
} else {
|
||||
// if we are not using another source of aiding, then we are reliant on the GPS
|
||||
// observations to constrain attitude errors and must limit the observation noise value.
|
||||
float upper_limit = fmaxf(_params.pos_noaid_noise, lower_limit);
|
||||
gps_pos_obs_var(0) = gps_pos_obs_var(1) = sq(math::constrain(_gps_sample_delayed.hacc, lower_limit, upper_limit));
|
||||
}
|
||||
|
||||
_gps_sample_delayed.sacc = fmaxf(_gps_sample_delayed.sacc, _params.gps_vel_noise);
|
||||
|
||||
_last_vel_obs_var.setAll(sq(_gps_sample_delayed.sacc));
|
||||
_last_vel_obs_var(2) *= sq(1.5f);
|
||||
|
||||
// calculate innovations
|
||||
_last_vel_obs = _gps_sample_delayed.vel;
|
||||
_gps_vel_innov = _state.vel - _last_vel_obs;
|
||||
_gps_pos_innov.xy() = Vector2f(_state.pos) - _gps_sample_delayed.pos;
|
||||
|
||||
// set innovation gate size
|
||||
gps_pos_innov_gates(0) = fmaxf(_params.gps_pos_innov_gate, 1.0f);
|
||||
gps_vel_innov_gates(0) = gps_vel_innov_gates(1) = fmaxf(_params.gps_vel_innov_gate, 1.0f);
|
||||
|
||||
// fuse GPS measurement
|
||||
fuseHorizontalVelocity(_gps_vel_innov, gps_vel_innov_gates, _last_vel_obs_var, _gps_vel_innov_var, _gps_vel_test_ratio);
|
||||
fuseVerticalVelocity(_gps_vel_innov, gps_vel_innov_gates, _last_vel_obs_var, _gps_vel_innov_var, _gps_vel_test_ratio);
|
||||
fuseHorizontalPosition(_gps_pos_innov, gps_pos_innov_gates, gps_pos_obs_var, _gps_pos_innov_var, _gps_pos_test_ratio);
|
||||
}
|
||||
@@ -103,289 +103,289 @@ Timestamp,state[0],state[1],state[2],state[3],state[4],state[5],state[6],state[7
|
||||
10085000,0.7046,0.002135,-0.0132,0.7095,-0.06212,0.02821,-0.1494,-0.08424,0.05008,-365.5,-1.617e-05,-5.735e-05,8.495e-09,-9.721e-06,1.794e-05,-0.0006764,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002068,0.0004578,0.0004577,0.0002177,1.896,1.895,0.1199,7.264,7.261,0.1512,5.788e-09,5.793e-09,9.111e-09,3.699e-06,3.7e-06,2.181e-06,0,0,0,0,0,0,0,0
|
||||
10185000,0.7044,0.002147,-0.01324,0.7097,-0.0645,0.0305,-0.147,-0.09067,0.05302,-365.5,-1.619e-05,-5.733e-05,-8.066e-07,-1.029e-05,1.843e-05,-0.0007028,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002068,0.0004683,0.0004682,0.0002166,2.009,2.008,0.1177,7.981,7.979,0.1502,5.788e-09,5.793e-09,8.972e-09,3.699e-06,3.7e-06,2.065e-06,0,0,0,0,0,0,0,0
|
||||
10285000,0.7044,0.0021,-0.01323,0.7097,-0.06311,0.02891,-0.1356,-0.09037,0.05203,-365.5,-1.615e-05,-5.728e-05,-1.366e-06,-1.04e-05,2.09e-05,-0.0007572,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002069,0.0004637,0.0004635,0.0002157,1.988,1.988,0.1153,8.105,8.102,0.1492,5.727e-09,5.732e-09,8.83e-09,3.667e-06,3.667e-06,1.952e-06,0,0,0,0,0,0,0,0
|
||||
10385000,0.7043,0.002088,-0.01316,0.7097,0.009036,-0.01973,0.005822,0.0008454,-0.001783,-365.5,-1.615e-05,-5.728e-05,-1.326e-06,-1.114e-05,2.149e-05,-0.0007917,0.2083,0.00204,0.4353,0,0,0,0,0,0.000207,0.0004746,0.0004744,0.0002149,0.03615,0.03615,0.03759,0.1253,0.1253,0.132,5.727e-09,5.732e-09,8.685e-09,3.667e-06,3.667e-06,1.853e-06,0,0,0,0,0,0,0,0
|
||||
10485000,0.7042,0.002129,-0.01314,0.7099,0.007179,-0.01863,0.003279,0.001638,-0.003703,-365.5,-1.617e-05,-5.727e-05,-1.853e-06,-1.19e-05,2.212e-05,-0.000827,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002071,0.0004858,0.0004856,0.0002141,0.04172,0.04172,0.03812,0.1263,0.1263,0.1181,5.727e-09,5.732e-09,8.537e-09,3.667e-06,3.667e-06,1.776e-06,0,0,0,0,0,0,0,0
|
||||
10585000,0.7042,0.002234,-0.01327,0.7098,0.00572,-0.01463,0.001816,0.001786,-0.003455,-365.5,-1.607e-05,-5.703e-05,-1.824e-06,-1.541e-05,2.231e-05,-0.0008467,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002073,0.0004864,0.0004863,0.0002133,0.04395,0.04394,0.03637,0.085,0.085,0.1077,5.671e-09,5.675e-09,8.388e-09,3.659e-06,3.659e-06,1.712e-06,0,0,0,0,0,0,0,0
|
||||
10685000,0.7042,0.002285,-0.01325,0.7098,0.00306,-0.01467,-0.001156,0.002262,-0.004935,-365.5,-1.607e-05,-5.703e-05,-1.805e-06,-1.57e-05,2.255e-05,-0.0008606,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002087,0.0004979,0.0004978,0.0002139,0.05638,0.05637,0.03728,0.08719,0.08719,0.1029,5.671e-09,5.675e-09,8.275e-09,3.659e-06,3.659e-06,1.673e-06,0,0,0,0,0,0,0,0
|
||||
10785000,0.7042,0.002332,-0.01342,0.7098,0.001922,-0.01151,-0.00387,0.002302,-0.004124,-365.5,-1.583e-05,-5.671e-05,-1.805e-06,-2.042e-05,2.37e-05,-0.0008689,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002089,0.0004726,0.0004724,0.0002132,0.05896,0.05896,0.03587,0.06648,0.06648,0.09642,5.479e-09,5.483e-09,8.123e-09,3.634e-06,3.635e-06,1.621e-06,0,0,0,0,0,0,0,0
|
||||
10885000,0.7042,0.002288,-0.01336,0.7098,-0.0001093,-0.01062,-0.008122,0.002372,-0.005214,-365.5,-1.583e-05,-5.67e-05,-1.954e-06,-2.05e-05,2.377e-05,-0.0008727,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002091,0.0004838,0.0004836,0.0002126,0.07645,0.07644,0.03686,0.07014,0.07014,0.09229,5.479e-09,5.483e-09,7.969e-09,3.634e-06,3.635e-06,1.581e-06,0,0,0,0,0,0,0,0
|
||||
10985000,0.7043,0.002284,-0.01372,0.7097,0.001285,-0.004538,-0.01231,0.003556,-0.005525,-365.5,-1.508e-05,-5.625e-05,-1.488e-06,-2.864e-05,2.904e-05,-0.0008814,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002093,0.0004318,0.0004316,0.0002121,0.07353,0.07352,0.03561,0.05717,0.05717,0.08822,5.156e-09,5.16e-09,7.815e-09,3.596e-06,3.596e-06,1.536e-06,0,0,0,0,0,0,0,0
|
||||
11085000,0.7044,0.002299,-0.01365,0.7096,-0.0003065,-0.002274,-0.01367,0.003628,-0.005912,-365.5,-1.507e-05,-5.626e-05,-9.948e-07,-2.895e-05,2.927e-05,-0.0008955,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002095,0.0004422,0.000442,0.0002115,0.0933,0.09329,0.03667,0.06247,0.06246,0.08626,5.156e-09,5.16e-09,7.66e-09,3.596e-06,3.596e-06,1.504e-06,0,0,0,0,0,0,0,0
|
||||
11185000,0.7043,0.002213,-0.01394,0.7097,0.004953,0.002463,-0.01844,0.005331,-0.005587,-365.5,-1.438e-05,-5.602e-05,-1.526e-06,-3.402e-05,3.488e-05,-0.0008938,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002096,0.0003775,0.0003774,0.000211,0.08236,0.08235,0.0355,0.05254,0.05254,0.08349,4.776e-09,4.78e-09,7.505e-09,3.555e-06,3.556e-06,1.46e-06,0,0,0,0,0,0,0,0
|
||||
11285000,0.7042,0.002299,-0.01396,0.7099,0.004253,0.005007,-0.02115,0.005797,-0.005207,-365.5,-1.44e-05,-5.601e-05,-2.511e-06,-3.416e-05,3.504e-05,-0.0009006,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002098,0.0003868,0.0003866,0.0002104,0.1019,0.1019,0.0366,0.05926,0.05925,0.08288,4.776e-09,4.78e-09,7.35e-09,3.555e-06,3.556e-06,1.433e-06,0,0,0,0,0,0,0,0
|
||||
11385000,0.7041,0.002366,-0.01387,0.71,0.001476,0.006248,-0.02402,0.00447,-0.004335,-365.5,-1.46e-05,-5.608e-05,-3.021e-06,-3.28e-05,3.377e-05,-0.0009054,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002112,0.0003247,0.0003245,0.0002111,0.08479,0.08478,0.03576,0.0503,0.0503,0.08251,4.416e-09,4.419e-09,7.233e-09,3.521e-06,3.521e-06,1.396e-06,0,0,0,0,0,0,0,0
|
||||
11485000,0.7039,0.002386,-0.01388,0.7101,-0.001081,0.00902,-0.02653,0.00449,-0.003572,-365.5,-1.462e-05,-5.606e-05,-3.955e-06,-3.289e-05,3.389e-05,-0.0009099,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002113,0.0003328,0.0003326,0.0002106,0.1026,0.1026,0.03691,0.05802,0.05802,0.08276,4.416e-09,4.419e-09,7.079e-09,3.521e-06,3.521e-06,1.371e-06,0,0,0,0,0,0,0,0
|
||||
11585000,0.7038,0.002306,-0.01386,0.7103,-0.004302,0.0098,-0.02957,0.003626,-0.003359,-365.5,-1.467e-05,-5.629e-05,-4.559e-06,-3.095e-05,3.458e-05,-0.0009148,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002114,0.000281,0.0002809,0.0002101,0.08272,0.08272,0.0358,0.04924,0.04924,0.08104,4.111e-09,4.113e-09,6.925e-09,3.496e-06,3.497e-06,1.326e-06,0,0,0,0,0,0,0,0
|
||||
11685000,0.7037,0.002292,-0.01385,0.7103,-0.007509,0.01306,-0.03328,0.003014,-0.002252,-365.5,-1.468e-05,-5.628e-05,-5.004e-06,-3.09e-05,3.456e-05,-0.0009128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002115,0.0002882,0.0002881,0.0002096,0.09837,0.09837,0.03697,0.05754,0.05754,0.08184,4.111e-09,4.113e-09,6.772e-09,3.496e-06,3.497e-06,1.304e-06,0,0,0,0,0,0,0,0
|
||||
11785000,0.7037,0.002321,-0.01383,0.7103,-0.01221,0.01383,-0.03575,0.00115,-0.001034,-365.5,-1.478e-05,-5.634e-05,-5.156e-06,-3.039e-05,3.416e-05,-0.0009207,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002115,0.000248,0.0002478,0.0002091,0.0783,0.0783,0.03585,0.04873,0.04873,0.08032,3.863e-09,3.866e-09,6.62e-09,3.48e-06,3.48e-06,1.257e-06,0,0,0,0,0,0,0,0
|
||||
11885000,0.7036,0.002335,-0.01381,0.7105,-0.01339,0.01563,-0.03777,-0.0001071,0.000433,-365.5,-1.48e-05,-5.632e-05,-5.789e-06,-3.049e-05,3.427e-05,-0.0009256,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002116,0.0002545,0.0002543,0.0002086,0.09182,0.09181,0.03701,0.0573,0.0573,0.08146,3.863e-09,3.866e-09,6.469e-09,3.48e-06,3.48e-06,1.237e-06,0,0,0,0,0,0,0,0
|
||||
11985000,0.7036,0.002325,-0.01376,0.7104,-0.01453,0.01587,-0.04128,-0.0008926,0.001038,-365.5,-1.473e-05,-5.648e-05,-5.53e-06,-2.985e-05,3.515e-05,-0.0009278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002128,0.000224,0.0002239,0.0002093,0.07299,0.07299,0.03628,0.04848,0.04848,0.08166,3.663e-09,3.666e-09,6.357e-09,3.47e-06,3.47e-06,1.193e-06,0,0,0,0,0,0,0,0
|
||||
12085000,0.7038,0.002352,-0.01376,0.7103,-0.016,0.01852,-0.04712,-0.002423,0.002735,-365.5,-1.471e-05,-5.649e-05,-4.921e-06,-2.977e-05,3.505e-05,-0.0009238,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002128,0.0002301,0.0002299,0.0002088,0.08466,0.08466,0.03747,0.0571,0.0571,0.08305,3.663e-09,3.666e-09,6.209e-09,3.47e-06,3.47e-06,1.174e-06,0,0,0,0,0,0,0,0
|
||||
12185000,0.7037,0.002064,-0.01378,0.7104,-0.01064,0.01633,-0.04332,0.0008627,0.0009904,-365.5,-1.422e-05,-5.699e-05,-5.168e-06,-2.917e-05,3.925e-05,-0.0009481,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002127,0.0002071,0.0002069,0.0002082,0.06763,0.06763,0.03632,0.04834,0.04833,0.08156,3.498e-09,3.5e-09,6.063e-09,3.465e-06,3.465e-06,1.125e-06,0,0,0,0,0,0,0,0
|
||||
12285000,0.7037,0.002047,-0.01378,0.7103,-0.01344,0.01851,-0.04399,-0.0003164,0.002747,-365.5,-1.422e-05,-5.7e-05,-5.035e-06,-2.939e-05,3.943e-05,-0.0009582,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002126,0.0002128,0.0002127,0.0002077,0.07774,0.07774,0.0375,0.05688,0.05688,0.08304,3.498e-09,3.5e-09,5.919e-09,3.465e-06,3.465e-06,1.107e-06,0,0,0,0,0,0,0,0
|
||||
12385000,0.7037,0.001795,-0.01379,0.7104,-0.008579,0.01577,-0.04151,0.002376,0.001013,-365.5,-1.382e-05,-5.744e-05,-5.458e-06,-2.919e-05,4.21e-05,-0.000978,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002125,0.0001954,0.0001952,0.0002072,0.06261,0.06261,0.03632,0.04822,0.04822,0.08153,3.357e-09,3.359e-09,5.777e-09,3.462e-06,3.462e-06,1.056e-06,0,0,0,0,0,0,0,0
|
||||
12485000,0.7035,0.00177,-0.01381,0.7105,-0.01013,0.01842,-0.04473,0.001459,0.002717,-365.5,-1.383e-05,-5.743e-05,-6.04e-06,-2.926e-05,4.217e-05,-0.0009811,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002123,0.0002009,0.0002007,0.0002066,0.07148,0.07148,0.03747,0.05661,0.05661,0.08305,3.357e-09,3.359e-09,5.637e-09,3.462e-06,3.462e-06,1.039e-06,0,0,0,0,0,0,0,0
|
||||
12585000,0.7035,0.001797,-0.01363,0.7106,-0.01588,0.01638,-0.04884,-0.00319,0.001054,-365.5,-1.426e-05,-5.775e-05,-6.15e-06,-2.793e-05,4.211e-05,-0.0009824,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002121,0.0001874,0.0001872,0.0002061,0.05811,0.05811,0.03627,0.0481,0.0481,0.0815,3.232e-09,3.234e-09,5.499e-09,3.46e-06,3.46e-06,9.891e-07,0,0,0,0,0,0,0,0
|
||||
12685000,0.7034,0.00184,-0.01359,0.7106,-0.01666,0.01865,-0.05215,-0.004826,0.002803,-365.5,-1.426e-05,-5.774e-05,-6.253e-06,-2.791e-05,4.21e-05,-0.0009815,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002132,0.0001927,0.0001926,0.0002067,0.06599,0.06599,0.03786,0.05629,0.05629,0.08477,3.232e-09,3.234e-09,5.397e-09,3.46e-06,3.46e-06,9.768e-07,0,0,0,0,0,0,0,0
|
||||
12785000,0.7035,0.001857,-0.01343,0.7106,-0.02048,0.01527,-0.05343,-0.007865,0.001145,-365.5,-1.452e-05,-5.808e-05,-6.157e-06,-2.772e-05,4.306e-05,-0.0009916,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002129,0.0001821,0.0001819,0.0002061,0.05417,0.05417,0.03661,0.04797,0.04797,0.08312,3.117e-09,3.119e-09,5.264e-09,3.459e-06,3.46e-06,9.267e-07,0,0,0,0,0,0,0,0
|
||||
12885000,0.7035,0.001811,-0.01347,0.7106,-0.02174,0.01571,-0.05391,-0.009981,0.002672,-365.5,-1.452e-05,-5.808e-05,-6.108e-06,-2.791e-05,4.323e-05,-0.001001,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002127,0.0001873,0.0001871,0.0002055,0.06128,0.06128,0.03771,0.05594,0.05594,0.08467,3.117e-09,3.119e-09,5.133e-09,3.459e-06,3.46e-06,9.11e-07,0,0,0,0,0,0,0,0
|
||||
12985000,0.7036,0.001516,-0.01361,0.7105,-0.01122,0.01292,-0.05187,-0.001598,0.001232,-365.5,-1.368e-05,-5.848e-05,-5.48e-06,-2.989e-05,4.341e-05,-0.00102,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002123,0.0001786,0.0001784,0.0002049,0.05078,0.05078,0.03643,0.0478,0.0478,0.08298,3.007e-09,3.009e-09,5.005e-09,3.458e-06,3.459e-06,8.621e-07,0,0,0,0,0,0,0,0
|
||||
13085000,0.7034,0.001527,-0.01356,0.7106,-0.0122,0.01373,-0.05244,-0.002765,0.00257,-365.5,-1.37e-05,-5.847e-05,-6.097e-06,-2.999e-05,4.352e-05,-0.001025,0.2083,0.00204,0.4353,0,0,0,0,0,0.000212,0.0001837,0.0001835,0.0002043,0.05727,0.05727,0.03748,0.05555,0.05555,0.08446,3.007e-09,3.009e-09,4.879e-09,3.458e-06,3.459e-06,8.468e-07,0,0,0,0,0,0,0,0
|
||||
13185000,0.7034,0.001299,-0.01361,0.7106,-0.003937,0.01262,-0.04778,0.003607,0.001419,-365.5,-1.308e-05,-5.88e-05,-6.034e-06,-3.209e-05,4.279e-05,-0.001053,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002117,0.0001764,0.0001762,0.0002037,0.0479,0.0479,0.03617,0.04761,0.04761,0.08274,2.9e-09,2.901e-09,4.755e-09,3.457e-06,3.457e-06,7.995e-07,0,0,0,0,0,0,0,0
|
||||
13285000,0.7035,0.001311,-0.01361,0.7105,-0.004519,0.014,-0.04626,0.003187,0.002754,-365.5,-1.307e-05,-5.88e-05,-5.557e-06,-3.233e-05,4.299e-05,-0.001065,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002125,0.0001815,0.0001813,0.0002042,0.05393,0.05393,0.03765,0.05515,0.05515,0.08599,2.9e-09,2.901e-09,4.665e-09,3.457e-06,3.457e-06,7.886e-07,0,0,0,0,0,0,0,0
|
||||
13385000,0.7036,0.001137,-0.01355,0.7104,-0.00362,0.0124,-0.0416,0.002446,0.001537,-365.5,-1.288e-05,-5.909e-05,-5.065e-06,-3.413e-05,4.203e-05,-0.001088,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002121,0.0001751,0.0001749,0.0002035,0.0455,0.0455,0.03628,0.0474,0.0474,0.08418,2.792e-09,2.793e-09,4.546e-09,3.454e-06,3.454e-06,7.428e-07,0,0,0,0,0,0,0,0
|
||||
13485000,0.7037,0.001167,-0.01354,0.7103,-0.004545,0.01295,-0.04121,0.002068,0.002799,-365.5,-1.287e-05,-5.91e-05,-4.613e-06,-3.43e-05,4.217e-05,-0.001097,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002117,0.0001801,0.0001799,0.0002029,0.05117,0.05117,0.03723,0.05474,0.05474,0.08561,2.792e-09,2.793e-09,4.43e-09,3.454e-06,3.454e-06,7.288e-07,0,0,0,0,0,0,0,0
|
||||
13585000,0.7037,0.00107,-0.01349,0.7104,-0.003896,0.01254,-0.04118,0.001466,0.001722,-365.5,-1.269e-05,-5.936e-05,-4.825e-06,-3.602e-05,4.065e-05,-0.001104,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002112,0.0001743,0.0001741,0.0002022,0.04352,0.04352,0.03584,0.04717,0.04717,0.08379,2.682e-09,2.684e-09,4.317e-09,3.45e-06,3.45e-06,6.853e-07,0,0,0,0,0,0,0,0
|
||||
13685000,0.7038,0.001047,-0.01346,0.7103,-0.00351,0.01481,-0.04509,0.001062,0.003067,-365.5,-1.268e-05,-5.937e-05,-4.189e-06,-3.6e-05,4.062e-05,-0.001103,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002107,0.0001793,0.0001791,0.0002016,0.04892,0.04892,0.03671,0.05433,0.05433,0.08515,2.682e-09,2.684e-09,4.207e-09,3.45e-06,3.45e-06,6.718e-07,0,0,0,0,0,0,0,0
|
||||
13785000,0.7038,0.0009249,-0.01336,0.7103,-0.002633,0.01026,-0.04499,0.002497,0.0003306,-365.5,-1.245e-05,-5.987e-05,-4.151e-06,-3.979e-05,3.923e-05,-0.001111,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002103,0.0001738,0.0001736,0.0002009,0.04191,0.04191,0.03532,0.04694,0.04694,0.08333,2.57e-09,2.571e-09,4.099e-09,3.444e-06,3.444e-06,6.308e-07,0,0,0,0,0,0,0,0
|
||||
13885000,0.7038,0.0008782,-0.01339,0.7103,-0.002551,0.01065,-0.04861,0.002223,0.001369,-365.5,-1.245e-05,-5.987e-05,-4.027e-06,-3.977e-05,3.921e-05,-0.00111,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002098,0.0001787,0.0001785,0.0002002,0.0471,0.0471,0.03611,0.05393,0.05393,0.08463,2.57e-09,2.571e-09,3.994e-09,3.444e-06,3.444e-06,6.179e-07,0,0,0,0,0,0,0,0
|
||||
13985000,0.7039,0.0007927,-0.01334,0.7101,-0.001979,0.007849,-0.04698,0.003393,-0.0008098,-365.5,-1.222e-05,-6.03e-05,-3.48e-06,-4.356e-05,3.761e-05,-0.001122,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002104,0.0001733,0.0001731,0.0002006,0.04063,0.04063,0.03514,0.0467,0.0467,0.08457,2.454e-09,2.455e-09,3.916e-09,3.436e-06,3.436e-06,5.824e-07,0,0,0,0,0,0,0,0
|
||||
14085000,0.704,0.0007696,-0.01334,0.7101,-0.002308,0.008141,-0.04805,0.003149,-2.041e-05,-365.5,-1.221e-05,-6.031e-05,-3.063e-06,-4.357e-05,3.761e-05,-0.001123,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002098,0.0001781,0.0001779,0.0001999,0.04565,0.04565,0.03588,0.05355,0.05355,0.08585,2.454e-09,2.455e-09,3.816e-09,3.436e-06,3.436e-06,5.702e-07,0,0,0,0,0,0,0,0
|
||||
14185000,0.7041,0.0006287,-0.01335,0.71,0.001267,0.006888,-0.04843,0.005565,-0.0003684,-365.5,-1.179e-05,-6.05e-05,-2.484e-06,-4.544e-05,3.372e-05,-0.001128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002093,0.0001727,0.0001725,0.0001992,0.0396,0.0396,0.03445,0.04647,0.04647,0.08398,2.335e-09,2.336e-09,3.718e-09,3.426e-06,3.426e-06,5.342e-07,0,0,0,0,0,0,0,0
|
||||
14285000,0.7042,0.0006298,-0.01331,0.7099,0.001544,0.007867,-0.04796,0.0057,0.0003507,-365.5,-1.178e-05,-6.05e-05,-2.162e-06,-4.555e-05,3.381e-05,-0.001134,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002087,0.0001774,0.0001772,0.0001985,0.04452,0.04452,0.0351,0.05319,0.05319,0.0852,2.335e-09,2.336e-09,3.622e-09,3.426e-06,3.426e-06,5.226e-07,0,0,0,0,0,0,0,0
|
||||
14385000,0.7044,0.0005024,-0.01329,0.7097,0.003608,0.007826,-0.04866,0.007423,6.397e-06,-365.5,-1.144e-05,-6.069e-05,-1.428e-06,-4.748e-05,3.039e-05,-0.001139,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002081,0.0001719,0.0001718,0.0001978,0.03881,0.03881,0.03368,0.04625,0.04625,0.08334,2.212e-09,2.213e-09,3.529e-09,3.414e-06,3.414e-06,4.893e-07,0,0,0,0,0,0,0,0
|
||||
14485000,0.7044,0.0004925,-0.01323,0.7097,0.003353,0.009484,-0.05139,0.007767,0.000877,-365.5,-1.144e-05,-6.07e-05,-1.171e-06,-4.742e-05,3.033e-05,-0.001136,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002075,0.0001765,0.0001763,0.0001971,0.04363,0.04363,0.03425,0.05287,0.05287,0.08449,2.212e-09,2.213e-09,3.439e-09,3.414e-06,3.414e-06,4.783e-07,0,0,0,0,0,0,0,0
|
||||
14585000,0.7043,0.0004349,-0.01302,0.7097,0.0008062,0.007364,-0.05039,0.00492,-0.0009717,-365.5,-1.176e-05,-6.108e-05,-1.32e-06,-5.163e-05,3.378e-05,-0.001143,0.2083,0.00204,0.4353,0,0,0,0,0,0.000208,0.0001709,0.0001707,0.0001974,0.03818,0.03818,0.03327,0.04604,0.04604,0.08442,2.087e-09,2.088e-09,3.372e-09,3.4e-06,3.4e-06,4.502e-07,0,0,0,0,0,0,0,0
|
||||
14685000,0.7045,0.0004006,-0.01301,0.7096,0.002158,0.004735,-0.04848,0.005099,-0.0003475,-365.5,-1.175e-05,-6.109e-05,-6.478e-07,-5.176e-05,3.39e-05,-0.001151,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002074,0.0001753,0.0001751,0.0001967,0.04294,0.04294,0.03379,0.05258,0.05258,0.08555,2.087e-09,2.088e-09,3.286e-09,3.4e-06,3.4e-06,4.399e-07,0,0,0,0,0,0,0,0
|
||||
14785000,0.7045,0.0003839,-0.01285,0.7096,-0.000147,0.002399,-0.0448,0.002796,-0.001812,-365.5,-1.202e-05,-6.138e-05,-4.927e-07,-5.524e-05,3.725e-05,-0.001165,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002067,0.0001694,0.0001692,0.0001959,0.0377,0.0377,0.03238,0.04586,0.04586,0.08367,1.96e-09,1.961e-09,3.202e-09,3.383e-06,3.384e-06,4.116e-07,0,0,0,0,0,0,0,0
|
||||
14885000,0.7046,0.0003708,-0.01281,0.7095,0.0007598,0.003634,-0.04724,0.00281,-0.001519,-365.5,-1.201e-05,-6.138e-05,-8.394e-09,-5.525e-05,3.726e-05,-0.001166,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002061,0.0001737,0.0001735,0.0001952,0.0424,0.0424,0.03282,0.05233,0.05233,0.08473,1.96e-09,1.961e-09,3.121e-09,3.384e-06,3.384e-06,4.019e-07,0,0,0,0,0,0,0,0
|
||||
14985000,0.7046,0.0003183,-0.01279,0.7095,0.0003573,0.00271,-0.04318,0.002281,-0.001381,-365.5,-1.206e-05,-6.144e-05,-3.457e-08,-5.622e-05,3.789e-05,-0.001179,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002054,0.0001676,0.0001674,0.0001945,0.03731,0.03731,0.03144,0.04569,0.04569,0.08289,1.833e-09,1.834e-09,3.041e-09,3.366e-06,3.366e-06,3.762e-07,0,0,0,0,0,0,0,0
|
||||
15085000,0.7046,0.000249,-0.01276,0.7095,0.0004232,0.002482,-0.04484,0.002316,-0.00113,-365.5,-1.205e-05,-6.144e-05,4.136e-08,-5.616e-05,3.784e-05,-0.001176,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002048,0.0001717,0.0001715,0.0001938,0.04194,0.04194,0.03182,0.05211,0.05211,0.08389,1.833e-09,1.834e-09,2.964e-09,3.366e-06,3.366e-06,3.67e-07,0,0,0,0,0,0,0,0
|
||||
15185000,0.7047,0.0002131,-0.01273,0.7094,0.0002953,0.002791,-0.04192,0.001896,-0.0009777,-365.5,-1.208e-05,-6.149e-05,1.591e-07,-5.686e-05,3.827e-05,-0.001187,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002041,0.0001654,0.0001652,0.0001931,0.03696,0.03696,0.03049,0.04555,0.04555,0.08209,1.706e-09,1.707e-09,2.889e-09,3.346e-06,3.347e-06,3.436e-07,0,0,0,0,0,0,0,0
|
||||
15285000,0.7047,0.0001796,-0.01276,0.7093,0.0006173,0.003034,-0.04148,0.001952,-0.0006874,-365.5,-1.207e-05,-6.149e-05,4.315e-07,-5.694e-05,3.835e-05,-0.001192,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002045,0.0001693,0.0001691,0.0001933,0.04155,0.04155,0.0312,0.05193,0.05193,0.08478,1.706e-09,1.707e-09,2.834e-09,3.346e-06,3.347e-06,3.372e-07,0,0,0,0,0,0,0,0
|
||||
15385000,0.7049,0.0001512,-0.01271,0.7092,0.000669,0.00288,-0.03874,-0.0002565,-0.0006423,-365.5,-1.216e-05,-6.156e-05,1.216e-06,-5.777e-05,3.947e-05,-0.001201,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002038,0.0001628,0.0001627,0.0001925,0.03666,0.03666,0.02988,0.04543,0.04543,0.08295,1.582e-09,1.583e-09,2.763e-09,3.326e-06,3.326e-06,3.158e-07,0,0,0,0,0,0,0,0
|
||||
15485000,0.7049,0.0001642,-0.01271,0.7092,0.001682,0.002281,-0.03836,-0.000144,-0.0004024,-365.5,-1.217e-05,-6.155e-05,8.455e-07,-5.775e-05,3.945e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002031,0.0001665,0.0001664,0.0001918,0.04117,0.04117,0.03015,0.05178,0.05178,0.08385,1.582e-09,1.583e-09,2.693e-09,3.326e-06,3.326e-06,3.079e-07,0,0,0,0,0,0,0,0
|
||||
15585000,0.7048,0.0001474,-0.01267,0.7093,0.0003023,0.001852,-0.03598,-0.002075,-0.0004401,-365.5,-1.227e-05,-6.159e-05,6.959e-07,-5.838e-05,4.066e-05,-0.001205,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002024,0.00016,0.0001598,0.0001911,0.03634,0.03633,0.02888,0.04533,0.04533,0.08207,1.461e-09,1.461e-09,2.626e-09,3.305e-06,3.305e-06,2.886e-07,0,0,0,0,0,0,0,0
|
||||
15685000,0.7048,0.0001518,-0.01269,0.7092,0.0004689,0.001633,-0.03647,-0.002058,-0.00026,-365.5,-1.227e-05,-6.159e-05,7.705e-07,-5.839e-05,4.068e-05,-0.001206,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002017,0.0001635,0.0001633,0.0001904,0.04078,0.04078,0.0291,0.05165,0.05165,0.08289,1.461e-09,1.462e-09,2.561e-09,3.305e-06,3.305e-06,2.812e-07,0,0,0,0,0,0,0,0
|
||||
15785000,0.7049,9.471e-05,-0.0127,0.7092,0.001162,-0.0006793,-0.03709,-0.001673,-0.001617,-365.5,-1.227e-05,-6.181e-05,8.595e-07,-6.139e-05,4.076e-05,-0.001206,0.2083,0.00204,0.4353,0,0,0,0,0,0.000201,0.0001569,0.0001567,0.0001897,0.03601,0.03601,0.02788,0.04524,0.04525,0.08116,1.344e-09,1.345e-09,2.497e-09,3.283e-06,3.284e-06,2.637e-07,0,0,0,0,0,0,0,0
|
||||
15885000,0.7049,4.64e-05,-0.01269,0.7092,0.002108,-0.001146,-0.0364,-0.001482,-0.001719,-365.5,-1.227e-05,-6.181e-05,7.932e-07,-6.141e-05,4.078e-05,-0.001208,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002013,0.0001602,0.00016,0.0001898,0.04038,0.04038,0.02842,0.05154,0.05154,0.08365,1.344e-09,1.345e-09,2.45e-09,3.283e-06,3.284e-06,2.586e-07,0,0,0,0,0,0,0,0
|
||||
15985000,0.705,-4.336e-05,-0.01267,0.7091,0.00224,-0.002612,-0.03259,-0.0013,-0.002723,-365.5,-1.229e-05,-6.198e-05,1.479e-06,-6.416e-05,4.184e-05,-0.001217,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002006,0.0001536,0.0001534,0.0001891,0.03566,0.03566,0.02723,0.04517,0.04517,0.0819,1.233e-09,1.233e-09,2.39e-09,3.261e-06,3.262e-06,2.428e-07,0,0,0,0,0,0,0,0
|
||||
16085000,0.7051,-4.732e-05,-0.01268,0.709,0.003683,-0.002894,-0.03031,-0.001014,-0.003028,-365.5,-1.229e-05,-6.199e-05,1.854e-06,-6.447e-05,4.215e-05,-0.001224,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001998,0.0001567,0.0001565,0.0001884,0.03994,0.03994,0.02736,0.05144,0.05144,0.08262,1.233e-09,1.233e-09,2.331e-09,3.261e-06,3.262e-06,2.364e-07,0,0,0,0,0,0,0,0
|
||||
16185000,0.7052,-3.853e-05,-0.01265,0.7089,0.003982,-0.002682,-0.0282,-0.001004,-0.002482,-365.5,-1.235e-05,-6.193e-05,2.349e-06,-6.386e-05,4.347e-05,-0.001231,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001991,0.0001502,0.00015,0.0001877,0.03527,0.03527,0.02623,0.04511,0.04511,0.08093,1.128e-09,1.128e-09,2.274e-09,3.24e-06,3.24e-06,2.221e-07,0,0,0,0,0,0,0,0
|
||||
16285000,0.7054,-2.941e-05,-0.01266,0.7087,0.005747,-0.003488,-0.02898,-0.0005202,-0.002788,-365.5,-1.234e-05,-6.195e-05,2.976e-06,-6.419e-05,4.379e-05,-0.00123,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001984,0.0001531,0.0001529,0.000187,0.03945,0.03945,0.02633,0.05135,0.05135,0.08159,1.128e-09,1.128e-09,2.219e-09,3.24e-06,3.24e-06,2.163e-07,0,0,0,0,0,0,0,0
|
||||
16385000,0.7054,-5.008e-05,-0.01267,0.7087,0.005003,-0.004149,-0.02765,-0.0006182,-0.002227,-365.5,-1.244e-05,-6.186e-05,2.871e-06,-6.297e-05,4.521e-05,-0.001235,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001977,0.0001466,0.0001465,0.0001863,0.03483,0.03483,0.02525,0.04505,0.04505,0.07995,1.029e-09,1.029e-09,2.165e-09,3.218e-06,3.219e-06,2.035e-07,0,0,0,0,0,0,0,0
|
||||
16485000,0.7054,-5.12e-05,-0.01261,0.7087,0.004136,-0.003845,-0.02981,-0.0001865,-0.002624,-365.5,-1.244e-05,-6.186e-05,2.886e-06,-6.295e-05,4.519e-05,-0.001233,0.2083,0.00204,0.4353,0,0,0,0,0,0.000197,0.0001494,0.0001492,0.0001856,0.03891,0.03891,0.02532,0.05127,0.05127,0.08056,1.029e-09,1.029e-09,2.113e-09,3.218e-06,3.219e-06,1.98e-07,0,0,0,0,0,0,0,0
|
||||
16585000,0.7055,0.0001756,-0.01257,0.7086,0.0009322,-0.001629,-0.03054,-0.002887,0.0005257,-365.5,-1.282e-05,-6.145e-05,3.282e-06,-5.646e-05,5.104e-05,-0.001236,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001972,0.0001431,0.0001429,0.0001857,0.03436,0.03436,0.02461,0.045,0.045,0.08056,9.372e-10,9.374e-10,2.074e-09,3.198e-06,3.198e-06,1.878e-07,0,0,0,0,0,0,0,0
|
||||
16685000,0.7055,0.0001724,-0.01256,0.7086,0.001225,-0.00149,-0.02832,-0.002768,0.0003742,-365.5,-1.282e-05,-6.145e-05,3.035e-06,-5.657e-05,5.117e-05,-0.001242,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001965,0.0001456,0.0001455,0.000185,0.03833,0.03833,0.02465,0.05119,0.05119,0.08113,9.373e-10,9.375e-10,2.025e-09,3.198e-06,3.198e-06,1.828e-07,0,0,0,0,0,0,0,0
|
||||
16785000,0.7055,0.0002816,-0.01254,0.7086,-0.001849,0.0005118,-0.02751,-0.004957,0.002902,-365.5,-1.313e-05,-6.111e-05,3.088e-06,-5.12e-05,5.602e-05,-0.001246,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001958,0.0001396,0.0001394,0.0001843,0.03384,0.03384,0.02367,0.04494,0.04494,0.07954,8.522e-10,8.524e-10,1.977e-09,3.178e-06,3.179e-06,1.723e-07,0,0,0,0,0,0,0,0
|
||||
16885000,0.7055,0.0002938,-0.01248,0.7086,-0.002169,0.001185,-0.02595,-0.005146,0.00295,-365.5,-1.313e-05,-6.111e-05,3.025e-06,-5.126e-05,5.61e-05,-0.001251,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001951,0.0001419,0.0001418,0.0001836,0.03769,0.03769,0.02369,0.0511,0.0511,0.08006,8.523e-10,8.525e-10,1.93e-09,3.178e-06,3.179e-06,1.677e-07,0,0,0,0,0,0,0,0
|
||||
16985000,0.7054,0.0002327,-0.01238,0.7087,-0.001819,-0.001019,-0.02528,-0.00547,0.001133,-365.5,-1.322e-05,-6.128e-05,2.788e-06,-5.412e-05,5.765e-05,-0.001251,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001944,0.0001361,0.0001359,0.0001829,0.03327,0.03327,0.02275,0.04488,0.04488,0.0785,7.741e-10,7.743e-10,1.884e-09,3.159e-06,3.16e-06,1.584e-07,0,0,0,0,0,0,0,0
|
||||
17085000,0.7055,0.0001962,-0.01247,0.7086,-0.001095,-0.000525,-0.02474,-0.005622,0.001036,-365.5,-1.322e-05,-6.128e-05,2.902e-06,-5.41e-05,5.763e-05,-0.001251,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001937,0.0001383,0.0001381,0.0001822,0.03699,0.03699,0.02275,0.05101,0.05101,0.07898,7.742e-10,7.744e-10,1.84e-09,3.159e-06,3.16e-06,1.541e-07,0,0,0,0,0,0,0,0
|
||||
17185000,0.7055,0.0001935,-0.01239,0.7086,-0.0005446,-0.0003615,-0.02549,-0.005862,-0.0003547,-365.5,-1.331e-05,-6.143e-05,3.129e-06,-5.639e-05,5.919e-05,-0.001248,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001938,0.0001327,0.0001326,0.0001823,0.03266,0.03266,0.02215,0.04482,0.04482,0.07902,7.027e-10,7.029e-10,1.807e-09,3.141e-06,3.142e-06,1.467e-07,0,0,0,0,0,0,0,0
|
||||
17285000,0.7055,0.000164,-0.01236,0.7086,0.001562,0.0002898,-0.02172,-0.00581,-0.0003663,-365.5,-1.331e-05,-6.143e-05,3.152e-06,-5.646e-05,5.928e-05,-0.001255,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001931,0.0001347,0.0001346,0.0001816,0.03626,0.03626,0.02214,0.0509,0.0509,0.07946,7.028e-10,7.03e-10,1.765e-09,3.141e-06,3.142e-06,1.428e-07,0,0,0,0,0,0,0,0
|
||||
17385000,0.7056,0.0001236,-0.0123,0.7085,0.002446,-0.0003251,-0.01953,-0.004836,-0.001555,-365.5,-1.329e-05,-6.158e-05,3.312e-06,-5.876e-05,5.923e-05,-0.00126,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001925,0.0001294,0.0001293,0.000181,0.03203,0.03203,0.02129,0.04475,0.04475,0.07796,6.377e-10,6.379e-10,1.725e-09,3.124e-06,3.125e-06,1.352e-07,0,0,0,0,0,0,0,0
|
||||
17485000,0.7057,0.0001213,-0.0123,0.7084,0.002955,-0.001091,-0.0177,-0.004588,-0.001626,-365.5,-1.329e-05,-6.158e-05,3.396e-06,-5.877e-05,5.925e-05,-0.001263,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001918,0.0001313,0.0001312,0.0001803,0.03551,0.03551,0.02126,0.05079,0.05079,0.07835,6.378e-10,6.38e-10,1.685e-09,3.124e-06,3.125e-06,1.316e-07,0,0,0,0,0,0,0,0
|
||||
17585000,0.7057,4.458e-05,-0.01227,0.7084,0.004208,-0.002283,-0.01263,-0.003861,-0.002604,-365.5,-1.33e-05,-6.168e-05,3.529e-06,-6.055e-05,5.956e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001911,0.0001263,0.0001262,0.0001797,0.03137,0.03137,0.02047,0.04468,0.04468,0.0769,5.788e-10,5.789e-10,1.646e-09,3.109e-06,3.109e-06,1.247e-07,0,0,0,0,0,0,0,0
|
||||
17685000,0.7057,7.044e-06,-0.01225,0.7084,0.005303,-0.001968,-0.01295,-0.003378,-0.002816,-365.5,-1.329e-05,-6.169e-05,3.697e-06,-6.054e-05,5.956e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001904,0.0001281,0.0001279,0.000179,0.03473,0.03473,0.02043,0.05066,0.05066,0.07726,5.788e-10,5.79e-10,1.609e-09,3.109e-06,3.109e-06,1.214e-07,0,0,0,0,0,0,0,0
|
||||
17785000,0.7059,-8.045e-05,-0.01228,0.7082,0.007758,-0.001913,-0.01295,-0.002264,-0.002357,-365.5,-1.315e-05,-6.166e-05,4.317e-06,-6.033e-05,5.753e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001897,0.0001234,0.0001232,0.0001784,0.0307,0.0307,0.01968,0.04459,0.04459,0.07586,5.254e-10,5.255e-10,1.572e-09,3.094e-06,3.095e-06,1.152e-07,0,0,0,0,0,0,0,0
|
||||
17885000,0.7059,-7.441e-05,-0.01226,0.7082,0.009267,-0.002923,-0.01219,-0.001422,-0.002568,-365.5,-1.315e-05,-6.167e-05,4.397e-06,-6.038e-05,5.757e-05,-0.001272,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001898,0.000125,0.0001248,0.0001784,0.03394,0.03394,0.01987,0.05053,0.05053,0.07765,5.255e-10,5.256e-10,1.546e-09,3.094e-06,3.095e-06,1.13e-07,0,0,0,0,0,0,0,0
|
||||
17985000,0.706,-0.0001272,-0.01227,0.7081,0.01104,-0.004536,-0.01014,-0.0007302,-0.002168,-365.5,-1.309e-05,-6.162e-05,4.565e-06,-5.964e-05,5.64e-05,-0.001274,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001892,0.0001205,0.0001204,0.0001778,0.03002,0.03002,0.01916,0.0445,0.0445,0.07626,4.773e-10,4.774e-10,1.511e-09,3.08e-06,3.081e-06,1.073e-07,0,0,0,0,0,0,0,0
|
||||
18085000,0.706,-0.0001278,-0.01228,0.7081,0.01166,-0.00508,-0.008339,0.000414,-0.002683,-365.5,-1.309e-05,-6.161e-05,4.244e-06,-5.949e-05,5.628e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001885,0.000122,0.0001219,0.0001772,0.03314,0.03314,0.0191,0.05038,0.05038,0.07655,4.774e-10,4.775e-10,1.477e-09,3.081e-06,3.081e-06,1.046e-07,0,0,0,0,0,0,0,0
|
||||
18185000,0.7061,-0.000154,-0.01227,0.708,0.01234,-0.004066,-0.006676,0.001282,-0.002084,-365.5,-1.311e-05,-6.154e-05,4.503e-06,-5.836e-05,5.676e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001878,0.0001179,0.0001178,0.0001766,0.02934,0.02934,0.01843,0.0444,0.0444,0.07521,4.34e-10,4.34e-10,1.444e-09,3.068e-06,3.069e-06,9.951e-08,0,0,0,0,0,0,0,0
|
||||
18285000,0.7061,-0.0002183,-0.01222,0.708,0.01246,-0.00485,-0.005569,0.002518,-0.002522,-365.5,-1.311e-05,-6.154e-05,4.379e-06,-5.83e-05,5.672e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001872,0.0001193,0.0001192,0.0001759,0.03233,0.03233,0.01836,0.05022,0.05022,0.07545,4.341e-10,4.341e-10,1.412e-09,3.068e-06,3.069e-06,9.694e-08,0,0,0,0,0,0,0,0
|
||||
18385000,0.7062,-0.000203,-0.01225,0.7079,0.01379,-0.002989,-0.00401,0.003091,-0.001918,-365.5,-1.314e-05,-6.148e-05,4.717e-06,-5.732e-05,5.754e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001865,0.0001154,0.0001153,0.0001753,0.02865,0.02865,0.01773,0.04429,0.04429,0.07416,3.95e-10,3.95e-10,1.381e-09,3.056e-06,3.057e-06,9.239e-08,0,0,0,0,0,0,0,0
|
||||
18485000,0.7063,-0.0001782,-0.01223,0.7078,0.01482,-0.003062,-0.004138,0.004565,-0.002224,-365.5,-1.314e-05,-6.149e-05,4.903e-06,-5.741e-05,5.763e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001866,0.0001167,0.0001166,0.0001754,0.03154,0.03154,0.01788,0.05004,0.05004,0.07579,3.951e-10,3.951e-10,1.359e-09,3.056e-06,3.057e-06,9.062e-08,0,0,0,0,0,0,0,0
|
||||
18585000,0.7064,-0.0001734,-0.01215,0.7077,0.01386,-0.002785,-0.004578,0.003506,-0.001826,-365.5,-1.33e-05,-6.145e-05,5.189e-06,-5.672e-05,6.068e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.000186,0.0001131,0.000113,0.0001748,0.02798,0.02798,0.01728,0.04418,0.04418,0.0745,3.599e-10,3.599e-10,1.329e-09,3.046e-06,3.046e-06,8.647e-08,0,0,0,0,0,0,0,0
|
||||
18685000,0.7064,-0.0002211,-0.01217,0.7077,0.0142,-0.003518,-0.006121,0.004912,-0.002101,-365.5,-1.331e-05,-6.145e-05,5.16e-06,-5.67e-05,6.064e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001853,0.0001142,0.0001141,0.0001742,0.03075,0.03075,0.01721,0.04986,0.04986,0.07469,3.6e-10,3.6e-10,1.301e-09,3.046e-06,3.046e-06,8.429e-08,0,0,0,0,0,0,0,0
|
||||
18785000,0.7064,-0.0001795,-0.01214,0.7077,0.01287,-0.003251,-0.005291,0.003804,-0.001657,-365.5,-1.346e-05,-6.14e-05,5.039e-06,-5.574e-05,6.336e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001847,0.0001109,0.0001108,0.0001736,0.02731,0.02731,0.01664,0.04405,0.04405,0.07346,3.285e-10,3.285e-10,1.273e-09,3.036e-06,3.036e-06,8.054e-08,0,0,0,0,0,0,0,0
|
||||
18885000,0.7066,-0.0001776,-0.01212,0.7076,0.01353,-0.002884,-0.004749,0.005115,-0.001933,-365.5,-1.346e-05,-6.141e-05,5.419e-06,-5.589e-05,6.351e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.000184,0.000112,0.0001119,0.000173,0.02997,0.02997,0.01657,0.04967,0.04967,0.07362,3.286e-10,3.285e-10,1.245e-09,3.036e-06,3.036e-06,7.854e-08,0,0,0,0,0,0,0,0
|
||||
18985000,0.7066,-0.0001684,-0.01213,0.7075,0.01476,-0.001907,-0.005965,0.006382,-0.001555,-365.5,-1.343e-05,-6.138e-05,5.592e-06,-5.538e-05,6.298e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001834,0.0001088,0.0001087,0.0001724,0.02665,0.02665,0.01604,0.04392,0.04392,0.07243,3.002e-10,3.002e-10,1.219e-09,3.027e-06,3.027e-06,7.515e-08,0,0,0,0,0,0,0,0
|
||||
19085000,0.7066,-0.0001914,-0.01208,0.7075,0.01552,-0.001486,-0.002623,0.007873,-0.001697,-365.5,-1.342e-05,-6.138e-05,5.731e-06,-5.542e-05,6.304e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001828,0.0001099,0.0001098,0.0001718,0.02921,0.02921,0.01597,0.04947,0.04947,0.07256,3.003e-10,3.003e-10,1.193e-09,3.027e-06,3.027e-06,7.332e-08,0,0,0,0,0,0,0,0
|
||||
19185000,0.7067,-0.0001837,-0.01198,0.7074,0.01537,-0.001221,-0.003682,0.008637,-0.001393,-365.5,-1.342e-05,-6.136e-05,5.779e-06,-5.511e-05,6.301e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001829,0.0001069,0.0001068,0.0001718,0.026,0.026,0.01564,0.04378,0.04378,0.07272,2.748e-10,2.748e-10,1.174e-09,3.018e-06,3.019e-06,7.067e-08,0,0,0,0,0,0,0,0
|
||||
19285000,0.7066,-0.0001512,-0.01193,0.7075,0.01566,-0.002046,-0.001462,0.01016,-0.001547,-365.5,-1.343e-05,-6.136e-05,5.592e-06,-5.502e-05,6.296e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001823,0.0001079,0.0001078,0.0001713,0.02847,0.02847,0.01557,0.04927,0.04927,0.07284,2.749e-10,2.749e-10,1.15e-09,3.018e-06,3.019e-06,6.898e-08,0,0,0,0,0,0,0,0
|
||||
19385000,0.7067,-0.0001481,-0.01186,0.7074,0.01342,-0.00275,0.002352,0.0082,-0.00129,-365.5,-1.359e-05,-6.133e-05,5.755e-06,-5.45e-05,6.61e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001816,0.0001052,0.0001051,0.0001707,0.02536,0.02536,0.01509,0.04363,0.04363,0.0717,2.521e-10,2.52e-10,1.126e-09,3.011e-06,3.011e-06,6.616e-08,0,0,0,0,0,0,0,0
|
||||
19485000,0.7068,-0.0001351,-0.01187,0.7073,0.01261,-0.003983,-0.0002393,0.009476,-0.001641,-365.5,-1.359e-05,-6.134e-05,6.05e-06,-5.462e-05,6.619e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.000181,0.0001061,0.000106,0.0001702,0.02774,0.02774,0.01502,0.04905,0.04905,0.0718,2.522e-10,2.521e-10,1.103e-09,3.011e-06,3.011e-06,6.46e-08,0,0,0,0,0,0,0,0
|
||||
19585000,0.7069,-6.827e-05,-0.01178,0.7072,0.01069,-0.004669,-0.0005853,0.007729,-0.001373,-365.5,-1.372e-05,-6.131e-05,6.409e-06,-5.4e-05,6.876e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001805,0.0001035,0.0001034,0.0001696,0.02475,0.02475,0.01457,0.04348,0.04348,0.0707,2.316e-10,2.316e-10,1.08e-09,3.003e-06,3.004e-06,6.205e-08,0,0,0,0,0,0,0,0
|
||||
19685000,0.7069,-7.866e-05,-0.01182,0.7072,0.01134,-0.007274,0.001139,0.008824,-0.001965,-365.5,-1.372e-05,-6.13e-05,6.231e-06,-5.395e-05,6.871e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001799,0.0001044,0.0001043,0.0001691,0.02703,0.02703,0.0145,0.04883,0.04883,0.07077,2.317e-10,2.317e-10,1.058e-09,3.003e-06,3.004e-06,6.061e-08,0,0,0,0,0,0,0,0
|
||||
19785000,0.7069,-5.328e-06,-0.01181,0.7072,0.008766,-0.007933,0.001515,0.007204,-0.001605,-365.5,-1.383e-05,-6.125e-05,6.288e-06,-5.279e-05,7.079e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001799,0.000102,0.0001019,0.0001691,0.02415,0.02415,0.01424,0.04333,0.04333,0.07096,2.132e-10,2.132e-10,1.042e-09,2.997e-06,2.998e-06,5.863e-08,0,0,0,0,0,0,0,0
|
||||
19885000,0.7071,-5.084e-05,-0.01175,0.707,0.007716,-0.008495,0.00301,0.008044,-0.002433,-365.5,-1.383e-05,-6.125e-05,6.702e-06,-5.281e-05,7.08e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001793,0.0001028,0.0001027,0.0001685,0.02634,0.02634,0.01417,0.04861,0.04861,0.07102,2.133e-10,2.133e-10,1.021e-09,2.997e-06,2.998e-06,5.73e-08,0,0,0,0,0,0,0,0
|
||||
19985000,0.7072,-7.199e-05,-0.01174,0.7069,0.005254,-0.009042,0.005003,0.00658,-0.002019,-365.5,-1.39e-05,-6.12e-05,7.054e-06,-5.164e-05,7.243e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001787,0.0001006,0.0001005,0.000168,0.02356,0.02356,0.01376,0.04317,0.04317,0.06997,1.967e-10,1.967e-10,1e-09,2.991e-06,2.992e-06,5.516e-08,0,0,0,0,0,0,0,0
|
||||
20085000,0.7074,-9.552e-05,-0.01171,0.7067,0.004903,-0.01101,0.005817,0.007093,-0.003002,-365.5,-1.389e-05,-6.121e-05,7.608e-06,-5.179e-05,7.257e-05,-0.001291,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001782,0.0001013,0.0001012,0.0001675,0.02568,0.02568,0.0137,0.04838,0.04838,0.07002,1.968e-10,1.967e-10,9.802e-10,2.991e-06,2.992e-06,5.393e-08,0,0,0,0,0,0,0,0
|
||||
20185000,0.7075,1.9e-05,-0.0117,0.7066,0.002841,-0.01147,0.008372,0.004758,-0.002449,-365.5,-1.401e-05,-6.113e-05,7.801e-06,-5.001e-05,7.474e-05,-0.001293,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001776,9.929e-05,9.92e-05,0.000167,0.023,0.023,0.01332,0.043,0.043,0.069,1.818e-10,1.818e-10,9.608e-10,2.986e-06,2.986e-06,5.199e-08,0,0,0,0,0,0,0,0
|
||||
20285000,0.7076,-1.277e-05,-0.01168,0.7066,0.001879,-0.01332,0.006891,0.004993,-0.003683,-365.5,-1.401e-05,-6.113e-05,7.937e-06,-4.989e-05,7.46e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001771,9.996e-05,9.988e-05,0.0001664,0.02505,0.02505,0.01325,0.04815,0.04815,0.06904,1.819e-10,1.819e-10,9.418e-10,2.986e-06,2.986e-06,5.086e-08,0,0,0,0,0,0,0,0
|
||||
20385000,0.7076,1.517e-05,-0.01173,0.7065,-0.0007027,-0.01378,0.009324,0.003032,-0.003008,-365.5,-1.41e-05,-6.103e-05,7.88e-06,-4.798e-05,7.624e-05,-0.001294,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001765,9.807e-05,9.799e-05,0.0001659,0.02246,0.02246,0.01289,0.04284,0.04284,0.06806,1.684e-10,1.684e-10,9.233e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20485000,0.7076,5.21e-05,-0.01174,0.7065,-0.001066,-0.01494,0.009477,0.002934,-0.004438,-365.5,-1.41e-05,-6.103e-05,7.882e-06,-4.8e-05,7.624e-05,-0.001293,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001765,9.871e-05,9.862e-05,0.0001659,0.02443,0.02443,0.01297,0.04791,0.04791,0.06927,1.685e-10,1.685e-10,9.098e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20585000,0.7076,8.562e-05,-0.01181,0.7065,-0.0008321,-0.01465,0.006752,0.002469,-0.003656,-365.5,-1.41e-05,-6.093e-05,7.707e-06,-4.623e-05,7.639e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.000176,9.695e-05,9.686e-05,0.0001654,0.02194,0.02194,0.01263,0.04267,0.04267,0.06829,1.563e-10,1.563e-10,8.921e-10,2.976e-06,2.977e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20685000,0.7077,0.0001053,-0.01183,0.7064,-0.000736,-0.01627,0.007954,0.002385,-0.005183,-365.5,-1.41e-05,-6.093e-05,7.76e-06,-4.618e-05,7.635e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001755,9.754e-05,9.746e-05,0.0001649,0.02385,0.02385,0.01257,0.04768,0.04768,0.06831,1.564e-10,1.564e-10,8.749e-10,2.976e-06,2.977e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20785000,0.7077,0.0001416,-0.01184,0.7064,-0.001919,-0.01499,0.00808,0.001971,-0.004229,-365.5,-1.41e-05,-6.083e-05,7.812e-06,-4.415e-05,7.633e-05,-0.001291,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001749,9.59e-05,9.582e-05,0.0001644,0.02144,0.02144,0.01225,0.04249,0.04249,0.06737,1.454e-10,1.454e-10,8.581e-10,2.972e-06,2.973e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20885000,0.7079,0.0001263,-0.01183,0.7063,-0.002366,-0.0177,0.007741,0.001767,-0.005857,-365.5,-1.41e-05,-6.083e-05,8.055e-06,-4.405e-05,7.621e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001744,9.646e-05,9.638e-05,0.0001639,0.02328,0.02328,0.01219,0.04744,0.04744,0.06737,1.455e-10,1.455e-10,8.417e-10,2.972e-06,2.973e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20985000,0.7079,0.0001407,-0.01187,0.7062,-0.002585,-0.01807,0.008485,0.003241,-0.004884,-365.5,-1.405e-05,-6.073e-05,8.071e-06,-4.193e-05,7.527e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001739,9.493e-05,9.484e-05,0.0001635,0.02096,0.02096,0.01189,0.04232,0.04232,0.06647,1.355e-10,1.355e-10,8.257e-10,2.968e-06,2.969e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21085000,0.708,0.0001258,-0.01187,0.7061,-0.002541,-0.02081,0.009348,0.002972,-0.00683,-365.5,-1.405e-05,-6.073e-05,8.223e-06,-4.185e-05,7.519e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001739,9.546e-05,9.537e-05,0.0001634,0.02274,0.02274,0.01197,0.0472,0.0472,0.06759,1.356e-10,1.356e-10,8.14e-10,2.968e-06,2.969e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21185000,0.708,0.0001662,-0.0119,0.7061,-0.001917,-0.0196,0.008881,0.004305,-0.005676,-365.5,-1.401e-05,-6.061e-05,8.119e-06,-3.955e-05,7.437e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001734,9.403e-05,9.394e-05,0.000163,0.0205,0.0205,0.01168,0.04215,0.04215,0.06669,1.266e-10,1.266e-10,7.987e-10,2.964e-06,2.965e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21285000,0.7082,0.0001992,-0.01186,0.7059,-0.002648,-0.0218,0.01036,0.004077,-0.007734,-365.5,-1.401e-05,-6.061e-05,8.354e-06,-3.942e-05,7.424e-05,-0.001288,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001729,9.453e-05,9.444e-05,0.0001625,0.02222,0.02222,0.01164,0.04697,0.04697,0.06668,1.267e-10,1.267e-10,7.838e-10,2.964e-06,2.965e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21385000,0.7081,0.0002589,-0.01188,0.706,-0.003454,-0.02105,0.01066,0.003408,-0.005471,-365.5,-1.401e-05,-6.044e-05,8.224e-06,-3.611e-05,7.417e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001724,9.319e-05,9.311e-05,0.000162,0.02005,0.02005,0.01137,0.04197,0.04197,0.06582,1.185e-10,1.185e-10,7.692e-10,2.961e-06,2.962e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21485000,0.7082,0.0002692,-0.01186,0.7059,-0.003888,-0.0225,0.01071,0.003008,-0.007635,-365.5,-1.401e-05,-6.044e-05,8.33e-06,-3.607e-05,7.412e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001719,9.367e-05,9.358e-05,0.0001616,0.02172,0.02172,0.01134,0.04673,0.04673,0.06579,1.186e-10,1.186e-10,7.55e-10,2.961e-06,2.962e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21585000,0.7082,0.0002866,-0.01186,0.7059,-0.004634,-0.01945,0.01062,0.002484,-0.005365,-365.5,-1.4e-05,-6.028e-05,8.241e-06,-3.291e-05,7.386e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001714,9.242e-05,9.233e-05,0.0001611,0.01963,0.01963,0.01109,0.0418,0.0418,0.06496,1.112e-10,1.112e-10,7.412e-10,2.958e-06,2.959e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21685000,0.7082,0.0002842,-0.01189,0.7059,-0.004526,-0.02096,0.01241,0.00202,-0.007403,-365.5,-1.4e-05,-6.028e-05,8.231e-06,-3.292e-05,7.387e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001709,9.287e-05,9.278e-05,0.0001607,0.02124,0.02124,0.01106,0.0465,0.0465,0.06494,1.113e-10,1.113e-10,7.277e-10,2.958e-06,2.959e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21785000,0.7082,0.0003119,-0.01192,0.7059,-0.005219,-0.01601,0.01143,0.0006891,-0.003189,-365.5,-1.403e-05,-6.005e-05,8.094e-06,-2.836e-05,7.431e-05,-0.001281,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001709,9.17e-05,9.161e-05,0.0001607,0.01922,0.01922,0.01094,0.04162,0.04162,0.06519,1.045e-10,1.045e-10,7.178e-10,2.955e-06,2.956e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21885000,0.7082,0.0003148,-0.01187,0.7059,-0.004914,-0.01644,0.01237,0.0001797,-0.004809,-365.5,-1.403e-05,-6.005e-05,8.019e-06,-2.842e-05,7.436e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001704,9.213e-05,9.204e-05,0.0001602,0.02079,0.02079,0.01092,0.04626,0.04626,0.06516,1.046e-10,1.046e-10,7.048e-10,2.955e-06,2.956e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21985000,0.7083,0.0003494,-0.01194,0.7058,-0.005646,-0.01379,0.01295,-0.0008274,-0.001144,-365.5,-1.405e-05,-5.986e-05,8.04e-06,-2.449e-05,7.456e-05,-0.001279,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001699,9.103e-05,9.095e-05,0.0001598,0.01893,0.01893,0.0107,0.04145,0.04145,0.06437,9.846e-11,9.845e-11,6.921e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22085000,0.7083,0.0003594,-0.01193,0.7058,-0.005909,-0.01308,0.01162,-0.001384,-0.002478,-365.5,-1.405e-05,-5.986e-05,7.977e-06,-2.449e-05,7.456e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001695,9.144e-05,9.135e-05,0.0001593,0.0213,0.0213,0.01069,0.04606,0.04606,0.06434,9.856e-11,9.855e-11,6.798e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22185000,0.7083,0.0003477,-0.01193,0.7058,-0.005531,-0.01188,0.01268,-0.001174,-0.002071,-365.5,-1.403e-05,-5.981e-05,7.988e-06,-2.449e-05,7.456e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.000169,8.957e-05,8.948e-05,0.0001589,0.02059,0.02059,0.01048,0.04132,0.04132,0.06357,9.277e-11,9.276e-11,6.677e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22285000,0.7083,0.0003845,-0.01196,0.7058,-0.006904,-0.01278,0.01286,-0.001794,-0.003312,-365.5,-1.403e-05,-5.98e-05,7.854e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001685,8.995e-05,8.986e-05,0.0001585,0.02404,0.02404,0.01048,0.04597,0.04597,0.06354,9.286e-11,9.285e-11,6.559e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22385000,0.7083,0.0003792,-0.01199,0.7058,-0.007452,-0.01172,0.01454,-0.001547,-0.002804,-365.5,-1.4e-05,-5.975e-05,7.889e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001685,8.64e-05,8.632e-05,0.0001585,0.0238,0.0238,0.01039,0.04127,0.04127,0.06381,8.738e-11,8.737e-11,6.473e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22485000,0.7083,0.0003886,-0.01196,0.7058,-0.007967,-0.01164,0.01602,-0.002314,-0.003999,-365.5,-1.4e-05,-5.975e-05,7.887e-06,-2.449e-05,7.456e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001681,8.675e-05,8.666e-05,0.0001581,0.02817,0.02817,0.01039,0.04605,0.04605,0.06378,8.748e-11,8.747e-11,6.36e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22585000,0.7084,0.0003743,-0.01203,0.7057,-0.007345,-0.0101,0.01522,-0.002662,-0.002332,-365.5,-1.396e-05,-5.967e-05,7.9e-06,-2.449e-05,7.456e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001676,8.135e-05,8.127e-05,0.0001576,0.02784,0.02783,0.01021,0.04135,0.04135,0.06305,8.245e-11,8.245e-11,6.25e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22685000,0.7084,0.0004137,-0.01205,0.7057,-0.008446,-0.009991,0.01661,-0.003434,-0.003343,-365.5,-1.396e-05,-5.967e-05,7.914e-06,-2.449e-05,7.456e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001672,8.165e-05,8.157e-05,0.0001572,0.03289,0.03288,0.01022,0.04634,0.04634,0.06303,8.255e-11,8.254e-11,6.142e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22785000,0.7083,0.0004081,-0.01208,0.7058,-0.008527,-0.007862,0.01748,-0.004619,-0.002708,-365.5,-1.396e-05,-5.962e-05,7.506e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001667,7.464e-05,7.456e-05,0.0001568,0.03191,0.0319,0.01006,0.04158,0.04158,0.06233,7.814e-11,7.813e-11,6.036e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22885000,0.7083,0.000422,-0.01206,0.7058,-0.009685,-0.007587,0.01919,-0.005522,-0.003481,-365.5,-1.396e-05,-5.962e-05,7.42e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001663,7.489e-05,7.482e-05,0.0001564,0.03738,0.03738,0.01007,0.04685,0.04685,0.06231,7.823e-11,7.823e-11,5.933e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22985000,0.7083,0.0004084,-0.0121,0.7058,-0.009286,-0.007015,0.02029,-0.006277,-0.002857,-365.5,-1.395e-05,-5.959e-05,7.375e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001659,6.682e-05,6.675e-05,0.000156,0.03538,0.03538,0.009918,0.04195,0.04195,0.06163,7.455e-11,7.455e-11,5.833e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23085000,0.7083,0.0003715,-0.01205,0.7058,-0.009704,-0.006906,0.02049,-0.00723,-0.003538,-365.5,-1.395e-05,-5.959e-05,7.282e-06,-2.449e-05,7.456e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001659,6.703e-05,6.696e-05,0.000156,0.04103,0.04102,0.01003,0.04753,0.04753,0.06258,7.465e-11,7.465e-11,5.759e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23185000,0.7083,0.000514,-0.01197,0.7058,-0.01278,-0.006798,0.02189,-0.01123,-0.002882,-365.5,-1.401e-05,-5.956e-05,7.193e-06,-2.449e-05,7.456e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001654,5.857e-05,5.85e-05,0.0001556,0.03789,0.03788,0.009887,0.04243,0.04243,0.06191,7.173e-11,7.173e-11,5.662e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23285000,0.7083,0.0004495,-0.01198,0.7058,-0.01335,-0.008107,0.0225,-0.01254,-0.003641,-365.5,-1.401e-05,-5.956e-05,7.135e-06,-2.449e-05,7.456e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.000165,5.874e-05,5.867e-05,0.0001552,0.04345,0.04344,0.009916,0.04829,0.04829,0.0619,7.182e-11,7.183e-11,5.568e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23385000,0.7084,0.000594,-0.01192,0.7058,-0.01555,-0.007288,0.02117,-0.01567,-0.002888,-365.5,-1.404e-05,-5.954e-05,7.069e-06,-2.449e-05,7.456e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001646,5.05e-05,5.044e-05,0.0001549,0.03927,0.03927,0.009778,0.04296,0.04296,0.06126,6.961e-11,6.962e-11,5.475e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23485000,0.7084,0.002737,-0.009761,0.7057,-0.02242,-0.008024,-0.01069,-0.01751,-0.003659,-365.5,-1.404e-05,-5.954e-05,7.131e-06,-2.449e-05,7.456e-05,-0.001274,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001642,5.065e-05,5.056e-05,0.0001545,0.04477,0.04476,0.009812,0.04905,0.04905,0.06125,6.971e-11,6.972e-11,5.385e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23585000,0.708,0.008102,-0.002268,0.7062,-0.03047,-0.004643,-0.04238,-0.01564,-0.00148,-365.5,-1.398e-05,-5.95e-05,6.975e-06,-2.449e-05,7.456e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001637,4.307e-05,4.293e-05,0.0001542,0.03992,0.03991,0.009682,0.04347,0.04347,0.06064,6.81e-11,6.811e-11,5.296e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23685000,0.7074,0.007972,0.003979,0.7068,-0.06101,-0.01232,-0.09107,-0.02011,-0.00225,-365.5,-1.399e-05,-5.95e-05,6.931e-06,-2.449e-05,7.456e-05,-0.001274,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001636,4.318e-05,4.303e-05,0.0001542,0.04516,0.04515,0.009806,0.04976,0.04976,0.06158,6.82e-11,6.821e-11,5.232e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23785000,0.707,0.00501,0.0007715,0.7072,-0.08014,-0.02112,-0.1448,-0.01719,-0.0005903,-365.5,-1.388e-05,-5.947e-05,6.903e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001632,3.637e-05,3.625e-05,0.0001539,0.0398,0.03979,0.009678,0.04394,0.04394,0.06096,6.707e-11,6.708e-11,5.147e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23885000,0.7069,0.002309,-0.005291,0.7073,-0.09701,-0.03006,-0.198,-0.02617,-0.003196,-365.5,-1.388e-05,-5.947e-05,6.9e-06,-2.449e-05,7.456e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001628,3.645e-05,3.635e-05,0.0001535,0.04465,0.04464,0.009721,0.05035,0.05035,0.06097,6.717e-11,6.718e-11,5.063e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23985000,0.7068,0.0007953,-0.01011,0.7074,-0.09577,-0.03287,-0.2509,-0.02926,-0.006269,-365.5,-1.383e-05,-5.947e-05,6.825e-06,-2.449e-05,7.456e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001624,3.059e-05,3.051e-05,0.0001531,0.03894,0.03894,0.009605,0.04434,0.04434,0.06038,6.64e-11,6.642e-11,4.982e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24085000,0.7068,0.001998,-0.009091,0.7073,-0.09722,-0.03281,-0.2988,-0.03888,-0.009558,-365.6,-1.383e-05,-5.947e-05,6.894e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.000162,3.068e-05,3.059e-05,0.0001528,0.04334,0.04334,0.009655,0.0508,0.0508,0.0604,6.65e-11,6.652e-11,4.902e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24185000,0.7068,0.003079,-0.006838,0.7074,-0.09687,-0.03244,-0.3462,-0.03982,-0.0113,-365.6,-1.377e-05,-5.946e-05,6.882e-06,-2.449e-05,7.456e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001616,2.574e-05,2.564e-05,0.0001525,0.03755,0.03755,0.009546,0.04464,0.04464,0.05984,6.6e-11,6.602e-11,4.824e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24285000,0.7067,0.0036,-0.005923,0.7075,-0.1069,-0.03625,-0.4012,-0.05,-0.01475,-365.6,-1.377e-05,-5.946e-05,6.69e-06,-2.449e-05,7.456e-05,-0.001279,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001612,2.582e-05,2.571e-05,0.0001521,0.04154,0.04153,0.009598,0.05109,0.05109,0.05986,6.61e-11,6.611e-11,4.748e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24385000,0.7066,0.0036,-0.00612,0.7076,-0.1146,-0.0468,-0.4529,-0.05662,-0.02842,-365.7,-1.374e-05,-5.951e-05,6.635e-06,-2.449e-05,7.456e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001612,2.172e-05,2.16e-05,0.0001521,0.03588,0.03587,0.009576,0.04484,0.04484,0.06021,6.578e-11,6.58e-11,4.692e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24485000,0.7066,0.004444,-0.002152,0.7076,-0.1273,-0.05163,-0.5037,-0.06865,-0.03331,-365.7,-1.374e-05,-5.951e-05,6.52e-06,-2.449e-05,7.456e-05,-0.001281,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001608,2.178e-05,2.166e-05,0.0001518,0.03945,0.03944,0.009633,0.05123,0.05122,0.06025,6.588e-11,6.59e-11,4.619e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24585000,0.7067,0.004883,0.001613,0.7075,-0.1389,-0.06393,-0.5531,-0.07169,-0.04347,-365.8,-1.369e-05,-5.954e-05,6.631e-06,-2.449e-05,7.456e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001604,1.84e-05,1.827e-05,0.0001515,0.03402,0.03402,0.009529,0.04494,0.04494,0.05971,6.569e-11,6.571e-11,4.547e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24685000,0.7068,0.004932,0.002685,0.7074,-0.1632,-0.07727,-0.6328,-0.08677,-0.05054,-365.8,-1.369e-05,-5.954e-05,6.702e-06,-2.449e-05,7.456e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.00016,1.847e-05,1.833e-05,0.0001511,0.03731,0.0373,0.009586,0.05123,0.05123,0.05975,6.579e-11,6.581e-11,4.477e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24785000,0.7067,0.004635,0.001326,0.7075,-0.178,-0.08815,-0.7206,-0.09341,-0.06058,-365.9,-1.365e-05,-5.957e-05,6.533e-06,-2.449e-05,7.456e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001597,1.569e-05,1.556e-05,0.0001508,0.03227,0.03226,0.009485,0.04496,0.04496,0.05923,6.569e-11,6.571e-11,4.408e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24885000,0.7066,0.006283,0.002854,0.7076,-0.1992,-0.0991,-0.7434,-0.1122,-0.06993,-366,-1.366e-05,-5.957e-05,6.411e-06,-2.449e-05,7.456e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001593,1.577e-05,1.562e-05,0.0001505,0.03507,0.03506,0.009547,0.05112,0.05112,0.05928,6.579e-11,6.581e-11,4.34e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24985000,0.7065,0.008139,0.004515,0.7076,-0.2123,-0.1038,-0.7983,-0.1137,-0.07606,-366,-1.36e-05,-5.958e-05,6.237e-06,-2.449e-05,7.456e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001593,1.352e-05,1.335e-05,0.0001505,0.03031,0.0303,0.00953,0.04489,0.04489,0.05965,6.575e-11,6.577e-11,4.291e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25085000,0.7065,0.008531,0.004019,0.7077,-0.2419,-0.1143,-0.8485,-0.1364,-0.08696,-366.1,-1.361e-05,-5.958e-05,6.111e-06,-2.449e-05,7.456e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001589,1.359e-05,1.342e-05,0.0001501,0.03288,0.03287,0.009594,0.0509,0.0509,0.05972,6.584e-11,6.587e-11,4.226e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25185000,0.7065,0.007959,0.002553,0.7077,-0.2662,-0.1297,-0.8983,-0.1573,-0.1148,-366.2,-1.359e-05,-5.963e-05,6.105e-06,-2.449e-05,7.456e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001585,1.173e-05,1.155e-05,0.0001498,0.02848,0.02846,0.009499,0.04475,0.04475,0.05921,6.585e-11,6.587e-11,4.162e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25285000,0.7065,0.00978,0.009006,0.7076,-0.2941,-0.1387,-0.9525,-0.1852,-0.1281,-366.3,-1.359e-05,-5.963e-05,6.09e-06,-2.449e-05,7.456e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001581,1.182e-05,1.163e-05,0.0001495,0.0308,0.03078,0.009565,0.0506,0.05059,0.05929,6.595e-11,6.597e-11,4.1e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25385000,0.7066,0.01114,0.01564,0.7074,-0.3215,-0.1587,-1.001,-0.1971,-0.1488,-366.4,-1.354e-05,-5.966e-05,6.098e-06,-2.449e-05,7.456e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001577,1.032e-05,1.012e-05,0.0001492,0.02676,0.02673,0.009469,0.04454,0.04454,0.05879,6.598e-11,6.6e-11,4.038e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25485000,0.7066,0.01144,0.01715,0.7073,-0.3695,-0.1819,-1.054,-0.2317,-0.1659,-366.5,-1.354e-05,-5.966e-05,6.132e-06,-2.449e-05,7.456e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001574,1.04e-05,1.02e-05,0.0001489,0.02886,0.02882,0.009532,0.05022,0.05022,0.05888,6.607e-11,6.61e-11,3.979e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25585000,0.7067,0.01084,0.01519,0.7073,-0.4093,-0.2137,-1.109,-0.2601,-0.2053,-366.6,-1.352e-05,-5.972e-05,6.141e-06,-2.449e-05,7.456e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.000157,9.137e-06,8.936e-06,0.0001485,0.02516,0.02512,0.009437,0.04429,0.04429,0.0584,6.613e-11,6.615e-11,3.92e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25685000,0.7066,0.01424,0.02149,0.7071,-0.4566,-0.2337,-1.161,-0.3033,-0.2276,-366.7,-1.352e-05,-5.972e-05,6.12e-06,-2.449e-05,7.456e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.000157,9.273e-06,9.051e-06,0.0001485,0.02707,0.02702,0.009583,0.0498,0.04979,0.05935,6.623e-11,6.625e-11,3.877e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25785000,0.7066,0.01695,0.02805,0.7069,-0.4984,-0.2589,-1.208,-0.3189,-0.256,-366.9,-1.347e-05,-5.976e-05,6.183e-06,-2.449e-05,7.456e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001565,8.294e-06,8.062e-06,0.0001482,0.02369,0.02363,0.009486,0.04399,0.04399,0.05888,6.629e-11,6.632e-11,3.82e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25885000,0.7066,0.01735,0.02874,0.7068,-0.5682,-0.2883,-1.257,-0.3723,-0.2834,-367,-1.347e-05,-5.976e-05,6.302e-06,-2.449e-05,7.456e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001562,8.389e-06,8.154e-06,0.0001479,0.02545,0.02536,0.009549,0.04933,0.04932,0.05897,6.639e-11,6.641e-11,3.765e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25985000,0.7065,0.01619,0.02545,0.707,-0.6212,-0.3272,-1.313,-0.413,-0.341,-367.1,-1.344e-05,-5.982e-05,6.339e-06,-2.449e-05,7.456e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001558,7.503e-06,7.264e-06,0.0001476,0.02237,0.02227,0.009454,0.04366,0.04365,0.05851,6.647e-11,6.649e-11,3.71e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26085000,0.7027,0.02077,0.03485,0.7103,-0.6863,-0.3537,-1.339,-0.4783,-0.375,-367.3,-1.345e-05,-5.982e-05,6.147e-06,-2.449e-05,7.456e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.000155,7.695e-06,7.442e-06,0.0001476,0.02395,0.02382,0.009519,0.04883,0.04882,0.0586,6.657e-11,6.659e-11,3.656e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26185000,0.7008,0.02314,0.04461,0.7115,-0.7345,-0.3872,-1.308,-0.5009,-0.4171,-367.4,-1.34e-05,-5.985e-05,6.169e-06,-2.449e-05,7.456e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001543,7.067e-06,6.841e-06,0.0001473,0.02106,0.02091,0.009423,0.0433,0.04329,0.05815,6.665e-11,6.668e-11,3.603e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26285000,0.7009,0.02416,0.04728,0.7113,-0.8267,-0.4287,-1.296,-0.579,-0.4579,-367.5,-1.34e-05,-5.985e-05,6.097e-06,-2.449e-05,7.456e-05,-0.001281,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001542,7.197e-06,6.977e-06,0.0001473,0.0225,0.02231,0.009563,0.04829,0.04827,0.05912,6.675e-11,6.677e-11,3.565e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26385000,0.7019,0.02302,0.0438,0.7106,-0.9065,-0.4886,-1.3,-0.6464,-0.5459,-367.7,-1.338e-05,-5.99e-05,6.15e-06,-2.449e-05,7.456e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001539,6.554e-06,6.321e-06,0.0001468,0.01993,0.01972,0.009465,0.04291,0.04289,0.05866,6.683e-11,6.686e-11,3.514e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26485000,0.7024,0.03051,0.05867,0.7087,-0.9997,-0.5273,-1.304,-0.7415,-0.5967,-367.8,-1.338e-05,-5.99e-05,6.101e-06,-2.449e-05,7.456e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001534,6.886e-06,6.673e-06,0.0001463,0.02132,0.02103,0.009528,0.04774,0.04771,0.05877,6.693e-11,6.696e-11,3.464e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26585000,0.7026,0.03697,0.07529,0.7066,-1.091,-0.5814,-1.292,-0.7835,-0.6623,-367.9,-1.332e-05,-5.991e-05,5.811e-06,-2.449e-05,7.456e-05,-0.001273,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001526,6.663e-06,6.529e-06,0.0001455,0.01901,0.01869,0.009423,0.0425,0.04248,0.05832,6.702e-11,6.705e-11,3.414e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26685000,0.7035,0.03841,0.07875,0.7053,-1.236,-0.6435,-1.282,-0.8998,-0.7235,-368.1,-1.332e-05,-5.992e-05,5.883e-06,-2.449e-05,7.456e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001523,6.83e-06,6.725e-06,0.000145,0.02038,0.01994,0.009475,0.04718,0.04714,0.05843,6.712e-11,6.715e-11,3.367e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26785000,0.7046,0.03617,0.07306,0.7049,-1.357,-0.7297,-1.284,-0.9953,-0.8552,-368.2,-1.329e-05,-5.996e-05,5.782e-06,-2.449e-05,7.456e-05,-0.001266,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001519,6.267e-06,6.125e-06,0.0001446,0.01832,0.01782,0.009373,0.04209,0.04206,0.05798,6.72e-11,6.724e-11,3.318e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26885000,0.7043,0.04464,0.09363,0.7023,-1.5,-0.7881,-1.296,-1.138,-0.931,-368.3,-1.329e-05,-5.997e-05,5.851e-06,-2.449e-05,7.456e-05,-0.001264,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001511,6.802e-06,6.807e-06,0.0001438,0.01969,0.01903,0.009429,0.04664,0.04657,0.05809,6.73e-11,6.733e-11,3.273e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26985000,0.7037,0.05144,0.116,0.6991,-1.63,-0.8692,-1.273,-1.198,-1.03,-368.5,-1.316e-05,-5.995e-05,5.814e-06,-2.449e-05,7.456e-05,-0.00126,0.2083,0.00204,0.4353,0,0,0,0,0,0.00015,6.921e-06,7.185e-06,0.0001428,0.01786,0.01711,0.009396,0.04169,0.04163,0.0585,6.738e-11,6.742e-11,3.236e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27085000,0.7043,0.05263,0.121,0.6975,-1.835,-0.9607,-1.245,-1.371,-1.122,-368.6,-1.316e-05,-5.995e-05,5.73e-06,-2.449e-05,7.456e-05,-0.001259,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001497,7.13e-06,7.492e-06,0.0001423,0.01933,0.0183,0.00944,0.04612,0.04601,0.05861,6.748e-11,6.752e-11,3.192e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27185000,0.706,0.04938,0.111,0.6977,-2.033,-1.03,-1.226,-1.567,-1.201,-368.7,-1.316e-05,-5.988e-05,5.967e-06,-2.449e-05,7.456e-05,-0.001255,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001491,6.673e-06,6.918e-06,0.0001418,0.0194,0.01822,0.009335,0.04865,0.04853,0.05817,6.755e-11,6.759e-11,3.144e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27285000,0.7075,0.04375,0.09589,0.6988,-2.197,-1.1,-1.216,-1.779,-1.308,-368.8,-1.316e-05,-5.988e-05,5.984e-06,-2.449e-05,7.456e-05,-0.001253,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001493,6.439e-06,6.535e-06,0.0001419,0.02091,0.01942,0.009396,0.05373,0.05351,0.05828,6.765e-11,6.769e-11,3.102e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27385000,0.7086,0.0375,0.07976,0.7001,-2.297,-1.129,-1.208,-1.97,-1.383,-369,-1.302e-05,-5.975e-05,6.23e-06,-2.449e-05,7.456e-05,-0.001246,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001484,5.98e-06,5.931e-06,0.0001414,0.02067,0.01914,0.009312,0.05626,0.05604,0.05783,6.771e-11,6.776e-11,3.054e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27485000,0.7091,0.03174,0.06466,0.7014,-2.385,-1.169,-1.192,-2.204,-1.498,-369.1,-1.302e-05,-5.975e-05,6.158e-06,-2.449e-05,7.456e-05,-0.001243,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001484,5.912e-06,5.752e-06,0.0001414,0.02201,0.02025,0.009394,0.06196,0.06161,0.05795,6.781e-11,6.786e-11,3.013e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27585000,0.7094,0.02705,0.05205,0.7023,-2.461,-1.184,-1.196,-2.47,-1.6,-369.2,-1.31e-05,-5.969e-05,6.456e-06,-2.449e-05,7.456e-05,-0.001236,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001473,5.663e-06,5.422e-06,0.0001408,0.02147,0.0198,0.009405,0.06442,0.06408,0.05836,6.786e-11,6.79e-11,2.977e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27685000,0.7092,0.02613,0.04984,0.7027,-2.501,-1.202,-1.197,-2.719,-1.719,-369.4,-1.311e-05,-5.968e-05,6.329e-06,-2.449e-05,7.456e-05,-0.001234,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001471,5.789e-06,5.534e-06,0.0001406,0.02271,0.02089,0.009501,0.07073,0.07022,0.05849,6.796e-11,6.8e-11,2.939e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27785000,0.7091,0.02662,0.05173,0.7027,-2.548,-1.209,-1.195,-2.983,-1.819,-369.5,-1.315e-05,-5.959e-05,6.409e-06,-2.449e-05,7.456e-05,-0.001228,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001456,5.666e-06,5.418e-06,0.0001398,0.02199,0.02033,0.009438,0.07304,0.07257,0.05805,6.798e-11,6.803e-11,2.896e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27885000,0.7091,0.026,0.05001,0.7028,-2.587,-1.228,-1.195,-3.24,-1.941,-369.6,-1.315e-05,-5.959e-05,6.331e-06,-2.449e-05,7.456e-05,-0.001224,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001454,5.805e-06,5.543e-06,0.0001396,0.02323,0.02145,0.009535,0.07993,0.07927,0.05819,6.808e-11,6.813e-11,2.859e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27985000,0.7093,0.02505,0.04605,0.7029,-2.643,-1.235,-1.201,-3.541,-2.053,-369.8,-1.332e-05,-5.953e-05,6.537e-06,-2.449e-05,7.456e-05,-0.001219,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001441,5.67e-06,5.38e-06,0.0001388,0.02242,0.02083,0.009474,0.08203,0.08144,0.05777,6.807e-11,6.812e-11,2.818e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28085000,0.7088,0.03048,0.05851,0.7023,-2.68,-1.251,-1.213,-3.806,-2.178,-369.9,-1.332e-05,-5.953e-05,6.293e-06,-2.449e-05,7.456e-05,-0.001216,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001437,5.883e-06,5.647e-06,0.0001385,0.02367,0.02198,0.009573,0.08948,0.08866,0.05791,6.817e-11,6.822e-11,2.783e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28185000,0.7085,0.03596,0.07274,0.701,-2.742,-1.265,-0.9756,-4.107,-2.289,-370,-1.345e-05,-5.945e-05,6.416e-06,-2.449e-05,7.456e-05,-0.00121,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001424,5.843e-06,5.708e-06,0.0001377,0.02258,0.02107,0.009506,0.09132,0.09061,0.0575,6.814e-11,6.819e-11,2.745e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28285000,0.7103,0.02895,0.05716,0.7009,-2.747,-1.279,-0.1162,-4.381,-2.417,-370.1,-1.345e-05,-5.945e-05,6.251e-06,-2.449e-05,7.456e-05,-0.001208,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001427,5.889e-06,5.65e-06,0.0001377,0.02284,0.02133,0.00969,0.09919,0.09825,0.0585,6.823e-11,6.828e-11,2.72e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28385000,0.7125,0.01311,0.02594,0.701,-2.769,-1.281,0.7497,-4.706,-2.535,-370.1,-1.367e-05,-5.94e-05,6.373e-06,-2.449e-05,7.456e-05,-0.001204,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001418,5.79e-06,5.435e-06,0.000137,0.02115,0.01989,0.009794,0.1008,0.09999,0.05864,6.82e-11,6.825e-11,2.684e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28485000,0.7128,0.003587,0.006635,0.7014,-2.728,-1.276,1.082,-4.981,-2.663,-370,-1.367e-05,-5.939e-05,6.27e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001415,6.091e-06,5.707e-06,0.0001366,0.02182,0.02063,0.009908,0.1089,0.1079,0.0588,6.83e-11,6.835e-11,2.651e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28585000,0.712,0.001945,0.003021,0.7021,-2.684,-1.252,0.9811,-5.307,-2.779,-369.9,-1.391e-05,-5.935e-05,6.425e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001405,6.09e-06,5.702e-06,0.0001361,0.04017,0.03928,0.02891,0.1104,0.1095,0.05897,6.826e-11,6.831e-11,2.617e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28685000,0.711,0.001214,0.002038,0.7032,-2.614,-1.236,0.981,-5.572,-2.904,-369.8,-1.391e-05,-5.934e-05,6.351e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001402,6.266e-06,5.876e-06,0.000136,0.06503,0.06428,0.05252,0.1194,0.1182,0.05945,6.836e-11,6.841e-11,2.585e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28785000,0.7103,0.001122,0.001862,0.7039,-2.624,-1.203,0.9794,-5.894,-3.013,-369.7,-1.416e-05,-5.928e-05,6.318e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001394,6.249e-06,5.848e-06,0.0001356,0.07541,0.07508,0.07115,0.1203,0.1193,0.0595,6.831e-11,6.834e-11,2.554e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28885000,0.7098,0.001085,0.002053,0.7044,-2.557,-1.188,0.9678,-6.153,-3.133,-369.6,-1.416e-05,-5.927e-05,6.284e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001394,6.418e-06,6.014e-06,0.0001357,0.1002,0.1,0.0946,0.1301,0.129,0.06221,6.84e-11,6.844e-11,2.531e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28985000,0.7094,0.001416,0.002585,0.7048,-2.619,-1.164,0.9489,-6.484,-3.244,-369.5,-1.442e-05,-5.924e-05,6.176e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000139,6.448e-06,6.037e-06,0.0001353,0.09496,0.09498,0.1035,0.1303,0.1293,0.06293,6.836e-11,6.84e-11,2.5e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29085000,0.7093,0.001546,0.00296,0.7049,-2.558,-1.15,0.9373,-6.743,-3.36,-369.5,-1.442e-05,-5.924e-05,6.068e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001388,6.618e-06,6.204e-06,0.0001351,0.1196,0.1198,0.126,0.1408,0.1397,0.06638,6.846e-11,6.85e-11,2.471e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29185000,0.7092,0.001741,0.003297,0.705,-2.543,-1.128,0.9049,-7.021,-3.469,-369.4,-1.449e-05,-5.922e-05,6.054e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001385,6.702e-06,6.283e-06,0.0001348,0.1041,0.1043,0.1246,0.1404,0.1394,0.06724,6.845e-11,6.848e-11,2.441e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29285000,0.7091,0.00205,0.004083,0.7051,-2.488,-1.117,0.9244,-7.273,-3.582,-369.3,-1.449e-05,-5.922e-05,5.93e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001383,6.873e-06,6.452e-06,0.0001346,0.1287,0.1289,0.1462,0.1514,0.1503,0.07201,6.855e-11,6.858e-11,2.412e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29385000,0.709,0.002535,0.005443,0.7052,-2.507,-1.108,0.9094,-7.559,-3.694,-369.3,-1.46e-05,-5.921e-05,5.666e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001381,6.982e-06,6.56e-06,0.0001343,0.108,0.1082,0.1369,0.1505,0.1495,0.07236,6.855e-11,6.859e-11,2.384e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29485000,0.7091,0.003009,0.006564,0.7051,-2.458,-1.1,0.9015,-7.808,-3.805,-369.2,-1.459e-05,-5.921e-05,5.655e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001379,7.156e-06,6.734e-06,0.000134,0.1325,0.1328,0.1574,0.1618,0.1607,0.07787,6.865e-11,6.869e-11,2.356e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29585000,0.7091,0.003317,0.007536,0.7051,-2.415,-1.072,0.8786,-8.052,-3.903,-369.1,-1.46e-05,-5.918e-05,5.555e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001379,7.295e-06,6.872e-06,0.0001339,0.1096,0.1098,0.1439,0.1607,0.1596,0.07887,6.867e-11,6.87e-11,2.335e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29685000,0.7092,0.003596,0.00819,0.705,-2.373,-1.065,0.8672,-8.292,-4.01,-369,-1.46e-05,-5.918e-05,5.422e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001377,7.482e-06,7.059e-06,0.0001337,0.134,0.1343,0.164,0.1721,0.171,0.08481,6.877e-11,6.88e-11,2.308e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29785000,0.7093,0.003763,0.008569,0.7048,-2.366,-1.05,0.8449,-8.545,-4.111,-369,-1.463e-05,-5.916e-05,5.425e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001375,7.641e-06,7.219e-06,0.0001334,0.1102,0.1104,0.1468,0.1708,0.1697,0.08331,6.88e-11,6.883e-11,2.281e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29885000,0.7093,0.003806,0.008709,0.7048,-2.329,-1.044,0.8249,-8.78,-4.216,-368.9,-1.463e-05,-5.916e-05,5.263e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001374,7.841e-06,7.418e-06,0.0001332,0.1346,0.1348,0.1663,0.1824,0.1813,0.0891,6.889e-11,6.893e-11,2.254e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29985000,0.7094,0.00382,0.008775,0.7047,-2.279,-1.02,0.8037,-9.004,-4.31,-368.8,-1.462e-05,-5.913e-05,5.157e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001372,8.015e-06,7.593e-06,0.0001328,0.1104,0.1106,0.1477,0.1809,0.1798,0.08674,6.892e-11,6.896e-11,2.228e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30085000,0.7095,0.003786,0.008651,0.7047,-2.244,-1.015,0.7879,-9.23,-4.412,-368.8,-1.462e-05,-5.913e-05,5.019e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000137,8.223e-06,7.802e-06,0.0001326,0.1348,0.135,0.1668,0.1926,0.1915,0.09219,6.902e-11,6.905e-11,2.203e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30185000,0.7097,0.00372,0.008406,0.7045,-2.227,-1.002,0.7818,-9.463,-4.508,-368.7,-1.464e-05,-5.912e-05,5.074e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000137,8.41e-06,7.99e-06,0.0001325,0.1105,0.1106,0.1489,0.191,0.1899,0.09126,6.905e-11,6.908e-11,2.184e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30285000,0.7098,0.003605,0.008199,0.7044,-2.192,-0.9983,0.7721,-9.683,-4.608,-368.6,-1.464e-05,-5.912e-05,4.971e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001368,8.626e-06,8.206e-06,0.0001323,0.1349,0.1351,0.1681,0.2027,0.2017,0.09654,6.914e-11,6.918e-11,2.159e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30385000,0.7098,0.003496,0.007918,0.7043,-2.14,-0.991,0.7617,-9.891,-4.706,-368.5,-1.462e-05,-5.911e-05,4.915e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001366,8.819e-06,8.401e-06,0.000132,0.1105,0.1106,0.1487,0.2011,0.2001,0.09294,6.917e-11,6.92e-11,2.134e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30485000,0.7099,0.003368,0.007646,0.7043,-2.108,-0.987,0.7498,-10.1,-4.805,-368.5,-1.462e-05,-5.911e-05,4.88e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001364,9.042e-06,8.624e-06,0.0001318,0.1349,0.1351,0.1677,0.2129,0.2118,0.09782,6.927e-11,6.93e-11,2.11e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30585000,0.71,0.003165,0.007197,0.7041,-2.087,-0.983,0.7218,-10.32,-4.904,-368.4,-1.464e-05,-5.912e-05,4.898e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001362,9.243e-06,8.827e-06,0.0001315,0.1106,0.1107,0.1484,0.2113,0.2102,0.09392,6.928e-11,6.932e-11,2.087e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30685000,0.7101,0.002968,0.006825,0.704,-2.054,-0.978,0.7145,-10.53,-5.002,-368.3,-1.464e-05,-5.911e-05,4.837e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000136,9.473e-06,9.059e-06,0.0001313,0.135,0.1351,0.1673,0.223,0.222,0.09845,6.938e-11,6.942e-11,2.064e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30785000,0.7102,0.002824,0.006427,0.704,-2.014,-0.9604,0.7142,-10.73,-5.092,-368.2,-1.463e-05,-5.909e-05,4.725e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001358,9.679e-06,9.266e-06,0.000131,0.1106,0.1107,0.148,0.2214,0.2203,0.09437,6.94e-11,6.944e-11,2.04e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30885000,0.7101,0.00261,0.005965,0.7041,-1.982,-0.9554,0.7038,-10.93,-5.188,-368.2,-1.463e-05,-5.909e-05,4.684e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001358,9.917e-06,9.505e-06,0.000131,0.135,0.1351,0.1683,0.2332,0.2321,0.1011,6.95e-11,6.954e-11,2.024e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30985000,0.7101,0.002444,0.005363,0.704,-1.968,-0.9458,0.7029,-11.13,-5.281,-368.1,-1.466e-05,-5.909e-05,4.62e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001356,1.013e-05,9.72e-06,0.0001307,0.1106,0.1107,0.1488,0.2315,0.2304,0.09673,6.95e-11,6.954e-11,2.001e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31085000,0.7102,0.002207,0.004804,0.704,-1.936,-0.9408,0.691,-11.33,-5.375,-368.1,-1.466e-05,-5.908e-05,4.534e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001354,1.037e-05,9.967e-06,0.0001305,0.135,0.1351,0.1679,0.2433,0.2422,0.101,6.96e-11,6.964e-11,1.98e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31185000,0.7102,0.001995,0.004403,0.704,-1.896,-0.9366,0.6672,-11.52,-5.469,-368,-1.465e-05,-5.908e-05,4.491e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001352,1.059e-05,1.018e-05,0.0001303,0.1106,0.1107,0.1485,0.2416,0.2405,0.09655,6.96e-11,6.965e-11,1.958e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31285000,0.7102,0.001747,0.003818,0.704,-1.863,-0.9302,0.6684,-11.7,-5.562,-367.9,-1.465e-05,-5.908e-05,4.457e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000135,1.084e-05,1.044e-05,0.0001301,0.1351,0.1352,0.1675,0.2534,0.2523,0.1006,6.97e-11,6.975e-11,1.937e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31385000,0.7102,0.001481,0.003176,0.704,-1.847,-0.9286,0.6606,-11.9,-5.657,-367.9,-1.467e-05,-5.909e-05,4.392e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001348,1.106e-05,1.066e-05,0.0001298,0.1107,0.1107,0.1482,0.2517,0.2506,0.09615,6.97e-11,6.974e-11,1.916e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31485000,0.7102,0.001259,0.002491,0.704,-1.813,-0.9234,0.6577,-12.08,-5.75,-367.8,-1.468e-05,-5.909e-05,4.293e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001348,1.132e-05,1.092e-05,0.0001298,0.1351,0.1352,0.1686,0.2635,0.2624,0.1026,6.98e-11,6.984e-11,1.901e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31585000,0.7102,0.001052,0.002023,0.704,-1.78,-0.9015,0.6507,-12.26,-5.833,-367.8,-1.468e-05,-5.906e-05,4.259e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001346,1.154e-05,1.115e-05,0.0001296,0.1107,0.1107,0.1491,0.2618,0.2607,0.09801,6.979e-11,6.983e-11,1.88e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31685000,0.7101,0.0007871,0.00133,0.7041,-1.748,-0.8961,0.6583,-12.44,-5.923,-367.7,-1.468e-05,-5.906e-05,4.241e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001344,1.181e-05,1.142e-05,0.0001294,0.1352,0.1352,0.1682,0.2736,0.2725,0.102,6.989e-11,6.993e-11,1.86e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31785000,0.7101,0.0004356,0.000536,0.7041,-1.738,-0.8848,0.654,-12.62,-6.009,-367.6,-1.471e-05,-5.905e-05,4.225e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001342,1.204e-05,1.165e-05,0.0001291,0.1107,0.1108,0.1488,0.2719,0.2708,0.09741,6.987e-11,6.992e-11,1.84e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31885000,0.7102,0.0001505,-0.000222,0.704,-1.702,-0.8771,0.652,-12.8,-6.097,-367.6,-1.471e-05,-5.905e-05,4.173e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001341,1.231e-05,1.192e-05,0.0001289,0.1352,0.1353,0.1678,0.2838,0.2826,0.1013,6.997e-11,7.002e-11,1.821e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31985000,0.7101,-9.111e-05,-0.0007981,0.7041,-1.657,-0.8585,0.6471,-12.96,-6.177,-367.5,-1.47e-05,-5.903e-05,4.08e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001338,1.254e-05,1.216e-05,0.0001287,0.1108,0.1108,0.1485,0.2821,0.2809,0.09676,6.994e-11,6.999e-11,1.802e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32085000,0.71,-0.0003987,-0.00157,0.7042,-1.623,-0.8518,0.6539,-13.12,-6.263,-367.5,-1.47e-05,-5.903e-05,3.99e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001337,1.282e-05,1.244e-05,0.0001285,0.1353,0.1353,0.1675,0.2939,0.2927,0.1005,7.004e-11,7.009e-11,1.783e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32185000,0.71,-0.000753,-0.002511,0.7042,-1.606,-0.8425,0.6542,-13.29,-6.346,-367.4,-1.473e-05,-5.902e-05,3.867e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001336,1.306e-05,1.268e-05,0.0001285,0.1108,0.1108,0.1493,0.2922,0.291,0.09846,7.001e-11,7.006e-11,1.769e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32285000,0.7099,-0.001027,-0.003324,0.7043,-1.57,-0.8354,0.6489,-13.45,-6.43,-367.4,-1.473e-05,-5.902e-05,3.792e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001335,1.335e-05,1.297e-05,0.0001283,0.1353,0.1354,0.1685,0.304,0.3029,0.1024,7.011e-11,7.016e-11,1.751e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32385000,0.7099,-0.001277,-0.004017,0.7043,-1.52,-0.8229,0.6531,-13.6,-6.51,-367.3,-1.471e-05,-5.901e-05,3.787e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001332,1.358e-05,1.321e-05,0.0001281,0.1108,0.1109,0.149,0.3023,0.3011,0.09776,7.007e-11,7.012e-11,1.733e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32485000,0.7098,-0.001431,-0.004327,0.7044,-1.484,-0.8146,0.6624,-13.75,-6.592,-367.2,-1.471e-05,-5.901e-05,3.759e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001331,1.387e-05,1.35e-05,0.0001279,0.1354,0.1354,0.1681,0.3141,0.313,0.1016,7.017e-11,7.022e-11,1.715e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32585000,0.7097,-0.001494,-0.004635,0.7045,-1.467,-0.8092,0.6635,-13.91,-6.674,-367.2,-1.475e-05,-5.901e-05,3.67e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001329,1.41e-05,1.374e-05,0.0001277,0.1109,0.1109,0.1486,0.3124,0.3112,0.09703,7.012e-11,7.018e-11,1.698e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32685000,0.7096,-0.001557,-0.004749,0.7046,-1.432,-0.802,0.6659,-14.05,-6.755,-367.1,-1.475e-05,-5.901e-05,3.618e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001327,1.439e-05,1.403e-05,0.0001275,0.1354,0.1355,0.1677,0.3242,0.3231,0.1008,7.022e-11,7.028e-11,1.681e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32785000,0.7095,-0.001569,-0.004763,0.7046,-1.395,-0.7874,0.6653,-14.19,-6.83,-367,-1.474e-05,-5.9e-05,3.581e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001327,1.462e-05,1.427e-05,0.0001275,0.1109,0.1109,0.1494,0.3225,0.3213,0.09871,7.016e-11,7.022e-11,1.668e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32885000,0.7094,-0.001526,-0.004758,0.7048,-1.363,-0.7804,0.6694,-14.33,-6.909,-367,-1.474e-05,-5.9e-05,3.47e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001325,1.492e-05,1.456e-05,0.0001273,0.1355,0.1355,0.1687,0.3343,0.3332,0.1026,7.026e-11,7.032e-11,1.651e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32985000,0.7093,-0.001461,-0.0048,0.7049,-1.352,-0.7749,0.6663,-14.48,-6.987,-366.9,-1.478e-05,-5.9e-05,3.471e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001323,1.515e-05,1.48e-05,0.0001271,0.1109,0.111,0.1491,0.3326,0.3315,0.09796,7.02e-11,7.026e-11,1.635e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33085000,0.7093,-0.001523,-0.004851,0.7049,-1.32,-0.7691,0.6653,-14.61,-7.064,-366.8,-1.478e-05,-5.9e-05,3.536e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001321,1.545e-05,1.511e-05,0.000127,0.1356,0.1356,0.1682,0.3444,0.3433,0.1018,7.029e-11,7.036e-11,1.619e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33185000,0.7063,0.001005,-0.004146,0.7079,-1.287,-0.7528,0.611,-14.74,-7.135,-366.8,-1.478e-05,-5.898e-05,3.526e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001316,1.567e-05,1.533e-05,0.0001271,0.111,0.111,0.1488,0.3427,0.3416,0.09723,7.022e-11,7.028e-11,1.603e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33285000,0.6576,0.01387,-0.002772,0.7532,-1.278,-0.7379,0.5839,-14.87,-7.209,-366.7,-1.478e-05,-5.898e-05,3.523e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001259,1.593e-05,1.561e-05,0.0001328,0.1357,0.1357,0.1678,0.3546,0.3534,0.101,7.032e-11,7.038e-11,1.587e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33385000,0.5564,0.01187,-0.003263,0.8308,-1.282,-0.7291,0.7824,-15,-7.283,-366.6,-1.48e-05,-5.898e-05,3.53e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001152,1.616e-05,1.587e-05,0.0001435,0.111,0.111,0.1484,0.3529,0.3517,0.09651,7.023e-11,7.03e-11,1.571e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33485000,0.42,0.005202,-0.000328,0.9075,-1.261,-0.7264,0.8141,-15.13,-7.356,-366.6,-1.48e-05,-5.898e-05,3.434e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001037,1.644e-05,1.62e-05,0.0001556,0.1356,0.1356,0.1688,0.3646,0.3635,0.1028,7.033e-11,7.04e-11,1.56e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33585000,0.2634,-0.001022,-0.002321,0.9647,-1.203,-0.7106,0.7561,-15.24,-7.417,-366.5,-1.477e-05,-5.894e-05,3.405e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,9.388e-05,1.665e-05,1.649e-05,0.0001657,0.111,0.111,0.1492,0.363,0.3618,0.09815,7.025e-11,7.032e-11,1.545e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33685000,0.09699,-0.00453,-0.00507,0.9953,-1.143,-0.7093,0.7677,-15.36,-7.488,-366.4,-1.477e-05,-5.894e-05,3.429e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,8.786e-05,1.684e-05,1.677e-05,0.000172,0.1358,0.1357,0.1684,0.3747,0.3736,0.102,7.035e-11,7.042e-11,1.53e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33785000,-0.07254,-0.006235,-0.006485,0.9973,-1.099,-0.683,0.7405,-15.49,-7.551,-366.3,-1.482e-05,-5.891e-05,3.376e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,8.659e-05,1.684e-05,1.688e-05,0.0001736,0.1112,0.1111,0.1489,0.3731,0.3719,0.09743,7.025e-11,7.033e-11,1.515e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33885000,-0.2397,-0.007423,-0.006807,0.9708,-1.024,-0.6597,0.7302,-15.59,-7.618,-366.3,-1.482e-05,-5.891e-05,3.362e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,9.033e-05,1.683e-05,1.696e-05,0.0001703,0.136,0.1358,0.1679,0.3848,0.3837,0.1012,7.035e-11,7.043e-11,1.5e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33985000,-0.3871,-0.006017,-0.009831,0.922,-1.005,-0.618,0.7026,-15.72,-7.679,-366.2,-1.494e-05,-5.89e-05,3.317e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,9.779e-05,1.663e-05,1.684e-05,0.000163,0.1113,0.1112,0.1485,0.3832,0.382,0.09668,7.025e-11,7.032e-11,1.485e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34085000,-0.495,-0.004737,-0.01123,0.8688,-0.9431,-0.5708,0.71,-15.82,-7.738,-366.1,-1.494e-05,-5.89e-05,3.347e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000106,1.647e-05,1.673e-05,0.0001552,0.1361,0.1359,0.1689,0.395,0.3938,0.103,7.035e-11,7.042e-11,1.475e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34185000,-0.5661,-0.004695,-0.009594,0.8243,-0.9699,-0.5452,0.7161,-15.96,-7.808,-366.1,-1.511e-05,-5.894e-05,3.35e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001123,1.621e-05,1.648e-05,0.0001485,0.1113,0.1112,0.1493,0.3933,0.3921,0.09835,7.023e-11,7.031e-11,1.461e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34285000,-0.6103,-0.005531,-0.006566,0.7921,-0.9126,-0.4936,0.7188,-16.05,-7.86,-366,-1.511e-05,-5.894e-05,3.324e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001167,1.604e-05,1.632e-05,0.0001439,0.1361,0.1359,0.1685,0.4051,0.4039,0.1022,7.033e-11,7.041e-11,1.447e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34385000,-0.6371,-0.006432,-0.003608,0.7707,-0.9183,-0.4694,0.7131,-16.18,-7.922,-365.9,-1.525e-05,-5.898e-05,3.318e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001194,1.579e-05,1.607e-05,0.0001407,0.1113,0.1112,0.149,0.4035,0.4022,0.0976,7.023e-11,7.031e-11,1.433e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34485000,-0.6533,-0.007374,-0.001321,0.7571,-0.856,-0.4233,0.7153,-16.27,-7.966,-365.9,-1.525e-05,-5.898e-05,3.318e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000121,1.562e-05,1.59e-05,0.0001387,0.1361,0.1358,0.168,0.4152,0.414,0.1014,7.033e-11,7.041e-11,1.419e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34585000,-0.6632,-0.007954,0.0001337,0.7484,-0.8784,-0.4278,0.7118,-16.4,-8.035,-365.8,-1.543e-05,-5.907e-05,3.363e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001219,1.538e-05,1.565e-05,0.0001372,0.1113,0.1111,0.1486,0.4136,0.4123,0.09687,7.022e-11,7.031e-11,1.406e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34685000,-0.6693,-0.008325,0.0009751,0.743,-0.8133,-0.3822,0.7142,-16.48,-8.076,-365.7,-1.543e-05,-5.907e-05,3.306e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001225,1.521e-05,1.547e-05,0.0001363,0.1361,0.1358,0.1676,0.4253,0.4241,0.1006,7.032e-11,7.041e-11,1.393e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34785000,-0.6732,-0.008359,0.001508,0.7394,-0.8247,-0.3843,0.7143,-16.6,-8.139,-365.6,-1.559e-05,-5.915e-05,3.192e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001229,1.496e-05,1.522e-05,0.0001357,0.1113,0.1111,0.1494,0.4237,0.4224,0.09853,7.023e-11,7.032e-11,1.383e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34885000,-0.6757,-0.008398,0.001641,0.7371,-0.7605,-0.3412,0.7179,-16.68,-8.175,-365.6,-1.559e-05,-5.915e-05,3.182e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000123,1.479e-05,1.505e-05,0.0001353,0.1361,0.1358,0.1686,0.4354,0.4343,0.1024,7.033e-11,7.042e-11,1.37e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34985000,-0.679,-0.01561,-0.0005598,0.734,0.1678,0.2642,-0.05685,-16.74,-8.197,-365.6,-1.578e-05,-5.924e-05,3.05e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001231,1.464e-05,1.486e-05,0.0001345,0.1152,0.1122,0.1492,0.4337,0.4326,0.0978,7.025e-11,7.034e-11,1.357e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35085000,-0.6791,-0.01599,-0.0009609,0.7339,0.3985,0.2923,-0.1505,-16.71,-8.17,-365.6,-1.578e-05,-5.924e-05,3.015e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001229,1.449e-05,1.47e-05,0.0001344,0.1409,0.1373,0.1684,0.4453,0.4445,0.1016,7.035e-11,7.044e-11,1.345e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35185000,-0.6791,-0.01568,-0.001101,0.7339,0.2199,0.2313,-0.1125,-16.79,-8.2,-365.6,-1.625e-05,-5.94e-05,2.888e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001222,1.422e-05,1.443e-05,0.0001325,0.1134,0.1118,0.1488,0.4439,0.4427,0.09705,7.021e-11,7.031e-11,1.33e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35285000,-0.6791,-0.0157,-0.001177,0.7339,0.2617,0.275,-0.1014,-16.76,-8.174,-365.6,-1.625e-05,-5.94e-05,2.805e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000122,1.407e-05,1.427e-05,0.0001324,0.1383,0.1365,0.1678,0.4555,0.4546,0.1008,7.031e-11,7.041e-11,1.318e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35385000,-0.6792,-0.01549,-0.001225,0.7338,0.1349,0.2191,-0.07307,-16.83,-8.202,-365.6,-1.658e-05,-5.955e-05,2.685e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001217,1.383e-05,1.403e-05,0.0001316,0.1123,0.1114,0.1495,0.454,0.4528,0.09873,7.021e-11,7.031e-11,1.308e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35485000,-0.6793,-0.01553,-0.001236,0.7337,0.1764,0.2613,-0.06431,-16.81,-8.178,-365.6,-1.658e-05,-5.955e-05,2.568e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001215,1.369e-05,1.389e-05,0.0001315,0.1371,0.1361,0.1688,0.4656,0.4647,0.1026,7.031e-11,7.041e-11,1.296e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35585000,-0.6792,-0.0154,-0.001221,0.7338,0.1563,0.2099,-0.04606,-16.83,-8.205,-365.6,-1.671e-05,-5.971e-05,2.619e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001212,1.347e-05,1.367e-05,0.0001309,0.1117,0.1112,0.1491,0.4641,0.4629,0.09797,7.024e-11,7.034e-11,1.284e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35685000,-0.6792,-0.01541,-0.001181,0.7338,0.1972,0.2526,-0.0405,-16.81,-8.182,-365.6,-1.671e-05,-5.971e-05,2.54e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000121,1.334e-05,1.353e-05,0.0001308,0.1364,0.1358,0.1683,0.4758,0.4748,0.1018,7.034e-11,7.044e-11,1.273e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35785000,-0.6792,-0.01531,-0.001179,0.7338,0.1706,0.2038,-0.02474,-16.83,-8.207,-365.6,-1.685e-05,-5.985e-05,2.536e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001207,1.314e-05,1.333e-05,0.0001304,0.1114,0.1111,0.1488,0.4742,0.4731,0.09724,7.029e-11,7.039e-11,1.261e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35885000,-0.6792,-0.01533,-0.001227,0.7338,0.211,0.247,-0.01695,-16.81,-8.184,-365.6,-1.685e-05,-5.985e-05,2.501e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001206,1.301e-05,1.32e-05,0.0001302,0.1361,0.1357,0.1679,0.4859,0.4849,0.101,7.039e-11,7.049e-11,1.25e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35985000,-0.6792,-0.01515,-0.001204,0.7338,0.1713,0.1954,-0.01237,-16.83,-8.211,-365.6,-1.7e-05,-5.998e-05,2.534e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001204,1.283e-05,1.301e-05,0.0001299,0.1112,0.111,0.1485,0.4844,0.4832,0.09651,7.035e-11,7.045e-11,1.239e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36085000,-0.6792,-0.0152,-0.001201,0.7338,0.2117,0.2381,-0.005252,-16.81,-8.189,-365.5,-1.7e-05,-5.998e-05,2.499e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001203,1.271e-05,1.289e-05,0.0001299,0.1358,0.1356,0.1688,0.4961,0.495,0.1028,7.045e-11,7.055e-11,1.231e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36185000,-0.6793,-0.01507,-0.001202,0.7337,0.1711,0.1903,-0.0007342,-16.83,-8.215,-365.5,-1.714e-05,-6.01e-05,2.354e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001201,1.254e-05,1.272e-05,0.0001297,0.1111,0.111,0.1492,0.4945,0.4933,0.09816,7.043e-11,7.053e-11,1.221e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36285000,-0.6793,-0.01514,-0.001171,0.7337,0.2112,0.2329,0.01106,-16.81,-8.194,-365.5,-1.714e-05,-6.01e-05,2.295e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.00012,1.243e-05,1.261e-05,0.0001296,0.1357,0.1355,0.1684,0.5062,0.5051,0.102,7.053e-11,7.063e-11,1.21e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36385000,-0.6793,-0.01506,-0.001169,0.7337,0.1748,0.1888,0.01123,-16.84,-8.218,-365.5,-1.727e-05,-6.021e-05,2.302e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001198,1.227e-05,1.244e-05,0.0001294,0.111,0.1109,0.1489,0.5046,0.5034,0.09743,7.051e-11,7.062e-11,1.2e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36485000,-0.6793,-0.01513,-0.001211,0.7337,0.2159,0.2306,0.01604,-16.82,-8.197,-365.5,-1.727e-05,-6.021e-05,2.345e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001196,1.217e-05,1.234e-05,0.0001292,0.1356,0.1354,0.1679,0.5163,0.5152,0.1012,7.061e-11,7.072e-11,1.19e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36585000,-0.6793,-0.01507,-0.001176,0.7337,0.1771,0.1891,0.01845,-16.84,-8.22,-365.5,-1.74e-05,-6.031e-05,2.258e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001194,1.202e-05,1.219e-05,0.000129,0.111,0.1109,0.1485,0.5147,0.5135,0.09669,7.061e-11,7.071e-11,1.18e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36685000,-0.6794,-0.01506,-0.001133,0.7336,0.2172,0.2313,0.02533,-16.82,-8.199,-365.5,-1.74e-05,-6.031e-05,2.181e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001194,1.192e-05,1.209e-05,0.000129,0.1355,0.1354,0.1689,0.5265,0.5253,0.103,7.071e-11,7.081e-11,1.173e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36785000,-0.6795,-0.015,-0.001148,0.7335,0.1784,0.1934,0.02136,-16.84,-8.22,-365.5,-1.753e-05,-6.04e-05,2.098e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001193,1.179e-05,1.195e-05,0.0001288,0.1109,0.1108,0.1493,0.5249,0.5236,0.09835,7.072e-11,7.082e-11,1.163e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36885000,-0.6796,-0.01506,-0.001146,0.7335,0.2183,0.2339,0.02676,-16.82,-8.199,-365.5,-1.753e-05,-6.04e-05,1.994e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001191,1.17e-05,1.186e-05,0.0001287,0.1355,0.1354,0.1685,0.5366,0.5354,0.1022,7.082e-11,7.092e-11,1.153e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36985000,-0.6796,-0.01497,-0.001069,0.7334,0.1796,0.1946,0.02005,-16.84,-8.22,-365.5,-1.765e-05,-6.049e-05,1.937e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001189,1.157e-05,1.173e-05,0.0001285,0.1109,0.1108,0.149,0.535,0.5338,0.09761,7.084e-11,7.094e-11,1.144e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37085000,-0.6796,-0.015,-0.001038,0.7334,0.22,0.2355,0.02736,-16.82,-8.198,-365.5,-1.765e-05,-6.049e-05,1.909e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001188,1.149e-05,1.165e-05,0.0001284,0.1354,0.1353,0.168,0.5467,0.5455,0.1014,7.094e-11,7.104e-11,1.135e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37185000,-0.6796,-0.01494,-0.001014,0.7334,0.1808,0.1914,0.02601,-16.84,-8.222,-365.5,-1.776e-05,-6.058e-05,1.912e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001186,1.137e-05,1.152e-05,0.0001282,0.1109,0.1108,0.1486,0.5451,0.5439,0.09688,7.096e-11,7.106e-11,1.125e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37285000,-0.6797,-0.01497,-0.001038,0.7334,0.221,0.2323,0.03185,-16.82,-8.201,-365.5,-1.776e-05,-6.058e-05,1.844e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001185,1.13e-05,1.145e-05,0.0001281,0.1354,0.1353,0.1676,0.5568,0.5556,0.1006,7.106e-11,7.116e-11,1.116e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37385000,-0.6797,-0.01491,-0.0009728,0.7333,0.1804,0.1883,0.02891,-16.84,-8.224,-365.5,-1.788e-05,-6.066e-05,1.82e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001184,1.119e-05,1.134e-05,0.0001281,0.1108,0.1108,0.1494,0.5552,0.554,0.09853,7.109e-11,7.119e-11,1.11e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37485000,-0.6798,-0.01494,-0.0009504,0.7332,0.2202,0.2306,0.03386,-16.82,-8.203,-365.5,-1.788e-05,-6.066e-05,1.729e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001183,1.113e-05,1.127e-05,0.0001279,0.1354,0.1353,0.1686,0.567,0.5658,0.1024,7.119e-11,7.129e-11,1.101e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37585000,-0.6798,-0.01487,-0.0009256,0.7332,0.1794,0.1883,0.03869,-16.85,-8.226,-365.5,-1.799e-05,-6.073e-05,1.664e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001181,1.103e-05,1.117e-05,0.0001278,0.1108,0.1108,0.149,0.5654,0.5641,0.0978,7.123e-11,7.133e-11,1.092e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37685000,-0.6799,-0.01493,-0.0009602,0.7332,0.2186,0.2306,0.04959,-16.83,-8.205,-365.5,-1.799e-05,-6.073e-05,1.6e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000118,1.097e-05,1.111e-05,0.0001277,0.1353,0.1352,0.1682,0.5771,0.5759,0.1016,7.133e-11,7.143e-11,1.084e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37785000,-0.6799,-0.01481,-0.000985,0.7332,0.1784,0.1884,0.05064,-16.85,-8.228,-365.5,-1.809e-05,-6.08e-05,1.573e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001178,1.088e-05,1.102e-05,0.0001275,0.1108,0.1107,0.1487,0.5755,0.5742,0.09705,7.137e-11,7.147e-11,1.075e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37885000,-0.6799,-0.01483,-0.0009785,0.7331,0.2174,0.23,0.05416,-16.83,-8.207,-365.5,-1.809e-05,-6.08e-05,1.539e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001177,1.083e-05,1.097e-05,0.0001274,0.1353,0.1352,0.1677,0.5872,0.586,0.1008,7.147e-11,7.157e-11,1.067e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37985000,-0.6799,-0.01476,-0.00101,0.7331,0.1746,0.188,0.04976,-16.85,-8.23,-365.5,-1.819e-05,-6.086e-05,1.532e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001177,1.075e-05,1.088e-05,0.0001273,0.1108,0.1107,0.1494,0.5856,0.5843,0.09872,7.152e-11,7.162e-11,1.061e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38085000,-0.6799,-0.01479,-0.001015,0.7331,0.2129,0.2293,0.06204,-16.83,-8.209,-365.5,-1.819e-05,-6.086e-05,1.466e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001175,1.071e-05,1.084e-05,0.0001272,0.1353,0.1352,0.1687,0.5973,0.5961,0.1026,7.162e-11,7.172e-11,1.053e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38185000,-0.6799,-0.0147,-0.0009796,0.7331,0.17,0.187,0.0535,-16.85,-8.232,-365.5,-1.828e-05,-6.092e-05,1.451e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001173,1.063e-05,1.076e-05,0.0001271,0.1108,0.1107,0.1491,0.5958,0.5945,0.09797,7.168e-11,7.178e-11,1.045e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38285000,-0.6799,-0.01473,-0.0009808,0.7331,0.2093,0.2271,0.05943,-16.83,-8.211,-365.5,-1.828e-05,-6.092e-05,1.421e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001172,1.06e-05,1.073e-05,0.000127,0.1353,0.1352,0.1683,0.6075,0.6062,0.1018,7.178e-11,7.188e-11,1.037e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38385000,-0.6799,-0.01464,-0.0009238,0.7331,0.1717,0.1865,0.04628,-16.86,-8.234,-365.5,-1.837e-05,-6.097e-05,1.424e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001171,1.053e-05,1.066e-05,0.0001268,0.1108,0.1107,0.1488,0.6059,0.6046,0.09723,7.184e-11,7.194e-11,1.029e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38485000,-0.6799,-0.01466,-0.0009377,0.7331,0.2112,0.2277,0.05134,-16.84,-8.213,-365.5,-1.837e-05,-6.097e-05,1.388e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001169,1.05e-05,1.063e-05,0.0001267,0.1352,0.1352,0.1678,0.6176,0.6163,0.101,7.194e-11,7.204e-11,1.021e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38585000,-0.6799,-0.0146,-0.0008541,0.7331,0.1745,0.1869,0.03712,-16.86,-8.236,-365.5,-1.845e-05,-6.101e-05,1.387e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001168,1.045e-05,1.057e-05,0.0001265,0.1108,0.1107,0.1485,0.616,0.6147,0.09651,7.201e-11,7.21e-11,1.013e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38685000,-0.68,-0.01469,-0.0008646,0.7331,0.2131,0.2262,0.04166,-16.84,-8.215,-365.5,-1.845e-05,-6.101e-05,1.344e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001168,1.043e-05,1.055e-05,0.0001265,0.1352,0.1351,0.1688,0.6277,0.6265,0.1028,7.211e-11,7.22e-11,1.008e-10,2.952e-06,2.953e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38785000,-0.6799,-0.01461,-0.0008467,0.7331,0.1717,0.1816,0.03907,-16.86,-8.24,-365.5,-1.853e-05,-6.106e-05,1.324e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001166,1.038e-05,1.05e-05,0.0001264,0.08946,0.0894,0.1277,0.6261,0.6248,0.09811,7.218e-11,7.227e-11,1e-10,2.952e-06,2.953e-06,5.001e-08,0,0,0,0,0,0,0,0
|
||||
38885000,-0.68,-0.01479,-0.0009028,0.7331,0.1927,0.203,0.4922,-16.84,-8.22,-365.5,-1.853e-05,-6.106e-05,1.297e-06,-2.449e-05,7.456e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001165,1.037e-05,1.049e-05,0.0001263,0.09063,0.09056,0.1233,0.6373,0.6361,0.1016,7.228e-11,7.237e-11,9.93e-11,2.952e-06,2.953e-06,5.002e-08,0,0,0,0,0,0,0,0
|
||||
10385000,0.7043,0.002088,-0.01316,0.7097,0.009036,-0.01973,0.005832,0.0008454,-0.001783,-365.5,-1.615e-05,-5.728e-05,-1.326e-06,-1.114e-05,2.149e-05,-0.0007917,0.2083,0.00204,0.4353,0,0,0,0,0,0.000207,0.0004746,0.0004744,0.0002149,0.04167,0.04167,0.04025,0.2503,0.2503,0.132,5.727e-09,5.732e-09,8.685e-09,3.667e-06,3.667e-06,1.853e-06,0,0,0,0,0,0,0,0
|
||||
10485000,0.7042,0.002129,-0.01314,0.7099,0.007179,-0.01863,0.003336,0.001638,-0.003703,-365.5,-1.617e-05,-5.727e-05,-1.853e-06,-1.19e-05,2.212e-05,-0.000827,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002071,0.0004858,0.0004856,0.0002141,0.04724,0.04724,0.04076,0.2515,0.2515,0.1181,5.727e-09,5.732e-09,8.537e-09,3.667e-06,3.667e-06,1.776e-06,0,0,0,0,0,0,0,0
|
||||
10585000,0.7042,0.002233,-0.01326,0.7098,0.005771,-0.01435,0.001976,0.001517,-0.002725,-365.5,-1.607e-05,-5.704e-05,-1.823e-06,-1.534e-05,2.232e-05,-0.0008467,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002073,0.0004866,0.0004865,0.0002133,0.0478,0.0478,0.03866,0.1264,0.1264,0.1078,5.672e-09,5.676e-09,8.388e-09,3.659e-06,3.659e-06,1.712e-06,0,0,0,0,0,0,0,0
|
||||
10685000,0.7042,0.002283,-0.01324,0.7098,0.003111,-0.0144,-0.0009593,0.001998,-0.004178,-365.5,-1.608e-05,-5.704e-05,-1.803e-06,-1.564e-05,2.256e-05,-0.0008606,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002087,0.0004982,0.000498,0.0002139,0.06011,0.06011,0.03954,0.1285,0.1285,0.1031,5.672e-09,5.676e-09,8.275e-09,3.659e-06,3.659e-06,1.673e-06,0,0,0,0,0,0,0,0
|
||||
10785000,0.7042,0.002326,-0.01341,0.7098,0.002047,-0.01122,-0.003593,0.001946,-0.003205,-365.5,-1.583e-05,-5.673e-05,-1.801e-06,-2.015e-05,2.371e-05,-0.0008688,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002089,0.0004739,0.0004737,0.0002132,0.06124,0.06124,0.03782,0.08658,0.08658,0.09669,5.486e-09,5.49e-09,8.123e-09,3.635e-06,3.635e-06,1.622e-06,0,0,0,0,0,0,0,0
|
||||
10885000,0.7042,0.002282,-0.01335,0.7098,1.148e-05,-0.01035,-0.007835,0.002028,-0.004266,-365.5,-1.584e-05,-5.673e-05,-1.946e-06,-2.023e-05,2.378e-05,-0.0008726,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002091,0.0004852,0.000485,0.0002126,0.07851,0.0785,0.03875,0.09006,0.09006,0.09265,5.486e-09,5.49e-09,7.969e-09,3.635e-06,3.635e-06,1.582e-06,0,0,0,0,0,0,0,0
|
||||
10985000,0.7043,0.002276,-0.0137,0.7097,0.00149,-0.004293,-0.01199,0.003142,-0.005146,-365.5,-1.511e-05,-5.628e-05,-1.474e-06,-2.813e-05,2.898e-05,-0.0008812,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002093,0.0004351,0.000435,0.0002121,0.07466,0.07466,0.03721,0.06851,0.0685,0.0886,5.172e-09,5.176e-09,7.815e-09,3.598e-06,3.598e-06,1.537e-06,0,0,0,0,0,0,0,0
|
||||
11085000,0.7045,0.00229,-0.01363,0.7096,-0.000117,-0.002071,-0.01329,0.003233,-0.00551,-365.5,-1.51e-05,-5.63e-05,-9.758e-07,-2.844e-05,2.92e-05,-0.0008952,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002095,0.0004456,0.0004454,0.0002115,0.09425,0.09424,0.03819,0.07351,0.07351,0.08673,5.172e-09,5.176e-09,7.66e-09,3.598e-06,3.598e-06,1.505e-06,0,0,0,0,0,0,0,0
|
||||
11185000,0.7043,0.002205,-0.01392,0.7097,0.005159,0.002585,-0.01809,0.004831,-0.005478,-365.5,-1.441e-05,-5.607e-05,-1.499e-06,-3.338e-05,3.475e-05,-0.0008933,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002096,0.0003826,0.0003825,0.000211,0.083,0.08299,0.03676,0.05935,0.05935,0.08396,4.8e-09,4.804e-09,7.505e-09,3.558e-06,3.559e-06,1.462e-06,0,0,0,0,0,0,0,0
|
||||
11285000,0.7042,0.002291,-0.01394,0.7099,0.004435,0.005076,-0.02077,0.005317,-0.005088,-365.5,-1.444e-05,-5.605e-05,-2.477e-06,-3.353e-05,3.491e-05,-0.0009001,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002098,0.000392,0.0003918,0.0002104,0.1025,0.1025,0.03778,0.06573,0.06573,0.08342,4.8e-09,4.804e-09,7.35e-09,3.558e-06,3.559e-06,1.436e-06,0,0,0,0,0,0,0,0
|
||||
11385000,0.7041,0.002356,-0.01384,0.71,0.001656,0.006192,-0.02363,0.004,-0.004131,-365.5,-1.464e-05,-5.613e-05,-2.982e-06,-3.211e-05,3.366e-05,-0.0009047,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002112,0.0003306,0.0003305,0.0002111,0.0854,0.0854,0.03672,0.05451,0.05451,0.08304,4.443e-09,4.446e-09,7.234e-09,3.525e-06,3.525e-06,1.399e-06,0,0,0,0,0,0,0,0
|
||||
11485000,0.7039,0.002375,-0.01386,0.7101,-0.0009244,0.008905,-0.02613,0.004037,-0.003377,-365.5,-1.466e-05,-5.611e-05,-3.909e-06,-3.22e-05,3.378e-05,-0.0009092,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002113,0.0003388,0.0003387,0.0002106,0.1033,0.1033,0.03779,0.06191,0.06191,0.08334,4.443e-09,4.446e-09,7.079e-09,3.525e-06,3.525e-06,1.375e-06,0,0,0,0,0,0,0,0
|
||||
11585000,0.7038,0.002294,-0.01383,0.7103,-0.00414,0.009608,-0.02918,0.003194,-0.003113,-365.5,-1.471e-05,-5.634e-05,-4.507e-06,-3.025e-05,3.448e-05,-0.0009139,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002114,0.0002869,0.0002867,0.0002101,0.08349,0.08349,0.03649,0.05187,0.05187,0.08158,4.136e-09,4.139e-09,6.925e-09,3.5e-06,3.5e-06,1.331e-06,0,0,0,0,0,0,0,0
|
||||
11685000,0.7037,0.002281,-0.01383,0.7103,-0.007371,0.0128,-0.03292,0.002597,-0.002029,-365.5,-1.472e-05,-5.634e-05,-4.945e-06,-3.02e-05,3.446e-05,-0.0009118,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002115,0.0002942,0.000294,0.0002096,0.09933,0.09932,0.03758,0.0599,0.0599,0.08241,4.136e-09,4.139e-09,6.772e-09,3.5e-06,3.5e-06,1.309e-06,0,0,0,0,0,0,0,0
|
||||
11785000,0.7037,0.002311,-0.0138,0.7103,-0.01208,0.01355,-0.03541,0.0007916,-0.0008102,-365.5,-1.481e-05,-5.638e-05,-5.09e-06,-2.97e-05,3.405e-05,-0.0009195,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002115,0.0002533,0.0002531,0.0002091,0.07923,0.07923,0.03631,0.05039,0.05039,0.08083,3.885e-09,3.888e-09,6.62e-09,3.483e-06,3.483e-06,1.264e-06,0,0,0,0,0,0,0,0
|
||||
11885000,0.7036,0.002325,-0.01378,0.7105,-0.01329,0.0153,-0.03744,-0.0004537,0.0006263,-365.5,-1.483e-05,-5.637e-05,-5.718e-06,-2.98e-05,3.417e-05,-0.0009243,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002116,0.0002599,0.0002597,0.0002086,0.09298,0.09297,0.0374,0.05874,0.05874,0.08197,3.885e-09,3.888e-09,6.469e-09,3.483e-06,3.483e-06,1.244e-06,0,0,0,0,0,0,0,0
|
||||
11985000,0.7037,0.002316,-0.01373,0.7104,-0.01443,0.01554,-0.04098,-0.001195,0.001232,-365.5,-1.476e-05,-5.652e-05,-5.456e-06,-2.917e-05,3.505e-05,-0.0009264,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002128,0.0002286,0.0002284,0.0002093,0.07403,0.07403,0.03657,0.04952,0.04952,0.08214,3.681e-09,3.683e-09,6.357e-09,3.473e-06,3.473e-06,1.202e-06,0,0,0,0,0,0,0,0
|
||||
12085000,0.7038,0.002342,-0.01373,0.7103,-0.01592,0.01813,-0.04686,-0.002716,0.002893,-365.5,-1.474e-05,-5.653e-05,-4.842e-06,-2.91e-05,3.496e-05,-0.0009225,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002128,0.0002347,0.0002345,0.0002088,0.08594,0.08593,0.03771,0.05798,0.05798,0.08352,3.681e-09,3.683e-09,6.209e-09,3.473e-06,3.473e-06,1.183e-06,0,0,0,0,0,0,0,0
|
||||
12185000,0.7037,0.002052,-0.01376,0.7103,-0.01049,0.01592,-0.04306,0.0005567,0.001184,-365.5,-1.424e-05,-5.704e-05,-5.085e-06,-2.847e-05,3.926e-05,-0.0009463,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002127,0.0002109,0.0002108,0.0002082,0.06871,0.06871,0.03647,0.04898,0.04898,0.08197,3.512e-09,3.514e-09,6.063e-09,3.467e-06,3.467e-06,1.135e-06,0,0,0,0,0,0,0,0
|
||||
12285000,0.7037,0.002035,-0.01376,0.7103,-0.0133,0.01805,-0.04374,-0.0006083,0.002898,-365.5,-1.424e-05,-5.704e-05,-4.948e-06,-2.869e-05,3.943e-05,-0.0009562,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002126,0.0002167,0.0002165,0.0002077,0.07906,0.07906,0.03761,0.05741,0.05741,0.08344,3.512e-09,3.514e-09,5.919e-09,3.467e-06,3.467e-06,1.117e-06,0,0,0,0,0,0,0,0
|
||||
12385000,0.7037,0.001781,-0.01377,0.7104,-0.008379,0.01529,-0.0413,0.002085,0.001195,-365.5,-1.384e-05,-5.748e-05,-5.367e-06,-2.845e-05,4.22e-05,-0.0009757,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002125,0.0001985,0.0001983,0.0002072,0.06368,0.06368,0.03638,0.04862,0.04862,0.08187,3.367e-09,3.369e-09,5.777e-09,3.464e-06,3.464e-06,1.068e-06,0,0,0,0,0,0,0,0
|
||||
12485000,0.7036,0.001756,-0.01379,0.7105,-0.009939,0.0179,-0.04455,0.001187,0.002849,-365.5,-1.385e-05,-5.747e-05,-5.945e-06,-2.851e-05,4.228e-05,-0.0009787,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002123,0.0002041,0.0002039,0.0002066,0.07277,0.07277,0.03751,0.05693,0.05693,0.08336,3.367e-09,3.369e-09,5.637e-09,3.464e-06,3.464e-06,1.051e-06,0,0,0,0,0,0,0,0
|
||||
12585000,0.7035,0.001786,-0.01361,0.7106,-0.01577,0.01585,-0.04872,-0.003405,0.001216,-365.5,-1.429e-05,-5.778e-05,-6.052e-06,-2.71e-05,4.213e-05,-0.0009799,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002121,0.0001899,0.0001897,0.0002061,0.05914,0.05914,0.03629,0.04835,0.04835,0.08177,3.239e-09,3.241e-09,5.499e-09,3.462e-06,3.462e-06,1.002e-06,0,0,0,0,0,0,0,0
|
||||
12685000,0.7035,0.001829,-0.01356,0.7106,-0.01657,0.01807,-0.05206,-0.005031,0.002909,-365.5,-1.429e-05,-5.778e-05,-6.152e-06,-2.708e-05,4.212e-05,-0.0009791,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002132,0.0001953,0.0001951,0.0002067,0.06722,0.06722,0.03787,0.05649,0.05649,0.08502,3.239e-09,3.241e-09,5.397e-09,3.462e-06,3.462e-06,9.9e-07,0,0,0,0,0,0,0,0
|
||||
12785000,0.7035,0.001848,-0.01341,0.7106,-0.02045,0.0147,-0.05339,-0.008029,0.001279,-365.5,-1.455e-05,-5.81e-05,-6.054e-06,-2.679e-05,4.302e-05,-0.000989,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002129,0.0001841,0.0001839,0.0002061,0.05514,0.05514,0.03661,0.04811,0.04811,0.08333,3.122e-09,3.124e-09,5.264e-09,3.461e-06,3.462e-06,9.406e-07,0,0,0,0,0,0,0,0
|
||||
12885000,0.7035,0.001802,-0.01344,0.7106,-0.02173,0.01508,-0.05391,-0.01014,0.002746,-365.5,-1.455e-05,-5.81e-05,-6.003e-06,-2.698e-05,4.319e-05,-0.0009983,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002127,0.0001894,0.0001892,0.0002055,0.06242,0.06242,0.03772,0.05607,0.05607,0.08484,3.122e-09,3.124e-09,5.133e-09,3.461e-06,3.462e-06,9.252e-07,0,0,0,0,0,0,0,0
|
||||
12985000,0.7036,0.001505,-0.0136,0.7104,-0.01109,0.01231,-0.0519,-0.001735,0.001333,-365.5,-1.371e-05,-5.85e-05,-5.375e-06,-2.889e-05,4.356e-05,-0.001017,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002123,0.0001802,0.00018,0.0002049,0.05167,0.05167,0.03644,0.04789,0.04789,0.08312,3.011e-09,3.013e-09,5.005e-09,3.46e-06,3.461e-06,8.766e-07,0,0,0,0,0,0,0,0
|
||||
13085000,0.7035,0.001516,-0.01354,0.7106,-0.01208,0.01307,-0.05251,-0.00289,0.002608,-365.5,-1.372e-05,-5.849e-05,-5.99e-06,-2.899e-05,4.367e-05,-0.001022,0.2083,0.00204,0.4353,0,0,0,0,0,0.000212,0.0001854,0.0001852,0.0002043,0.05831,0.05832,0.0375,0.05564,0.05564,0.08457,3.011e-09,3.013e-09,4.879e-09,3.46e-06,3.461e-06,8.617e-07,0,0,0,0,0,0,0,0
|
||||
13185000,0.7035,0.001288,-0.0136,0.7106,-0.003741,0.012,-0.04788,0.0035,0.001486,-365.5,-1.31e-05,-5.88e-05,-5.927e-06,-3.1e-05,4.31e-05,-0.00105,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002117,0.0001777,0.0001775,0.0002037,0.04871,0.04871,0.03621,0.04767,0.04767,0.08284,2.903e-09,2.904e-09,4.755e-09,3.459e-06,3.459e-06,8.144e-07,0,0,0,0,0,0,0,0
|
||||
13285000,0.7036,0.0013,-0.01359,0.7105,-0.004325,0.01334,-0.0464,0.0031,0.002757,-365.5,-1.309e-05,-5.881e-05,-5.449e-06,-3.124e-05,4.33e-05,-0.001062,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002125,0.0001828,0.0001826,0.0002042,0.05487,0.05487,0.0377,0.05522,0.05522,0.08606,2.903e-09,2.904e-09,4.665e-09,3.459e-06,3.459e-06,8.036e-07,0,0,0,0,0,0,0,0
|
||||
13385000,0.7037,0.001128,-0.01354,0.7104,-0.003416,0.01178,-0.04177,0.002364,0.00157,-365.5,-1.291e-05,-5.909e-05,-4.958e-06,-3.292e-05,4.242e-05,-0.001085,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002121,0.0001761,0.0001759,0.0002035,0.04623,0.04623,0.03636,0.04745,0.04745,0.08424,2.795e-09,2.796e-09,4.546e-09,3.456e-06,3.457e-06,7.576e-07,0,0,0,0,0,0,0,0
|
||||
13485000,0.7038,0.001158,-0.01353,0.7103,-0.004344,0.01229,-0.04142,0.002007,0.002768,-365.5,-1.29e-05,-5.91e-05,-4.507e-06,-3.308e-05,4.256e-05,-0.001094,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002117,0.0001811,0.0001809,0.0002029,0.052,0.052,0.03733,0.05481,0.05481,0.08564,2.795e-09,2.796e-09,4.43e-09,3.456e-06,3.457e-06,7.438e-07,0,0,0,0,0,0,0,0
|
||||
13585000,0.7037,0.001064,-0.01348,0.7103,-0.003693,0.01193,-0.0414,0.001409,0.001724,-365.5,-1.272e-05,-5.934e-05,-4.72e-06,-3.467e-05,4.113e-05,-0.001101,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002112,0.0001751,0.0001749,0.0002022,0.04416,0.04416,0.03596,0.04721,0.04721,0.08382,2.686e-09,2.687e-09,4.317e-09,3.453e-06,3.453e-06,6.999e-07,0,0,0,0,0,0,0,0
|
||||
13685000,0.7038,0.001041,-0.01344,0.7102,-0.003311,0.01416,-0.04535,0.001024,0.003006,-365.5,-1.271e-05,-5.935e-05,-4.086e-06,-3.465e-05,4.11e-05,-0.0011,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002108,0.0001801,0.0001799,0.0002016,0.04965,0.04965,0.03687,0.05439,0.0544,0.08516,2.686e-09,2.687e-09,4.207e-09,3.453e-06,3.453e-06,6.866e-07,0,0,0,0,0,0,0,0
|
||||
13785000,0.7038,0.0009212,-0.01335,0.7102,-0.002438,0.009643,-0.04525,0.002462,0.0002977,-365.5,-1.249e-05,-5.984e-05,-4.05e-06,-3.823e-05,3.982e-05,-0.001108,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002103,0.0001744,0.0001742,0.0002009,0.04247,0.04247,0.03548,0.04698,0.04698,0.08334,2.574e-09,2.575e-09,4.099e-09,3.447e-06,3.447e-06,6.45e-07,0,0,0,0,0,0,0,0
|
||||
13885000,0.7038,0.0008748,-0.01338,0.7103,-0.002359,0.009995,-0.04889,0.002208,0.001272,-365.5,-1.248e-05,-5.984e-05,-3.928e-06,-3.821e-05,3.98e-05,-0.001107,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002098,0.0001793,0.0001791,0.0002002,0.04774,0.04774,0.03631,0.054,0.054,0.08463,2.574e-09,2.575e-09,3.994e-09,3.447e-06,3.447e-06,6.321e-07,0,0,0,0,0,0,0,0
|
||||
13985000,0.704,0.0007922,-0.01333,0.7101,-0.001798,0.007248,-0.04725,0.003378,-0.0008722,-365.5,-1.226e-05,-6.025e-05,-3.384e-06,-4.179e-05,3.829e-05,-0.00112,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002104,0.0001738,0.0001736,0.0002006,0.04111,0.04111,0.03536,0.04674,0.04674,0.08457,2.459e-09,2.461e-09,3.916e-09,3.44e-06,3.44e-06,5.96e-07,0,0,0,0,0,0,0,0
|
||||
14085000,0.704,0.0007695,-0.01334,0.71,-0.002131,0.007511,-0.04835,0.003151,-0.0001444,-365.5,-1.225e-05,-6.026e-05,-2.97e-06,-4.18e-05,3.829e-05,-0.00112,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002098,0.0001786,0.0001784,0.0001999,0.04619,0.04619,0.03613,0.05362,0.05362,0.08585,2.459e-09,2.461e-09,3.816e-09,3.44e-06,3.44e-06,5.838e-07,0,0,0,0,0,0,0,0
|
||||
14185000,0.7041,0.0006318,-0.01334,0.7099,0.001444,0.006336,-0.04872,0.005572,-0.0004488,-365.5,-1.183e-05,-6.043e-05,-2.395e-06,-4.353e-05,3.453e-05,-0.001125,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002093,0.0001731,0.0001729,0.0001992,0.04001,0.04001,0.0347,0.04651,0.04651,0.08398,2.342e-09,2.343e-09,3.718e-09,3.43e-06,3.43e-06,5.471e-07,0,0,0,0,0,0,0,0
|
||||
14285000,0.7042,0.0006333,-0.0133,0.7099,0.001717,0.007294,-0.04827,0.005724,0.0002139,-365.5,-1.183e-05,-6.044e-05,-2.077e-06,-4.364e-05,3.463e-05,-0.001131,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002087,0.0001778,0.0001776,0.0001985,0.04497,0.04497,0.03539,0.05327,0.05327,0.08521,2.342e-09,2.343e-09,3.622e-09,3.43e-06,3.43e-06,5.354e-07,0,0,0,0,0,0,0,0
|
||||
14385000,0.7044,0.0005093,-0.01329,0.7097,0.003767,0.007328,-0.04896,0.007445,-8.798e-05,-365.5,-1.15e-05,-6.062e-05,-1.348e-06,-4.542e-05,3.132e-05,-0.001136,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002081,0.0001723,0.0001721,0.0001978,0.03914,0.03914,0.03397,0.04629,0.04629,0.08334,2.221e-09,2.222e-09,3.529e-09,3.419e-06,3.419e-06,5.013e-07,0,0,0,0,0,0,0,0
|
||||
14485000,0.7044,0.0004998,-0.01323,0.7097,0.003506,0.008971,-0.0517,0.007804,0.000732,-365.5,-1.149e-05,-6.062e-05,-1.096e-06,-4.536e-05,3.126e-05,-0.001133,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002075,0.0001769,0.0001767,0.0001971,0.04401,0.04401,0.03458,0.05295,0.05295,0.08451,2.221e-09,2.222e-09,3.439e-09,3.419e-06,3.419e-06,4.902e-07,0,0,0,0,0,0,0,0
|
||||
14585000,0.7044,0.0004456,-0.01302,0.7097,0.0009067,0.006911,-0.05068,0.004936,-0.001082,-365.5,-1.181e-05,-6.099e-05,-1.249e-06,-4.937e-05,3.467e-05,-0.001141,0.2083,0.00204,0.4353,0,0,0,0,0,0.000208,0.0001712,0.000171,0.0001974,0.03846,0.03846,0.03359,0.04609,0.04609,0.08443,2.097e-09,2.098e-09,3.372e-09,3.405e-06,3.405e-06,4.614e-07,0,0,0,0,0,0,0,0
|
||||
14685000,0.7045,0.0004119,-0.013,0.7096,0.002249,0.004273,-0.04878,0.005124,-0.0005035,-365.5,-1.18e-05,-6.1e-05,-5.82e-07,-4.95e-05,3.479e-05,-0.001149,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002074,0.0001756,0.0001754,0.0001967,0.04324,0.04324,0.03414,0.05266,0.05266,0.08558,2.097e-09,2.098e-09,3.286e-09,3.405e-06,3.405e-06,4.51e-07,0,0,0,0,0,0,0,0
|
||||
14785000,0.7045,0.0003981,-0.01285,0.7096,-9.642e-05,0.002004,-0.04506,0.002807,-0.00193,-365.5,-1.208e-05,-6.127e-05,-4.327e-07,-5.281e-05,3.812e-05,-0.001164,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002067,0.0001698,0.0001696,0.0001959,0.03792,0.03792,0.03272,0.0459,0.0459,0.0837,1.972e-09,1.973e-09,3.202e-09,3.389e-06,3.39e-06,4.219e-07,0,0,0,0,0,0,0,0
|
||||
14885000,0.7046,0.0003856,-0.0128,0.7095,0.0007982,0.003235,-0.04751,0.002825,-0.001677,-365.5,-1.207e-05,-6.128e-05,4.578e-08,-5.282e-05,3.812e-05,-0.001164,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002061,0.000174,0.0001739,0.0001952,0.04265,0.04265,0.03319,0.0524,0.0524,0.08478,1.972e-09,1.973e-09,3.121e-09,3.389e-06,3.39e-06,4.12e-07,0,0,0,0,0,0,0,0
|
||||
14985000,0.7046,0.0003357,-0.01279,0.7095,0.0003739,0.002384,-0.0434,0.002291,-0.001498,-365.5,-1.211e-05,-6.133e-05,1.329e-08,-5.367e-05,3.876e-05,-0.001178,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002054,0.000168,0.0001678,0.0001945,0.03748,0.03748,0.0318,0.04574,0.04574,0.08294,1.846e-09,1.847e-09,3.041e-09,3.372e-06,3.373e-06,3.855e-07,0,0,0,0,0,0,0,0
|
||||
15085000,0.7046,0.000267,-0.01276,0.7095,0.0004261,0.002159,-0.04507,0.002327,-0.00128,-365.5,-1.211e-05,-6.133e-05,8.305e-08,-5.362e-05,3.87e-05,-0.001175,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002048,0.0001721,0.0001719,0.0001938,0.04214,0.04214,0.0322,0.05218,0.05218,0.08396,1.847e-09,1.847e-09,2.964e-09,3.372e-06,3.373e-06,3.762e-07,0,0,0,0,0,0,0,0
|
||||
15185000,0.7047,0.0002333,-0.01273,0.7094,0.0002819,0.002535,-0.04211,0.001903,-0.001091,-365.5,-1.213e-05,-6.137e-05,1.942e-07,-5.423e-05,3.913e-05,-0.001186,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002041,0.0001658,0.0001657,0.0001931,0.03711,0.03711,0.03085,0.04559,0.04559,0.08215,1.721e-09,1.722e-09,2.889e-09,3.353e-06,3.354e-06,3.521e-07,0,0,0,0,0,0,0,0
|
||||
15285000,0.7048,0.0002003,-0.01277,0.7093,0.0005889,0.002786,-0.04166,0.001958,-0.0008255,-365.5,-1.213e-05,-6.137e-05,4.618e-07,-5.432e-05,3.921e-05,-0.001191,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002045,0.0001698,0.0001696,0.0001933,0.04171,0.04171,0.03159,0.05199,0.05199,0.08487,1.722e-09,1.722e-09,2.834e-09,3.353e-06,3.354e-06,3.456e-07,0,0,0,0,0,0,0,0
|
||||
15385000,0.705,0.0001736,-0.01272,0.7091,0.0006264,0.002691,-0.03889,-0.0002537,-0.0007484,-365.5,-1.221e-05,-6.143e-05,1.239e-06,-5.507e-05,4.03e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002038,0.0001634,0.0001632,0.0001925,0.03677,0.03677,0.03025,0.04547,0.04547,0.08304,1.598e-09,1.599e-09,2.763e-09,3.333e-06,3.334e-06,3.235e-07,0,0,0,0,0,0,0,0
|
||||
15485000,0.7049,0.0001872,-0.01272,0.7092,0.001623,0.002105,-0.03852,-0.0001464,-0.0005267,-365.5,-1.222e-05,-6.142e-05,8.627e-07,-5.505e-05,4.028e-05,-0.001199,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002031,0.0001671,0.0001669,0.0001918,0.04129,0.04129,0.03054,0.05183,0.05183,0.08396,1.598e-09,1.599e-09,2.693e-09,3.333e-06,3.334e-06,3.154e-07,0,0,0,0,0,0,0,0
|
||||
15585000,0.7048,0.0001717,-0.01268,0.7093,0.0002347,0.001728,-0.03611,-0.002077,-0.0005369,-365.5,-1.232e-05,-6.146e-05,7.065e-07,-5.562e-05,4.146e-05,-0.001204,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002024,0.0001606,0.0001604,0.0001911,0.03643,0.03643,0.02925,0.04536,0.04536,0.08217,1.478e-09,1.479e-09,2.626e-09,3.313e-06,3.313e-06,2.955e-07,0,0,0,0,0,0,0,0
|
||||
15685000,0.7049,0.0001768,-0.0127,0.7092,0.000385,0.001527,-0.03661,-0.002068,-0.0003684,-365.5,-1.232e-05,-6.146e-05,7.747e-07,-5.563e-05,4.147e-05,-0.001205,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002017,0.0001641,0.000164,0.0001904,0.04088,0.04088,0.02948,0.05169,0.05169,0.08302,1.478e-09,1.479e-09,2.561e-09,3.313e-06,3.313e-06,2.879e-07,0,0,0,0,0,0,0,0
|
||||
15785000,0.7049,0.0001206,-0.0127,0.7092,0.001075,-0.0007442,-0.03722,-0.001679,-0.001705,-365.5,-1.232e-05,-6.167e-05,8.572e-07,-5.858e-05,4.154e-05,-0.001206,0.2083,0.00204,0.4353,0,0,0,0,0,0.000201,0.0001575,0.0001574,0.0001897,0.03609,0.03609,0.02824,0.04527,0.04527,0.08128,1.362e-09,1.363e-09,2.497e-09,3.291e-06,3.292e-06,2.699e-07,0,0,0,0,0,0,0,0
|
||||
15885000,0.7049,7.297e-05,-0.0127,0.7092,0.002004,-0.00119,-0.03653,-0.001497,-0.001812,-365.5,-1.232e-05,-6.167e-05,7.861e-07,-5.86e-05,4.156e-05,-0.001207,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002013,0.0001609,0.0001607,0.0001898,0.04046,0.04046,0.02879,0.05157,0.05157,0.08379,1.363e-09,1.363e-09,2.451e-09,3.291e-06,3.292e-06,2.647e-07,0,0,0,0,0,0,0,0
|
||||
15985000,0.705,-1.623e-05,-0.01268,0.7091,0.002155,-0.002601,-0.03268,-0.0013,-0.00279,-365.5,-1.234e-05,-6.184e-05,1.465e-06,-6.106e-05,4.231e-05,-0.001217,0.2083,0.00204,0.4353,0,0,0,0,0,0.0002006,0.0001543,0.0001542,0.0001891,0.03572,0.03572,0.02758,0.0452,0.0452,0.08203,1.252e-09,1.252e-09,2.39e-09,3.27e-06,3.27e-06,2.483e-07,0,0,0,0,0,0,0,0
|
||||
16085000,0.7051,-1.951e-05,-0.01269,0.709,0.003582,-0.002858,-0.0304,-0.001024,-0.003092,-365.5,-1.233e-05,-6.185e-05,1.834e-06,-6.136e-05,4.262e-05,-0.001223,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001998,0.0001575,0.0001573,0.0001884,0.04002,0.04002,0.02772,0.05147,0.05147,0.08278,1.252e-09,1.252e-09,2.331e-09,3.27e-06,3.27e-06,2.418e-07,0,0,0,0,0,0,0,0
|
||||
16185000,0.7052,-1.046e-05,-0.01266,0.7089,0.003881,-0.002617,-0.02826,-0.00101,-0.002535,-365.5,-1.239e-05,-6.179e-05,2.322e-06,-6.077e-05,4.391e-05,-0.00123,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001991,0.0001509,0.0001508,0.0001877,0.03533,0.03533,0.02657,0.04513,0.04513,0.08108,1.147e-09,1.147e-09,2.274e-09,3.248e-06,3.249e-06,2.271e-07,0,0,0,0,0,0,0,0
|
||||
16285000,0.7054,-6.579e-07,-0.01267,0.7087,0.005631,-0.003396,-0.02904,-0.0005367,-0.002833,-365.5,-1.238e-05,-6.181e-05,2.944e-06,-6.11e-05,4.424e-05,-0.00123,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001984,0.0001539,0.0001537,0.000187,0.03953,0.03953,0.02667,0.05138,0.05138,0.08176,1.147e-09,1.147e-09,2.219e-09,3.248e-06,3.249e-06,2.211e-07,0,0,0,0,0,0,0,0
|
||||
16385000,0.7054,-2.133e-05,-0.01268,0.7087,0.004888,-0.004035,-0.02769,-0.000629,-0.002266,-365.5,-1.248e-05,-6.172e-05,2.832e-06,-5.991e-05,4.563e-05,-0.001235,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001977,0.0001475,0.0001473,0.0001863,0.0349,0.0349,0.02558,0.04507,0.04507,0.08011,1.048e-09,1.048e-09,2.165e-09,3.227e-06,3.228e-06,2.078e-07,0,0,0,0,0,0,0,0
|
||||
16485000,0.7054,-2.179e-05,-0.01263,0.7087,0.004007,-0.0037,-0.02986,-0.0002094,-0.00265,-365.5,-1.248e-05,-6.172e-05,2.841e-06,-5.988e-05,4.56e-05,-0.001233,0.2083,0.00204,0.4353,0,0,0,0,0,0.000197,0.0001502,0.0001501,0.0001856,0.03899,0.03899,0.02565,0.05129,0.05129,0.08074,1.048e-09,1.048e-09,2.113e-09,3.227e-06,3.228e-06,2.023e-07,0,0,0,0,0,0,0,0
|
||||
16585000,0.7055,0.0002052,-0.01259,0.7086,0.0008016,-0.001465,-0.03059,-0.002905,0.0005028,-365.5,-1.286e-05,-6.131e-05,3.234e-06,-5.342e-05,5.143e-05,-0.001235,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001972,0.000144,0.0001438,0.0001857,0.03443,0.03443,0.02492,0.04501,0.04501,0.08074,9.558e-10,9.56e-10,2.074e-09,3.206e-06,3.207e-06,1.917e-07,0,0,0,0,0,0,0,0
|
||||
16685000,0.7055,0.0002026,-0.01257,0.7086,0.001078,-0.001293,-0.02835,-0.002799,0.0003693,-365.5,-1.286e-05,-6.131e-05,2.981e-06,-5.353e-05,5.157e-05,-0.001242,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001965,0.0001465,0.0001464,0.000185,0.03842,0.03842,0.02497,0.0512,0.0512,0.08133,9.558e-10,9.561e-10,2.025e-09,3.206e-06,3.207e-06,1.866e-07,0,0,0,0,0,0,0,0
|
||||
16785000,0.7055,0.0003118,-0.01255,0.7086,-0.001993,0.000721,-0.02753,-0.004981,0.002895,-365.5,-1.317e-05,-6.097e-05,3.029e-06,-4.819e-05,5.64e-05,-0.001246,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001958,0.0001405,0.0001403,0.0001843,0.03391,0.03391,0.02396,0.04495,0.04495,0.07972,8.703e-10,8.705e-10,1.977e-09,3.186e-06,3.187e-06,1.758e-07,0,0,0,0,0,0,0,0
|
||||
16885000,0.7055,0.0003247,-0.0125,0.7086,-0.002329,0.001429,-0.02596,-0.005184,0.002965,-365.5,-1.317e-05,-6.097e-05,2.961e-06,-4.825e-05,5.648e-05,-0.00125,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001951,0.0001428,0.0001427,0.0001836,0.03779,0.03779,0.02398,0.05112,0.05112,0.08026,8.704e-10,8.706e-10,1.93e-09,3.186e-06,3.187e-06,1.711e-07,0,0,0,0,0,0,0,0
|
||||
16985000,0.7054,0.0002627,-0.0124,0.7087,-0.001971,-0.0007784,-0.0253,-0.005498,0.001138,-365.5,-1.326e-05,-6.115e-05,2.72e-06,-5.118e-05,5.801e-05,-0.001251,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001944,0.000137,0.0001369,0.0001829,0.03335,0.03335,0.02303,0.04489,0.04489,0.07869,7.915e-10,7.917e-10,1.884e-09,3.167e-06,3.168e-06,1.614e-07,0,0,0,0,0,0,0,0
|
||||
17085000,0.7054,0.0002269,-0.01248,0.7087,-0.001262,-0.0002499,-0.02476,-0.005665,0.001067,-365.5,-1.326e-05,-6.115e-05,2.828e-06,-5.117e-05,5.799e-05,-0.001251,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001937,0.0001392,0.0001391,0.0001822,0.0371,0.0371,0.02303,0.05102,0.05102,0.07918,7.916e-10,7.918e-10,1.84e-09,3.167e-06,3.168e-06,1.571e-07,0,0,0,0,0,0,0,0
|
||||
17185000,0.7055,0.0002231,-0.01241,0.7086,-0.0007034,-9.496e-05,-0.02553,-0.005895,-0.0003369,-365.5,-1.334e-05,-6.131e-05,3.053e-06,-5.354e-05,5.952e-05,-0.001248,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001938,0.0001336,0.0001335,0.0001823,0.03275,0.03275,0.02242,0.04483,0.04483,0.07922,7.194e-10,7.195e-10,1.808e-09,3.149e-06,3.15e-06,1.494e-07,0,0,0,0,0,0,0,0
|
||||
17285000,0.7055,0.0001942,-0.01237,0.7086,0.001387,0.0005916,-0.02173,-0.005859,-0.0003202,-365.5,-1.334e-05,-6.131e-05,3.072e-06,-5.362e-05,5.962e-05,-0.001255,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001931,0.0001357,0.0001356,0.0001817,0.03638,0.03638,0.0224,0.05092,0.05092,0.07967,7.194e-10,7.196e-10,1.765e-09,3.149e-06,3.15e-06,1.454e-07,0,0,0,0,0,0,0,0
|
||||
17385000,0.7056,0.0001526,-0.01231,0.7085,0.002284,-3.676e-05,-0.01952,-0.004872,-0.001525,-365.5,-1.333e-05,-6.145e-05,3.228e-06,-5.601e-05,5.953e-05,-0.00126,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001925,0.0001304,0.0001302,0.000181,0.03213,0.03213,0.02154,0.04476,0.04476,0.07816,6.535e-10,6.537e-10,1.725e-09,3.132e-06,3.133e-06,1.376e-07,0,0,0,0,0,0,0,0
|
||||
17485000,0.7056,0.0001508,-0.01231,0.7085,0.002779,-0.0007676,-0.01768,-0.004641,-0.001566,-365.5,-1.332e-05,-6.145e-05,3.309e-06,-5.603e-05,5.955e-05,-0.001263,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001918,0.0001323,0.0001322,0.0001803,0.03563,0.03563,0.02151,0.0508,0.0508,0.07856,6.536e-10,6.538e-10,1.685e-09,3.132e-06,3.133e-06,1.339e-07,0,0,0,0,0,0,0,0
|
||||
17585000,0.7057,7.278e-05,-0.01229,0.7084,0.004045,-0.001976,-0.01258,-0.003901,-0.002563,-365.5,-1.333e-05,-6.157e-05,3.438e-06,-5.791e-05,5.984e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001911,0.0001272,0.0001271,0.0001797,0.03148,0.03148,0.0207,0.04469,0.04469,0.0771,5.937e-10,5.938e-10,1.646e-09,3.116e-06,3.117e-06,1.268e-07,0,0,0,0,0,0,0,0
|
||||
17685000,0.7057,3.577e-05,-0.01227,0.7084,0.005127,-0.001625,-0.0129,-0.003435,-0.002742,-365.5,-1.333e-05,-6.157e-05,3.604e-06,-5.789e-05,5.982e-05,-0.001272,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001904,0.000129,0.0001289,0.000179,0.03487,0.03487,0.02066,0.05068,0.05068,0.07747,5.937e-10,5.939e-10,1.609e-09,3.116e-06,3.117e-06,1.235e-07,0,0,0,0,0,0,0,0
|
||||
17785000,0.7059,-5.325e-05,-0.01229,0.7082,0.007602,-0.001587,-0.0129,-0.002305,-0.002303,-365.5,-1.318e-05,-6.155e-05,4.221e-06,-5.777e-05,5.772e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001897,0.0001243,0.0001241,0.0001784,0.03082,0.03082,0.01989,0.04461,0.04461,0.07606,5.394e-10,5.396e-10,1.572e-09,3.101e-06,3.102e-06,1.171e-07,0,0,0,0,0,0,0,0
|
||||
17885000,0.7059,-4.671e-05,-0.01228,0.7082,0.009097,-0.002562,-0.01214,-0.001479,-0.00248,-365.5,-1.318e-05,-6.155e-05,4.299e-06,-5.781e-05,5.777e-05,-0.001272,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001898,0.0001259,0.0001258,0.0001784,0.03408,0.03408,0.02009,0.05054,0.05054,0.07787,5.395e-10,5.396e-10,1.546e-09,3.101e-06,3.102e-06,1.148e-07,0,0,0,0,0,0,0,0
|
||||
17985000,0.706,-0.0001009,-0.01229,0.7081,0.01089,-0.004192,-0.01008,-0.0007725,-0.002102,-365.5,-1.311e-05,-6.151e-05,4.465e-06,-5.715e-05,5.654e-05,-0.001274,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001892,0.0001214,0.0001213,0.0001778,0.03015,0.03015,0.01936,0.04451,0.04451,0.07646,4.904e-10,4.905e-10,1.511e-09,3.087e-06,3.088e-06,1.09e-07,0,0,0,0,0,0,0,0
|
||||
18085000,0.7059,-0.000101,-0.0123,0.7082,0.0115,-0.004701,-0.008268,0.0003563,-0.002581,-365.5,-1.311e-05,-6.15e-05,4.141e-06,-5.7e-05,5.641e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001885,0.000123,0.0001228,0.0001772,0.03329,0.03329,0.0193,0.0504,0.0504,0.07676,4.905e-10,4.906e-10,1.477e-09,3.087e-06,3.088e-06,1.062e-07,0,0,0,0,0,0,0,0
|
||||
18185000,0.706,-0.0001283,-0.01228,0.7081,0.01219,-0.003707,-0.006599,0.001237,-0.002007,-365.5,-1.313e-05,-6.144e-05,4.399e-06,-5.594e-05,5.687e-05,-0.001281,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001878,0.0001188,0.0001186,0.0001766,0.02947,0.02947,0.01862,0.04442,0.04442,0.07541,4.462e-10,4.462e-10,1.444e-09,3.074e-06,3.075e-06,1.01e-07,0,0,0,0,0,0,0,0
|
||||
18285000,0.7061,-0.0001922,-0.01224,0.708,0.0123,-0.004455,-0.005489,0.002458,-0.002407,-365.5,-1.313e-05,-6.144e-05,4.273e-06,-5.588e-05,5.682e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001872,0.0001202,0.0001201,0.0001759,0.03249,0.03249,0.01855,0.05024,0.05024,0.07566,4.463e-10,4.463e-10,1.412e-09,3.074e-06,3.075e-06,9.839e-08,0,0,0,0,0,0,0,0
|
||||
18385000,0.7062,-0.000178,-0.01226,0.7079,0.01364,-0.002616,-0.003922,0.003044,-0.00183,-365.5,-1.316e-05,-6.138e-05,4.61e-06,-5.498e-05,5.763e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001865,0.0001162,0.0001161,0.0001753,0.0288,0.0288,0.01791,0.04431,0.04431,0.07436,4.063e-10,4.063e-10,1.381e-09,3.062e-06,3.063e-06,9.372e-08,0,0,0,0,0,0,0,0
|
||||
18485000,0.7063,-0.0001527,-0.01225,0.7078,0.01467,-0.002655,-0.004046,0.004502,-0.002097,-365.5,-1.316e-05,-6.139e-05,4.794e-06,-5.507e-05,5.772e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001866,0.0001175,0.0001174,0.0001754,0.03171,0.03171,0.01806,0.05007,0.05007,0.076,4.064e-10,4.064e-10,1.359e-09,3.062e-06,3.063e-06,9.192e-08,0,0,0,0,0,0,0,0
|
||||
18585000,0.7064,-0.0001487,-0.01217,0.7077,0.01371,-0.002402,-0.004489,0.003454,-0.001728,-365.5,-1.332e-05,-6.135e-05,5.079e-06,-5.446e-05,6.078e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.000186,0.0001139,0.0001138,0.0001748,0.02813,0.02813,0.01744,0.04419,0.04419,0.0747,3.704e-10,3.704e-10,1.329e-09,3.051e-06,3.052e-06,8.766e-08,0,0,0,0,0,0,0,0
|
||||
18685000,0.7064,-0.000196,-0.01219,0.7077,0.01404,-0.003102,-0.006048,0.004844,-0.001963,-365.5,-1.333e-05,-6.135e-05,5.048e-06,-5.444e-05,6.075e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001853,0.0001151,0.000115,0.0001742,0.03093,0.03093,0.01737,0.04989,0.04989,0.0749,3.705e-10,3.705e-10,1.301e-09,3.051e-06,3.052e-06,8.544e-08,0,0,0,0,0,0,0,0
|
||||
18785000,0.7064,-0.0001552,-0.01216,0.7077,0.01271,-0.00286,-0.005219,0.003747,-0.001548,-365.5,-1.348e-05,-6.131e-05,4.926e-06,-5.355e-05,6.348e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001847,0.0001117,0.0001116,0.0001736,0.02746,0.02746,0.01679,0.04407,0.04407,0.07365,3.382e-10,3.382e-10,1.273e-09,3.041e-06,3.042e-06,8.161e-08,0,0,0,0,0,0,0,0
|
||||
18885000,0.7065,-0.0001529,-0.01213,0.7076,0.01337,-0.002461,-0.004675,0.005041,-0.001784,-365.5,-1.348e-05,-6.132e-05,5.306e-06,-5.371e-05,6.363e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.000184,0.0001128,0.0001127,0.000173,0.03015,0.03015,0.01672,0.04971,0.04971,0.07381,3.383e-10,3.383e-10,1.245e-09,3.041e-06,3.042e-06,7.957e-08,0,0,0,0,0,0,0,0
|
||||
18985000,0.7066,-0.000145,-0.01215,0.7075,0.01461,-0.00151,-0.005901,0.006325,-0.001437,-365.5,-1.344e-05,-6.129e-05,5.477e-06,-5.327e-05,6.306e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001834,0.0001096,0.0001095,0.0001724,0.0268,0.0268,0.01617,0.04394,0.04394,0.07261,3.092e-10,3.092e-10,1.219e-09,3.032e-06,3.032e-06,7.61e-08,0,0,0,0,0,0,0,0
|
||||
19085000,0.7066,-0.0001676,-0.01209,0.7075,0.01536,-0.001057,-0.002546,0.007801,-0.001538,-365.5,-1.344e-05,-6.129e-05,5.616e-06,-5.331e-05,6.312e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001828,0.0001106,0.0001105,0.0001718,0.02939,0.02939,0.0161,0.04951,0.04951,0.07275,3.093e-10,3.092e-10,1.193e-09,3.032e-06,3.032e-06,7.423e-08,0,0,0,0,0,0,0,0
|
||||
19185000,0.7066,-0.0001613,-0.012,0.7075,0.01522,-0.0008201,-0.003614,0.00858,-0.001267,-365.5,-1.344e-05,-6.128e-05,5.663e-06,-5.307e-05,6.306e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001829,0.0001077,0.0001076,0.0001718,0.02616,0.02616,0.01577,0.0438,0.0438,0.07291,2.831e-10,2.831e-10,1.174e-09,3.023e-06,3.024e-06,7.152e-08,0,0,0,0,0,0,0,0
|
||||
19285000,0.7066,-0.0001285,-0.01194,0.7075,0.0155,-0.001614,-0.001383,0.01009,-0.00138,-365.5,-1.344e-05,-6.127e-05,5.476e-06,-5.299e-05,6.3e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001822,0.0001086,0.0001085,0.0001713,0.02865,0.02865,0.0157,0.04931,0.04931,0.07303,2.832e-10,2.832e-10,1.15e-09,3.023e-06,3.024e-06,6.979e-08,0,0,0,0,0,0,0,0
|
||||
19385000,0.7067,-0.000126,-0.01188,0.7075,0.01327,-0.002347,0.00244,0.008136,-0.001156,-365.5,-1.361e-05,-6.125e-05,5.639e-06,-5.254e-05,6.618e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001816,0.0001059,0.0001058,0.0001707,0.02552,0.02552,0.01521,0.04366,0.04366,0.07188,2.597e-10,2.596e-10,1.126e-09,3.015e-06,3.016e-06,6.692e-08,0,0,0,0,0,0,0,0
|
||||
19485000,0.7068,-0.0001127,-0.01189,0.7073,0.01245,-0.00355,-0.000163,0.009397,-0.001465,-365.5,-1.361e-05,-6.126e-05,5.933e-06,-5.266e-05,6.627e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.000181,0.0001068,0.0001067,0.0001702,0.02793,0.02792,0.01514,0.0491,0.0491,0.07198,2.598e-10,2.597e-10,1.103e-09,3.015e-06,3.016e-06,6.533e-08,0,0,0,0,0,0,0,0
|
||||
19585000,0.7069,-4.654e-05,-0.01179,0.7072,0.01053,-0.004264,-0.0005166,0.00766,-0.001231,-365.5,-1.373e-05,-6.123e-05,6.293e-06,-5.211e-05,6.886e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001804,0.0001042,0.0001041,0.0001696,0.02491,0.02491,0.01468,0.04351,0.04351,0.07087,2.386e-10,2.386e-10,1.08e-09,3.008e-06,3.009e-06,6.272e-08,0,0,0,0,0,0,0,0
|
||||
19685000,0.7069,-5.66e-05,-0.01183,0.7073,0.01117,-0.006839,0.001207,0.008739,-0.001781,-365.5,-1.374e-05,-6.123e-05,6.114e-06,-5.206e-05,6.881e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001799,0.000105,0.0001049,0.0001691,0.02722,0.02722,0.01461,0.04888,0.04888,0.07095,2.387e-10,2.387e-10,1.058e-09,3.008e-06,3.009e-06,6.126e-08,0,0,0,0,0,0,0,0
|
||||
19785000,0.7069,1.607e-05,-0.01183,0.7072,0.008607,-0.007525,0.00158,0.007131,-0.001454,-365.5,-1.385e-05,-6.117e-05,6.171e-06,-5.095e-05,7.091e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001799,0.0001026,0.0001025,0.0001691,0.02431,0.02431,0.01434,0.04336,0.04336,0.07113,2.196e-10,2.196e-10,1.042e-09,3.001e-06,3.002e-06,5.924e-08,0,0,0,0,0,0,0,0
|
||||
19885000,0.7071,-2.912e-05,-0.01177,0.7071,0.007554,-0.008051,0.003073,0.00796,-0.002235,-365.5,-1.384e-05,-6.118e-05,6.585e-06,-5.084e-05,7.079e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001793,0.0001034,0.0001033,0.0001685,0.02653,0.02653,0.01427,0.04866,0.04866,0.0712,2.197e-10,2.197e-10,1.021e-09,3.001e-06,3.002e-06,5.788e-08,0,0,0,0,0,0,0,0
|
||||
19985000,0.7072,-5.097e-05,-0.01176,0.7069,0.0051,-0.008625,0.005067,0.006507,-0.001856,-365.5,-1.392e-05,-6.112e-05,6.937e-06,-4.973e-05,7.243e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001787,0.0001012,0.0001011,0.000168,0.02373,0.02373,0.01386,0.0432,0.0432,0.07013,2.026e-10,2.026e-10,1e-09,2.995e-06,2.996e-06,5.571e-08,0,0,0,0,0,0,0,0
|
||||
20085000,0.7074,-7.419e-05,-0.01172,0.7067,0.004739,-0.01057,0.005883,0.007004,-0.002796,-365.5,-1.391e-05,-6.113e-05,7.491e-06,-4.989e-05,7.258e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001782,0.0001019,0.0001018,0.0001675,0.02587,0.02587,0.01379,0.04843,0.04843,0.07018,2.027e-10,2.027e-10,9.802e-10,2.995e-06,2.996e-06,5.446e-08,0,0,0,0,0,0,0,0
|
||||
20185000,0.7075,3.991e-05,-0.01171,0.7067,0.00268,-0.01105,0.008441,0.004679,-0.002277,-365.5,-1.403e-05,-6.106e-05,7.684e-06,-4.815e-05,7.478e-05,-0.001293,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001776,9.985e-05,9.977e-05,0.000167,0.02316,0.02316,0.0134,0.04304,0.04304,0.06916,1.872e-10,1.872e-10,9.608e-10,2.989e-06,2.99e-06,5.248e-08,0,0,0,0,0,0,0,0
|
||||
20285000,0.7075,8.438e-06,-0.01169,0.7066,0.001707,-0.01287,0.006954,0.004896,-0.00347,-365.5,-1.403e-05,-6.106e-05,7.82e-06,-4.811e-05,7.472e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001771,0.0001005,0.0001005,0.0001664,0.02523,0.02523,0.01334,0.0482,0.0482,0.0692,1.873e-10,1.873e-10,9.418e-10,2.989e-06,2.99e-06,5.133e-08,0,0,0,0,0,0,0,0
|
||||
20385000,0.7076,3.592e-05,-0.01174,0.7066,-0.0008678,-0.01336,0.00939,0.002947,-0.002828,-365.5,-1.411e-05,-6.097e-05,7.763e-06,-4.623e-05,7.636e-05,-0.001294,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001765,9.861e-05,9.852e-05,0.0001659,0.02262,0.02262,0.01297,0.04288,0.04288,0.06821,1.734e-10,1.734e-10,9.233e-10,2.984e-06,2.985e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20485000,0.7076,7.314e-05,-0.01175,0.7065,-0.001241,-0.01449,0.009538,0.002832,-0.004214,-365.5,-1.411e-05,-6.097e-05,7.766e-06,-4.625e-05,7.637e-05,-0.001293,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001765,9.926e-05,9.917e-05,0.0001659,0.02461,0.02461,0.01305,0.04797,0.04797,0.06942,1.735e-10,1.735e-10,9.098e-10,2.984e-06,2.985e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20585000,0.7076,0.0001059,-0.01183,0.7065,-0.0009902,-0.01422,0.006799,0.002385,-0.003466,-365.5,-1.412e-05,-6.087e-05,7.592e-06,-4.449e-05,7.648e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.000176,9.745e-05,9.737e-05,0.0001654,0.0221,0.0221,0.0127,0.04271,0.04271,0.06844,1.609e-10,1.609e-10,8.921e-10,2.979e-06,2.98e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20685000,0.7076,0.0001258,-0.01184,0.7065,-0.0009026,-0.01581,0.008004,0.002285,-0.004948,-365.5,-1.412e-05,-6.087e-05,7.645e-06,-4.444e-05,7.645e-05,-0.001292,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001755,9.807e-05,9.798e-05,0.0001649,0.02403,0.02403,0.01264,0.04774,0.04774,0.06845,1.61e-10,1.61e-10,8.749e-10,2.979e-06,2.98e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20785000,0.7077,0.0001615,-0.01185,0.7064,-0.002071,-0.01455,0.008123,0.001888,-0.004028,-365.5,-1.412e-05,-6.077e-05,7.698e-06,-4.243e-05,7.641e-05,-0.001291,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001749,9.638e-05,9.629e-05,0.0001644,0.0216,0.0216,0.01232,0.04254,0.04254,0.06751,1.496e-10,1.496e-10,8.58e-10,2.975e-06,2.976e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20885000,0.7078,0.0001464,-0.01184,0.7063,-0.002525,-0.01724,0.007778,0.001669,-0.005612,-365.5,-1.412e-05,-6.077e-05,7.94e-06,-4.234e-05,7.629e-05,-0.00129,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001744,9.696e-05,9.687e-05,0.0001639,0.02346,0.02346,0.01226,0.0475,0.0475,0.06751,1.497e-10,1.497e-10,8.417e-10,2.975e-06,2.976e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20985000,0.7078,0.00016,-0.01189,0.7063,-0.002726,-0.01763,0.008518,0.003162,-0.004672,-365.5,-1.407e-05,-6.066e-05,7.957e-06,-4.023e-05,7.532e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001739,9.538e-05,9.53e-05,0.0001635,0.02112,0.02112,0.01195,0.04237,0.04237,0.0666,1.394e-10,1.394e-10,8.257e-10,2.971e-06,2.971e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21085000,0.708,0.0001454,-0.01188,0.7061,-0.002689,-0.02035,0.00938,0.002878,-0.006574,-365.5,-1.407e-05,-6.067e-05,8.109e-06,-4.016e-05,7.524e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001739,9.593e-05,9.584e-05,0.0001635,0.02291,0.02291,0.01203,0.04727,0.04727,0.06773,1.395e-10,1.395e-10,8.14e-10,2.971e-06,2.971e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21185000,0.708,0.0001852,-0.01191,0.7061,-0.002046,-0.01916,0.008905,0.004229,-0.005453,-365.5,-1.402e-05,-6.054e-05,8.006e-06,-3.785e-05,7.439e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001734,9.446e-05,9.437e-05,0.000163,0.02065,0.02065,0.01174,0.0422,0.0422,0.06682,1.301e-10,1.301e-10,7.987e-10,2.967e-06,2.968e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21285000,0.7081,0.0002184,-0.01187,0.706,-0.002784,-0.02132,0.01039,0.003987,-0.007465,-365.5,-1.402e-05,-6.055e-05,8.242e-06,-3.773e-05,7.426e-05,-0.001288,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001729,9.497e-05,9.489e-05,0.0001625,0.02239,0.02239,0.0117,0.04703,0.04703,0.06681,1.302e-10,1.302e-10,7.838e-10,2.967e-06,2.968e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21385000,0.7081,0.0002778,-0.0119,0.706,-0.003577,-0.02059,0.01067,0.003333,-0.005232,-365.5,-1.402e-05,-6.038e-05,8.112e-06,-3.44e-05,7.418e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001724,9.36e-05,9.352e-05,0.000162,0.0202,0.0202,0.01143,0.04202,0.04202,0.06594,1.218e-10,1.218e-10,7.692e-10,2.963e-06,2.964e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21485000,0.7082,0.0002884,-0.01187,0.7059,-0.004017,-0.02201,0.01072,0.002921,-0.007348,-365.5,-1.402e-05,-6.038e-05,8.219e-06,-3.436e-05,7.413e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001719,9.409e-05,9.4e-05,0.0001616,0.02189,0.02189,0.01139,0.0468,0.0468,0.06592,1.219e-10,1.219e-10,7.55e-10,2.963e-06,2.964e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21585000,0.7082,0.0003054,-0.01187,0.7059,-0.004749,-0.01898,0.01063,0.002412,-0.005111,-365.5,-1.401e-05,-6.022e-05,8.13e-06,-3.117e-05,7.384e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001714,9.28e-05,9.272e-05,0.0001611,0.01977,0.01978,0.01114,0.04185,0.04185,0.06508,1.142e-10,1.142e-10,7.412e-10,2.96e-06,2.961e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21685000,0.7082,0.0003033,-0.01191,0.7059,-0.004647,-0.02046,0.01241,0.001937,-0.0071,-365.5,-1.401e-05,-6.022e-05,8.121e-06,-3.118e-05,7.385e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001709,9.327e-05,9.318e-05,0.0001607,0.0214,0.0214,0.01111,0.04657,0.04657,0.06505,1.143e-10,1.143e-10,7.277e-10,2.96e-06,2.961e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21785000,0.7082,0.0003312,-0.01194,0.706,-0.005332,-0.01552,0.01142,0.0006166,-0.002913,-365.5,-1.404e-05,-5.999e-05,7.983e-06,-2.657e-05,7.43e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001709,9.207e-05,9.198e-05,0.0001607,0.01936,0.01936,0.01098,0.04168,0.04168,0.0653,1.073e-10,1.073e-10,7.178e-10,2.957e-06,2.958e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21885000,0.7082,0.0003344,-0.01189,0.7059,-0.005033,-0.01591,0.01236,9.565e-05,-0.004481,-365.5,-1.404e-05,-5.999e-05,7.909e-06,-2.662e-05,7.434e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001704,9.25e-05,9.242e-05,0.0001602,0.02095,0.02095,0.01096,0.04633,0.04633,0.06527,1.074e-10,1.074e-10,7.048e-10,2.957e-06,2.958e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21985000,0.7082,0.000369,-0.01196,0.7059,-0.005756,-0.01328,0.01294,-0.0009002,-0.0008484,-365.5,-1.406e-05,-5.98e-05,7.931e-06,-2.265e-05,7.455e-05,-0.001279,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001699,9.138e-05,9.129e-05,0.0001598,0.01907,0.01907,0.01074,0.0415,0.0415,0.06447,1.01e-10,1.01e-10,6.921e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22085000,0.7082,0.0003792,-0.01194,0.7059,-0.006024,-0.01254,0.0116,-0.001468,-0.00213,-365.5,-1.406e-05,-5.98e-05,7.868e-06,-2.265e-05,7.455e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001695,9.179e-05,9.171e-05,0.0001593,0.02147,0.02147,0.01072,0.04613,0.04613,0.06444,1.011e-10,1.011e-10,6.798e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22185000,0.7083,0.0003663,-0.01194,0.7058,-0.005631,-0.01138,0.01266,-0.001242,-0.001771,-365.5,-1.403e-05,-5.975e-05,7.88e-06,-2.265e-05,7.455e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.000169,8.988e-05,8.98e-05,0.0001589,0.02075,0.02075,0.01052,0.04137,0.04137,0.06367,9.511e-11,9.51e-11,6.677e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22285000,0.7082,0.0004033,-0.01198,0.7059,-0.007008,-0.01225,0.01283,-0.001873,-0.002959,-365.5,-1.404e-05,-5.974e-05,7.746e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001685,9.027e-05,9.019e-05,0.0001585,0.02423,0.02423,0.01051,0.04605,0.04605,0.06364,9.52e-11,9.52e-11,6.559e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22385000,0.7083,0.0003963,-0.01201,0.7058,-0.007538,-0.01123,0.01452,-0.00161,-0.002501,-365.5,-1.401e-05,-5.969e-05,7.782e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001685,8.667e-05,8.659e-05,0.0001585,0.02397,0.02397,0.01042,0.04132,0.04132,0.06391,8.952e-11,8.952e-11,6.473e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22485000,0.7083,0.000406,-0.01197,0.7058,-0.008056,-0.01113,0.016,-0.002386,-0.003645,-365.5,-1.401e-05,-5.969e-05,7.78e-06,-2.265e-05,7.455e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001681,8.702e-05,8.694e-05,0.0001581,0.02836,0.02836,0.01042,0.04612,0.04612,0.06388,8.962e-11,8.961e-11,6.36e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22585000,0.7083,0.0003898,-0.01204,0.7058,-0.007411,-0.009626,0.01519,-0.002715,-0.002026,-365.5,-1.396e-05,-5.961e-05,7.794e-06,-2.265e-05,7.455e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001676,8.156e-05,8.148e-05,0.0001576,0.02799,0.02799,0.01024,0.0414,0.0414,0.06314,8.44e-11,8.44e-11,6.25e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22685000,0.7084,0.0004294,-0.01207,0.7057,-0.008514,-0.009499,0.01658,-0.003494,-0.002988,-365.5,-1.396e-05,-5.961e-05,7.808e-06,-2.265e-05,7.455e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001672,8.187e-05,8.179e-05,0.0001572,0.03307,0.03307,0.01025,0.04642,0.04642,0.06312,8.45e-11,8.45e-11,6.142e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22785000,0.7083,0.0004216,-0.01209,0.7058,-0.00858,-0.007434,0.01745,-0.004667,-0.002409,-365.5,-1.396e-05,-5.956e-05,7.401e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001667,7.48e-05,7.472e-05,0.0001568,0.03205,0.03205,0.01008,0.04164,0.04164,0.06241,7.992e-11,7.992e-11,6.036e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22885000,0.7083,0.0004358,-0.01207,0.7058,-0.009738,-0.007142,0.01916,-0.005574,-0.003138,-365.5,-1.396e-05,-5.956e-05,7.316e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001663,7.506e-05,7.498e-05,0.0001564,0.03755,0.03754,0.01009,0.04693,0.04693,0.06239,8.002e-11,8.002e-11,5.933e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22985000,0.7083,0.0004201,-0.01211,0.7058,-0.009323,-0.006641,0.02026,-0.006318,-0.002571,-365.5,-1.395e-05,-5.954e-05,7.273e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001659,6.694e-05,6.686e-05,0.000156,0.03551,0.0355,0.009935,0.04201,0.04201,0.06171,7.62e-11,7.62e-11,5.833e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23085000,0.7083,0.0003834,-0.01206,0.7058,-0.00974,-0.006519,0.02046,-0.007274,-0.003215,-365.5,-1.395e-05,-5.953e-05,7.181e-06,-2.265e-05,7.455e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001659,6.715e-05,6.707e-05,0.000156,0.04117,0.04116,0.01005,0.0476,0.0476,0.06266,7.629e-11,7.63e-11,5.759e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23185000,0.7083,0.0005243,-0.01198,0.7058,-0.01281,-0.006483,0.02186,-0.01128,-0.002615,-365.5,-1.401e-05,-5.951e-05,7.093e-06,-2.265e-05,7.455e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001654,5.865e-05,5.858e-05,0.0001556,0.03799,0.03798,0.009901,0.04249,0.04248,0.06199,7.326e-11,7.327e-11,5.662e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23285000,0.7083,0.00046,-0.01199,0.7058,-0.01338,-0.007782,0.02247,-0.01259,-0.003342,-365.5,-1.401e-05,-5.951e-05,7.036e-06,-2.265e-05,7.455e-05,-0.001277,0.2083,0.00204,0.4353,0,0,0,0,0,0.000165,5.882e-05,5.875e-05,0.0001552,0.04356,0.04355,0.009929,0.04836,0.04836,0.06198,7.336e-11,7.337e-11,5.568e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23385000,0.7083,0.0006031,-0.01193,0.7058,-0.01558,-0.007032,0.02114,-0.01571,-0.002643,-365.5,-1.404e-05,-5.948e-05,6.971e-06,-2.265e-05,7.455e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001646,5.055e-05,5.048e-05,0.0001549,0.03935,0.03934,0.009789,0.043,0.043,0.06133,7.106e-11,7.107e-11,5.475e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23485000,0.7084,0.002746,-0.00977,0.7058,-0.02245,-0.007761,-0.01073,-0.01756,-0.003388,-365.5,-1.404e-05,-5.948e-05,7.035e-06,-2.265e-05,7.455e-05,-0.001274,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001642,5.07e-05,5.061e-05,0.0001545,0.04485,0.04485,0.009822,0.04911,0.04911,0.06132,7.116e-11,7.117e-11,5.385e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23585000,0.708,0.00811,-0.002276,0.7062,-0.03048,-0.00444,-0.04242,-0.01567,-0.001257,-365.5,-1.399e-05,-5.945e-05,6.88e-06,-2.265e-05,7.455e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001637,4.31e-05,4.296e-05,0.0001542,0.03997,0.03997,0.009691,0.04351,0.04351,0.0607,6.949e-11,6.95e-11,5.296e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23685000,0.7073,0.007979,0.003971,0.7068,-0.06102,-0.01212,-0.09111,-0.02014,-0.002006,-365.5,-1.399e-05,-5.945e-05,6.838e-06,-2.265e-05,7.455e-05,-0.001274,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001636,4.321e-05,4.307e-05,0.0001542,0.04522,0.04521,0.009814,0.04981,0.04981,0.06164,6.959e-11,6.96e-11,5.232e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23785000,0.707,0.005016,0.0007636,0.7072,-0.08013,-0.02097,-0.1448,-0.0172,-0.0003894,-365.5,-1.389e-05,-5.942e-05,6.811e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001632,3.639e-05,3.627e-05,0.0001539,0.03984,0.03983,0.009685,0.04398,0.04398,0.06102,6.841e-11,6.843e-11,5.147e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23885000,0.7068,0.002316,-0.0053,0.7074,-0.097,-0.0299,-0.198,-0.02618,-0.00298,-365.5,-1.389e-05,-5.942e-05,6.809e-06,-2.265e-05,7.455e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001628,3.647e-05,3.637e-05,0.0001535,0.04469,0.04469,0.009727,0.05039,0.05039,0.06103,6.851e-11,6.853e-11,5.063e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23985000,0.7067,0.0008019,-0.01012,0.7074,-0.09575,-0.03276,-0.2509,-0.02927,-0.006093,-365.5,-1.383e-05,-5.942e-05,6.736e-06,-2.265e-05,7.455e-05,-0.001275,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001624,3.061e-05,3.053e-05,0.0001532,0.03897,0.03896,0.00961,0.04437,0.04437,0.06044,6.771e-11,6.773e-11,4.982e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24085000,0.7068,0.002005,-0.009099,0.7074,-0.09719,-0.0327,-0.2988,-0.03888,-0.009372,-365.6,-1.383e-05,-5.942e-05,6.805e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.000162,3.069e-05,3.06e-05,0.0001528,0.04337,0.04337,0.009659,0.05083,0.05083,0.06045,6.781e-11,6.783e-11,4.902e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24185000,0.7068,0.003085,-0.006845,0.7074,-0.09684,-0.03237,-0.3463,-0.03982,-0.01115,-365.6,-1.377e-05,-5.941e-05,6.795e-06,-2.265e-05,7.455e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001616,2.576e-05,2.565e-05,0.0001525,0.03757,0.03757,0.009549,0.04466,0.04466,0.05988,6.729e-11,6.731e-11,4.824e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24285000,0.7066,0.003606,-0.005931,0.7075,-0.1069,-0.03617,-0.4012,-0.05,-0.01459,-365.6,-1.377e-05,-5.941e-05,6.605e-06,-2.265e-05,7.455e-05,-0.001279,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001612,2.583e-05,2.572e-05,0.0001521,0.04156,0.04156,0.009601,0.05111,0.05111,0.05991,6.738e-11,6.74e-11,4.748e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24385000,0.7066,0.003606,-0.006127,0.7076,-0.1145,-0.04675,-0.4529,-0.05661,-0.02829,-365.7,-1.374e-05,-5.946e-05,6.55e-06,-2.265e-05,7.455e-05,-0.00128,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001612,2.172e-05,2.161e-05,0.0001521,0.03589,0.03588,0.009578,0.04486,0.04486,0.06025,6.705e-11,6.707e-11,4.692e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24485000,0.7066,0.00445,-0.00216,0.7076,-0.1273,-0.05158,-0.5037,-0.06864,-0.03317,-365.7,-1.374e-05,-5.946e-05,6.437e-06,-2.265e-05,7.455e-05,-0.001281,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001608,2.179e-05,2.167e-05,0.0001518,0.03946,0.03945,0.009634,0.05125,0.05125,0.06029,6.715e-11,6.717e-11,4.619e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24585000,0.7067,0.004888,0.001605,0.7075,-0.1389,-0.06391,-0.5532,-0.07169,-0.04336,-365.8,-1.369e-05,-5.949e-05,6.549e-06,-2.265e-05,7.455e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001604,1.841e-05,1.828e-05,0.0001515,0.03403,0.03403,0.00953,0.04496,0.04496,0.05974,6.695e-11,6.697e-11,4.547e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24685000,0.7067,0.004938,0.002677,0.7075,-0.1632,-0.07724,-0.6328,-0.08676,-0.05043,-365.8,-1.369e-05,-5.949e-05,6.622e-06,-2.265e-05,7.455e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.00016,1.848e-05,1.834e-05,0.0001511,0.03732,0.03731,0.009587,0.05124,0.05124,0.05979,6.705e-11,6.707e-11,4.477e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24785000,0.7066,0.004641,0.001319,0.7076,-0.178,-0.08814,-0.7206,-0.0934,-0.06049,-365.9,-1.365e-05,-5.952e-05,6.454e-06,-2.265e-05,7.455e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001597,1.57e-05,1.556e-05,0.0001508,0.03228,0.03227,0.009485,0.04497,0.04497,0.05926,6.694e-11,6.696e-11,4.408e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24885000,0.7066,0.006289,0.002847,0.7076,-0.1992,-0.09909,-0.7435,-0.1122,-0.06984,-366,-1.365e-05,-5.952e-05,6.333e-06,-2.265e-05,7.455e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001593,1.578e-05,1.563e-05,0.0001505,0.03508,0.03506,0.009546,0.05113,0.05113,0.05931,6.704e-11,6.706e-11,4.34e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24985000,0.7065,0.008145,0.004508,0.7077,-0.2122,-0.1038,-0.7984,-0.1137,-0.07598,-366,-1.36e-05,-5.953e-05,6.159e-06,-2.265e-05,7.455e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001592,1.352e-05,1.335e-05,0.0001505,0.03032,0.0303,0.009529,0.0449,0.0449,0.05968,6.699e-11,6.702e-11,4.291e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25085000,0.7064,0.008537,0.004011,0.7077,-0.2419,-0.1143,-0.8485,-0.1364,-0.08688,-366.1,-1.36e-05,-5.953e-05,6.034e-06,-2.265e-05,7.455e-05,-0.001284,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001589,1.36e-05,1.342e-05,0.0001501,0.03289,0.03287,0.009592,0.05091,0.05091,0.05975,6.709e-11,6.711e-11,4.226e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25185000,0.7064,0.007965,0.002545,0.7077,-0.2661,-0.1297,-0.8983,-0.1573,-0.1147,-366.2,-1.358e-05,-5.958e-05,6.029e-06,-2.265e-05,7.455e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001585,1.174e-05,1.156e-05,0.0001498,0.02848,0.02847,0.009497,0.04476,0.04475,0.05924,6.709e-11,6.711e-11,4.162e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25285000,0.7065,0.009786,0.008998,0.7076,-0.294,-0.1387,-0.9525,-0.1852,-0.1281,-366.3,-1.358e-05,-5.958e-05,6.015e-06,-2.265e-05,7.455e-05,-0.001286,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001581,1.183e-05,1.164e-05,0.0001495,0.03081,0.03078,0.009563,0.0506,0.0506,0.05931,6.719e-11,6.721e-11,4.1e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25385000,0.7065,0.01115,0.01563,0.7074,-0.3215,-0.1588,-1.001,-0.1971,-0.1488,-366.4,-1.354e-05,-5.961e-05,6.025e-06,-2.265e-05,7.455e-05,-0.001289,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001577,1.033e-05,1.013e-05,0.0001492,0.02676,0.02673,0.009467,0.04455,0.04455,0.05881,6.722e-11,6.724e-11,4.038e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25485000,0.7066,0.01144,0.01714,0.7074,-0.3694,-0.1819,-1.054,-0.2316,-0.1658,-366.5,-1.354e-05,-5.961e-05,6.059e-06,-2.265e-05,7.455e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001574,1.041e-05,1.021e-05,0.0001489,0.02886,0.02882,0.00953,0.05023,0.05023,0.05889,6.731e-11,6.734e-11,3.979e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25585000,0.7066,0.01084,0.01519,0.7073,-0.4092,-0.2137,-1.109,-0.2601,-0.2052,-366.6,-1.351e-05,-5.967e-05,6.07e-06,-2.265e-05,7.455e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.000157,9.145e-06,8.944e-06,0.0001486,0.02517,0.02513,0.009435,0.04429,0.04429,0.05841,6.736e-11,6.739e-11,3.92e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25685000,0.7066,0.01425,0.02148,0.7072,-0.4565,-0.2337,-1.161,-0.3033,-0.2276,-366.7,-1.351e-05,-5.967e-05,6.049e-06,-2.265e-05,7.455e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001569,9.282e-06,9.06e-06,0.0001485,0.02708,0.02702,0.00958,0.0498,0.0498,0.05937,6.746e-11,6.749e-11,3.877e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25785000,0.7065,0.01696,0.02805,0.7069,-0.4984,-0.2589,-1.208,-0.3189,-0.256,-366.9,-1.346e-05,-5.971e-05,6.113e-06,-2.265e-05,7.455e-05,-0.001287,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001565,8.303e-06,8.071e-06,0.0001482,0.0237,0.02363,0.009483,0.044,0.04399,0.05889,6.753e-11,6.756e-11,3.82e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25885000,0.7066,0.01736,0.02873,0.7068,-0.5681,-0.2883,-1.257,-0.3723,-0.2834,-367,-1.346e-05,-5.971e-05,6.233e-06,-2.265e-05,7.455e-05,-0.001285,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001561,8.399e-06,8.163e-06,0.0001479,0.02545,0.02536,0.009545,0.04933,0.04932,0.05899,6.763e-11,6.765e-11,3.765e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25985000,0.7065,0.0162,0.02545,0.7071,-0.6211,-0.3272,-1.313,-0.4129,-0.3409,-367.1,-1.344e-05,-5.977e-05,6.271e-06,-2.265e-05,7.455e-05,-0.001283,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001558,7.513e-06,7.274e-06,0.0001476,0.02237,0.02228,0.00945,0.04366,0.04366,0.05852,6.77e-11,6.773e-11,3.71e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26085000,0.7027,0.02078,0.03484,0.7103,-0.6863,-0.3537,-1.339,-0.4782,-0.375,-367.3,-1.344e-05,-5.977e-05,6.079e-06,-2.265e-05,7.455e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.000155,7.706e-06,7.453e-06,0.0001476,0.02396,0.02383,0.009516,0.04883,0.04882,0.05861,6.78e-11,6.783e-11,3.656e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26185000,0.7008,0.02314,0.0446,0.7116,-0.7344,-0.3872,-1.308,-0.5009,-0.417,-367.4,-1.339e-05,-5.98e-05,6.102e-06,-2.265e-05,7.455e-05,-0.001282,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001542,7.078e-06,6.852e-06,0.0001473,0.02106,0.02092,0.009419,0.0433,0.04329,0.05816,6.788e-11,6.791e-11,3.604e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26285000,0.7009,0.02416,0.04727,0.7113,-0.8266,-0.4287,-1.296,-0.5789,-0.4578,-367.5,-1.339e-05,-5.98e-05,6.031e-06,-2.265e-05,7.455e-05,-0.001281,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001542,7.209e-06,6.989e-06,0.0001473,0.02251,0.02231,0.009559,0.04829,0.04827,0.05912,6.798e-11,6.801e-11,3.565e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26385000,0.7018,0.02303,0.0438,0.7106,-0.9064,-0.4886,-1.3,-0.6464,-0.5458,-367.7,-1.337e-05,-5.986e-05,6.085e-06,-2.265e-05,7.455e-05,-0.001278,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001539,6.566e-06,6.334e-06,0.0001469,0.01994,0.01973,0.009461,0.04291,0.0429,0.05866,6.807e-11,6.81e-11,3.514e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26485000,0.7023,0.03052,0.05866,0.7088,-0.9996,-0.5274,-1.304,-0.7415,-0.5966,-367.8,-1.337e-05,-5.986e-05,6.036e-06,-2.265e-05,7.455e-05,-0.001276,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001534,6.9e-06,6.687e-06,0.0001463,0.02132,0.02104,0.009524,0.04774,0.04771,0.05877,6.817e-11,6.82e-11,3.464e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26585000,0.7026,0.03697,0.07528,0.7067,-1.091,-0.5815,-1.292,-0.7834,-0.6623,-367.9,-1.33e-05,-5.987e-05,5.747e-06,-2.265e-05,7.455e-05,-0.001273,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001526,6.677e-06,6.543e-06,0.0001455,0.01901,0.01869,0.00942,0.04251,0.04248,0.05832,6.825e-11,6.828e-11,3.414e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26685000,0.7035,0.03842,0.07874,0.7053,-1.236,-0.6435,-1.282,-0.8998,-0.7235,-368.1,-1.33e-05,-5.987e-05,5.819e-06,-2.265e-05,7.455e-05,-0.001271,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001523,6.845e-06,6.74e-06,0.000145,0.02039,0.01994,0.009472,0.04719,0.04714,0.05843,6.835e-11,6.838e-11,3.367e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26785000,0.7046,0.03617,0.07305,0.7049,-1.357,-0.7298,-1.284,-0.9953,-0.8552,-368.2,-1.327e-05,-5.992e-05,5.719e-06,-2.265e-05,7.455e-05,-0.001266,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001519,6.282e-06,6.14e-06,0.0001446,0.01832,0.01783,0.00937,0.0421,0.04206,0.05798,6.843e-11,6.847e-11,3.318e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26885000,0.7042,0.04464,0.09362,0.7024,-1.5,-0.7881,-1.296,-1.138,-0.931,-368.3,-1.327e-05,-5.992e-05,5.789e-06,-2.265e-05,7.455e-05,-0.001264,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001511,6.819e-06,6.824e-06,0.0001438,0.0197,0.01904,0.009426,0.04664,0.04657,0.0581,6.853e-11,6.857e-11,3.273e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26985000,0.7036,0.05145,0.116,0.6991,-1.629,-0.8693,-1.273,-1.198,-1.03,-368.5,-1.314e-05,-5.99e-05,5.752e-06,-2.265e-05,7.455e-05,-0.00126,0.2083,0.00204,0.4353,0,0,0,0,0,0.00015,6.939e-06,7.203e-06,0.0001428,0.01787,0.01712,0.009393,0.04169,0.04163,0.0585,6.861e-11,6.865e-11,3.236e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27085000,0.7043,0.05263,0.1209,0.6976,-1.835,-0.9607,-1.245,-1.371,-1.122,-368.6,-1.314e-05,-5.99e-05,5.668e-06,-2.265e-05,7.455e-05,-0.001259,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001497,7.149e-06,7.511e-06,0.0001423,0.01934,0.01831,0.009437,0.04613,0.04601,0.05861,6.871e-11,6.875e-11,3.192e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27185000,0.706,0.04938,0.111,0.6978,-2.033,-1.03,-1.226,-1.567,-1.201,-368.7,-1.314e-05,-5.983e-05,5.907e-06,-2.265e-05,7.455e-05,-0.001255,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001491,6.693e-06,6.938e-06,0.0001418,0.01941,0.01823,0.009332,0.04866,0.04853,0.05817,6.878e-11,6.882e-11,3.144e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27285000,0.7074,0.04375,0.09588,0.6989,-2.197,-1.1,-1.216,-1.779,-1.308,-368.8,-1.314e-05,-5.983e-05,5.923e-06,-2.265e-05,7.455e-05,-0.001253,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001493,6.46e-06,6.557e-06,0.0001419,0.02092,0.01943,0.009393,0.05373,0.05351,0.05828,6.888e-11,6.892e-11,3.102e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27385000,0.7085,0.03751,0.07975,0.7001,-2.297,-1.129,-1.208,-1.97,-1.383,-369,-1.3e-05,-5.97e-05,6.171e-06,-2.265e-05,7.455e-05,-0.001246,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001484,6.002e-06,5.953e-06,0.0001414,0.02068,0.01915,0.00931,0.05626,0.05604,0.05783,6.894e-11,6.899e-11,3.054e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27485000,0.709,0.03175,0.06464,0.7015,-2.385,-1.169,-1.192,-2.204,-1.498,-369.1,-1.3e-05,-5.97e-05,6.099e-06,-2.265e-05,7.455e-05,-0.001243,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001484,5.935e-06,5.776e-06,0.0001414,0.02202,0.02027,0.009391,0.06197,0.06161,0.05795,6.904e-11,6.908e-11,3.013e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27585000,0.7094,0.02705,0.05204,0.7024,-2.461,-1.184,-1.196,-2.47,-1.6,-369.2,-1.308e-05,-5.963e-05,6.397e-06,-2.265e-05,7.455e-05,-0.001236,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001473,5.687e-06,5.446e-06,0.0001408,0.02148,0.01981,0.009403,0.06442,0.06408,0.05836,6.908e-11,6.913e-11,2.977e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27685000,0.7092,0.02614,0.04982,0.7028,-2.501,-1.202,-1.197,-2.718,-1.719,-369.4,-1.308e-05,-5.963e-05,6.27e-06,-2.265e-05,7.455e-05,-0.001234,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001471,5.815e-06,5.56e-06,0.0001406,0.02272,0.0209,0.009499,0.07074,0.07023,0.05849,6.918e-11,6.923e-11,2.939e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27785000,0.7091,0.02663,0.05172,0.7027,-2.548,-1.209,-1.195,-2.983,-1.819,-369.5,-1.313e-05,-5.953e-05,6.351e-06,-2.265e-05,7.455e-05,-0.001228,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001456,5.693e-06,5.445e-06,0.0001398,0.02201,0.02035,0.009436,0.07304,0.07258,0.05805,6.919e-11,6.925e-11,2.896e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27885000,0.7091,0.02601,0.04999,0.7029,-2.587,-1.227,-1.195,-3.239,-1.941,-369.6,-1.313e-05,-5.953e-05,6.273e-06,-2.265e-05,7.455e-05,-0.001224,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001454,5.833e-06,5.571e-06,0.0001396,0.02325,0.02146,0.009533,0.07994,0.07927,0.05819,6.929e-11,6.935e-11,2.859e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27985000,0.7093,0.02506,0.04603,0.703,-2.643,-1.235,-1.201,-3.54,-2.053,-369.8,-1.33e-05,-5.947e-05,6.479e-06,-2.265e-05,7.455e-05,-0.001219,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001441,5.699e-06,5.409e-06,0.0001388,0.02244,0.02084,0.009472,0.08204,0.08145,0.05776,6.928e-11,6.934e-11,2.818e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28085000,0.7087,0.03049,0.0585,0.7024,-2.68,-1.25,-1.213,-3.806,-2.178,-369.9,-1.33e-05,-5.947e-05,6.235e-06,-2.265e-05,7.455e-05,-0.001216,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001437,5.913e-06,5.678e-06,0.0001385,0.02369,0.022,0.009571,0.08949,0.08867,0.05791,6.938e-11,6.944e-11,2.783e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28185000,0.7085,0.03597,0.07273,0.701,-2.742,-1.264,-0.9756,-4.106,-2.289,-370,-1.344e-05,-5.939e-05,6.358e-06,-2.265e-05,7.455e-05,-0.00121,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001424,5.874e-06,5.739e-06,0.0001377,0.0226,0.02109,0.009505,0.09133,0.09062,0.0575,6.934e-11,6.939e-11,2.745e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28285000,0.7103,0.02897,0.05715,0.701,-2.746,-1.279,-0.1162,-4.381,-2.417,-370.1,-1.344e-05,-5.939e-05,6.194e-06,-2.265e-05,7.455e-05,-0.001208,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001427,5.922e-06,5.683e-06,0.0001377,0.02286,0.02135,0.009688,0.0992,0.09826,0.05849,6.944e-11,6.949e-11,2.72e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28385000,0.7125,0.01313,0.02592,0.7011,-2.769,-1.281,0.7497,-4.706,-2.535,-370.1,-1.366e-05,-5.933e-05,6.315e-06,-2.265e-05,7.455e-05,-0.001204,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001418,5.824e-06,5.469e-06,0.000137,0.02117,0.01991,0.009792,0.1008,0.1,0.05864,6.94e-11,6.945e-11,2.684e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28485000,0.7127,0.003602,0.006619,0.7014,-2.728,-1.276,1.082,-4.981,-2.663,-370,-1.366e-05,-5.933e-05,6.212e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001415,6.128e-06,5.744e-06,0.0001366,0.02184,0.02065,0.009906,0.1089,0.1079,0.0588,6.95e-11,6.955e-11,2.651e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28585000,0.712,0.001961,0.003006,0.7022,-2.684,-1.252,0.9811,-5.307,-2.779,-369.9,-1.391e-05,-5.928e-05,6.368e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001405,6.128e-06,5.738e-06,0.0001361,0.04019,0.0393,0.02891,0.1104,0.1095,0.05897,6.945e-11,6.95e-11,2.617e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28685000,0.711,0.00123,0.002022,0.7032,-2.614,-1.236,0.9811,-5.572,-2.904,-369.8,-1.39e-05,-5.928e-05,6.294e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001402,6.305e-06,5.915e-06,0.000136,0.06505,0.06431,0.05252,0.1194,0.1183,0.05944,6.955e-11,6.96e-11,2.585e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28785000,0.7103,0.001139,0.001847,0.7039,-2.624,-1.203,0.9794,-5.894,-3.013,-369.7,-1.416e-05,-5.921e-05,6.261e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001394,6.289e-06,5.888e-06,0.0001356,0.07543,0.0751,0.07115,0.1203,0.1194,0.0595,6.949e-11,6.953e-11,2.554e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28885000,0.7097,0.001102,0.002037,0.7045,-2.557,-1.188,0.9678,-6.153,-3.132,-369.6,-1.416e-05,-5.921e-05,6.227e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001394,6.46e-06,6.056e-06,0.0001357,0.1002,0.1,0.0946,0.1301,0.129,0.0622,6.959e-11,6.963e-11,2.531e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28985000,0.7094,0.001434,0.00257,0.7048,-2.619,-1.164,0.949,-6.484,-3.244,-369.5,-1.443e-05,-5.918e-05,6.119e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000139,6.491e-06,6.079e-06,0.0001353,0.09497,0.09499,0.1035,0.1303,0.1293,0.06293,6.954e-11,6.958e-11,2.5e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29085000,0.7092,0.001564,0.002945,0.705,-2.558,-1.15,0.9374,-6.742,-3.36,-369.5,-1.443e-05,-5.917e-05,6.011e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001388,6.664e-06,6.25e-06,0.0001351,0.1197,0.1198,0.126,0.1408,0.1397,0.06637,6.964e-11,6.968e-11,2.471e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29185000,0.7092,0.00176,0.003282,0.705,-2.543,-1.128,0.9049,-7.021,-3.469,-369.4,-1.45e-05,-5.915e-05,5.997e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001385,6.748e-06,6.329e-06,0.0001348,0.1041,0.1043,0.1246,0.1404,0.1394,0.06723,6.962e-11,6.966e-11,2.441e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29285000,0.7091,0.002069,0.004068,0.7051,-2.488,-1.117,0.9244,-7.273,-3.582,-369.3,-1.45e-05,-5.915e-05,5.873e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001383,6.922e-06,6.501e-06,0.0001346,0.1287,0.1289,0.1462,0.1514,0.1503,0.072,6.972e-11,6.975e-11,2.412e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29385000,0.709,0.002554,0.005428,0.7052,-2.507,-1.107,0.9095,-7.559,-3.694,-369.3,-1.461e-05,-5.914e-05,5.609e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001381,7.033e-06,6.61e-06,0.0001343,0.108,0.1082,0.1369,0.1505,0.1495,0.07235,6.972e-11,6.976e-11,2.384e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29485000,0.709,0.003029,0.006549,0.7051,-2.458,-1.1,0.9016,-7.807,-3.805,-369.2,-1.461e-05,-5.914e-05,5.598e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001379,7.21e-06,6.787e-06,0.0001341,0.1325,0.1328,0.1574,0.1618,0.1607,0.07786,6.982e-11,6.986e-11,2.356e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29585000,0.709,0.003337,0.00752,0.7051,-2.415,-1.072,0.8786,-8.052,-3.903,-369.1,-1.461e-05,-5.911e-05,5.499e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001379,7.35e-06,6.927e-06,0.0001339,0.1096,0.1098,0.1439,0.1607,0.1596,0.07887,6.984e-11,6.987e-11,2.335e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29685000,0.7091,0.003616,0.008174,0.705,-2.373,-1.064,0.8672,-8.292,-4.01,-369,-1.461e-05,-5.911e-05,5.365e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001377,7.54e-06,7.117e-06,0.0001337,0.1341,0.1343,0.164,0.1721,0.1711,0.08481,6.994e-11,6.997e-11,2.308e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29785000,0.7093,0.003783,0.008553,0.7049,-2.366,-1.05,0.8449,-8.545,-4.111,-369,-1.465e-05,-5.91e-05,5.369e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001375,7.701e-06,7.279e-06,0.0001334,0.1102,0.1104,0.1468,0.1708,0.1697,0.08331,6.996e-11,6.999e-11,2.281e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29885000,0.7093,0.003827,0.008693,0.7049,-2.329,-1.044,0.825,-8.78,-4.216,-368.9,-1.465e-05,-5.909e-05,5.207e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001374,7.903e-06,7.481e-06,0.0001332,0.1346,0.1348,0.1663,0.1824,0.1813,0.0891,7.006e-11,7.009e-11,2.254e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29985000,0.7094,0.003841,0.008759,0.7048,-2.279,-1.02,0.8037,-9.004,-4.31,-368.8,-1.463e-05,-5.907e-05,5.101e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001372,8.08e-06,7.658e-06,0.0001329,0.1104,0.1106,0.1477,0.1809,0.1798,0.08674,7.008e-11,7.012e-11,2.228e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30085000,0.7094,0.003808,0.008634,0.7047,-2.244,-1.015,0.7879,-9.23,-4.412,-368.8,-1.463e-05,-5.906e-05,4.963e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000137,8.291e-06,7.869e-06,0.0001326,0.1348,0.135,0.1668,0.1926,0.1915,0.09218,7.018e-11,7.022e-11,2.203e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30185000,0.7096,0.003742,0.008389,0.7045,-2.228,-1.001,0.7818,-9.462,-4.508,-368.7,-1.465e-05,-5.905e-05,5.018e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000137,8.48e-06,8.06e-06,0.0001325,0.1105,0.1106,0.1489,0.191,0.19,0.09126,7.02e-11,7.024e-11,2.184e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30285000,0.7097,0.003627,0.008182,0.7044,-2.192,-0.9981,0.7722,-9.683,-4.608,-368.6,-1.466e-05,-5.905e-05,4.914e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001368,8.699e-06,8.279e-06,0.0001323,0.1349,0.1351,0.1681,0.2028,0.2017,0.09654,7.03e-11,7.034e-11,2.159e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30385000,0.7098,0.003519,0.007901,0.7044,-2.14,-0.9908,0.7617,-9.891,-4.706,-368.5,-1.463e-05,-5.905e-05,4.859e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001366,8.895e-06,8.476e-06,0.000132,0.1106,0.1107,0.1487,0.2012,0.2001,0.09294,7.032e-11,7.036e-11,2.134e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30485000,0.7099,0.00339,0.007629,0.7043,-2.108,-0.9868,0.7498,-10.1,-4.805,-368.5,-1.463e-05,-5.905e-05,4.823e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001364,9.121e-06,8.703e-06,0.0001318,0.135,0.1351,0.1677,0.2129,0.2118,0.09782,7.042e-11,7.046e-11,2.111e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30585000,0.71,0.003188,0.00718,0.7041,-2.087,-0.9828,0.7218,-10.32,-4.904,-368.4,-1.465e-05,-5.905e-05,4.842e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001362,9.324e-06,8.908e-06,0.0001315,0.1106,0.1107,0.1484,0.2113,0.2102,0.09392,7.044e-11,7.048e-11,2.087e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30685000,0.7101,0.002991,0.006808,0.7041,-2.054,-0.9778,0.7146,-10.53,-5.002,-368.3,-1.465e-05,-5.905e-05,4.781e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000136,9.558e-06,9.143e-06,0.0001313,0.135,0.1351,0.1673,0.2231,0.222,0.09845,7.053e-11,7.058e-11,2.064e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30785000,0.7101,0.002848,0.006409,0.7041,-2.014,-0.9602,0.7143,-10.73,-5.092,-368.2,-1.464e-05,-5.903e-05,4.668e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001358,9.766e-06,9.353e-06,0.000131,0.1106,0.1107,0.148,0.2214,0.2203,0.09437,7.054e-11,7.059e-11,2.04e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30885000,0.7101,0.002634,0.005947,0.7041,-1.982,-0.9552,0.7038,-10.93,-5.188,-368.2,-1.464e-05,-5.903e-05,4.627e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001358,1.001e-05,9.595e-06,0.000131,0.135,0.1351,0.1683,0.2332,0.2321,0.1011,7.064e-11,7.069e-11,2.024e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30985000,0.7101,0.002468,0.005345,0.7041,-1.968,-0.9456,0.7029,-11.13,-5.281,-368.1,-1.467e-05,-5.902e-05,4.563e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001356,1.022e-05,9.813e-06,0.0001307,0.1106,0.1107,0.1488,0.2315,0.2304,0.09673,7.065e-11,7.069e-11,2.001e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31085000,0.7101,0.002231,0.004786,0.7041,-1.936,-0.9406,0.691,-11.33,-5.375,-368.1,-1.467e-05,-5.902e-05,4.477e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001354,1.047e-05,1.006e-05,0.0001305,0.135,0.1352,0.1679,0.2433,0.2422,0.101,7.075e-11,7.079e-11,1.98e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31185000,0.7101,0.002019,0.004384,0.7041,-1.896,-0.9364,0.6672,-11.52,-5.469,-368,-1.466e-05,-5.902e-05,4.434e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001352,1.069e-05,1.028e-05,0.0001303,0.1106,0.1107,0.1485,0.2416,0.2405,0.09655,7.074e-11,7.079e-11,1.958e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31285000,0.7102,0.001772,0.003799,0.704,-1.863,-0.93,0.6684,-11.7,-5.562,-367.9,-1.466e-05,-5.902e-05,4.4e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000135,1.094e-05,1.054e-05,0.0001301,0.1351,0.1352,0.1675,0.2534,0.2523,0.1006,7.084e-11,7.089e-11,1.937e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31385000,0.7102,0.001506,0.003157,0.704,-1.847,-0.9284,0.6606,-11.9,-5.657,-367.9,-1.469e-05,-5.902e-05,4.335e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001348,1.117e-05,1.077e-05,0.0001298,0.1107,0.1107,0.1482,0.2517,0.2506,0.09615,7.084e-11,7.088e-11,1.916e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31485000,0.7101,0.001285,0.002472,0.7041,-1.813,-0.9231,0.6577,-12.08,-5.75,-367.8,-1.469e-05,-5.902e-05,4.236e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001348,1.143e-05,1.103e-05,0.0001298,0.1351,0.1352,0.1686,0.2635,0.2624,0.1026,7.093e-11,7.098e-11,1.901e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31585000,0.7101,0.001078,0.002004,0.7041,-1.78,-0.9013,0.6507,-12.26,-5.833,-367.8,-1.469e-05,-5.899e-05,4.202e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001346,1.166e-05,1.126e-05,0.0001296,0.1107,0.1107,0.1491,0.2618,0.2607,0.09801,7.092e-11,7.097e-11,1.88e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31685000,0.7101,0.0008133,0.001311,0.7041,-1.748,-0.8958,0.6583,-12.44,-5.923,-367.7,-1.469e-05,-5.899e-05,4.184e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001344,1.193e-05,1.153e-05,0.0001294,0.1352,0.1352,0.1682,0.2737,0.2725,0.102,7.102e-11,7.107e-11,1.86e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31785000,0.7101,0.0004622,0.0005165,0.7041,-1.738,-0.8846,0.654,-12.62,-6.009,-367.6,-1.473e-05,-5.899e-05,4.168e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001342,1.216e-05,1.177e-05,0.0001291,0.1107,0.1108,0.1488,0.2719,0.2708,0.09741,7.1e-11,7.105e-11,1.84e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31885000,0.7101,0.0001776,-0.0002416,0.7041,-1.702,-0.8769,0.6521,-12.8,-6.097,-367.6,-1.473e-05,-5.899e-05,4.115e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001341,1.243e-05,1.205e-05,0.0001289,0.1352,0.1353,0.1678,0.2838,0.2827,0.1013,7.11e-11,7.115e-11,1.821e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31985000,0.7101,-6.383e-05,-0.0008181,0.7041,-1.657,-0.8583,0.6471,-12.96,-6.177,-367.5,-1.471e-05,-5.896e-05,4.023e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001338,1.267e-05,1.228e-05,0.0001287,0.1108,0.1108,0.1485,0.2821,0.2809,0.09676,7.107e-11,7.112e-11,1.802e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32085000,0.71,-0.000371,-0.001591,0.7042,-1.623,-0.8515,0.6539,-13.12,-6.263,-367.5,-1.472e-05,-5.896e-05,3.933e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001337,1.295e-05,1.257e-05,0.0001285,0.1353,0.1353,0.1675,0.2939,0.2928,0.1005,7.117e-11,7.122e-11,1.783e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32185000,0.7099,-0.0007249,-0.002531,0.7043,-1.606,-0.8422,0.6542,-13.29,-6.346,-367.4,-1.475e-05,-5.895e-05,3.81e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001336,1.319e-05,1.281e-05,0.0001285,0.1108,0.1108,0.1493,0.2922,0.291,0.09846,7.113e-11,7.119e-11,1.769e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32285000,0.7099,-0.0009984,-0.003345,0.7043,-1.57,-0.8352,0.6489,-13.45,-6.43,-367.4,-1.475e-05,-5.895e-05,3.734e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001335,1.348e-05,1.311e-05,0.0001283,0.1353,0.1354,0.1685,0.304,0.3029,0.1024,7.123e-11,7.128e-11,1.751e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32385000,0.7099,-0.001249,-0.004038,0.7043,-1.52,-0.8227,0.6531,-13.6,-6.51,-367.3,-1.473e-05,-5.894e-05,3.729e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001332,1.372e-05,1.335e-05,0.0001281,0.1108,0.1109,0.149,0.3023,0.3011,0.09776,7.118e-11,7.124e-11,1.733e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32485000,0.7097,-0.001402,-0.004348,0.7044,-1.484,-0.8143,0.6624,-13.75,-6.592,-367.2,-1.473e-05,-5.894e-05,3.701e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001331,1.401e-05,1.364e-05,0.0001279,0.1354,0.1354,0.1681,0.3141,0.313,0.1016,7.128e-11,7.134e-11,1.715e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32585000,0.7096,-0.001465,-0.004656,0.7045,-1.467,-0.8089,0.6635,-13.91,-6.674,-367.2,-1.476e-05,-5.895e-05,3.612e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001329,1.425e-05,1.388e-05,0.0001277,0.1109,0.1109,0.1486,0.3124,0.3112,0.09703,7.123e-11,7.129e-11,1.698e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32685000,0.7096,-0.001527,-0.00477,0.7046,-1.432,-0.8017,0.6659,-14.05,-6.755,-367.1,-1.476e-05,-5.895e-05,3.559e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001327,1.454e-05,1.418e-05,0.0001275,0.1355,0.1355,0.1677,0.3242,0.3231,0.1008,7.133e-11,7.139e-11,1.681e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32785000,0.7095,-0.001539,-0.004784,0.7047,-1.395,-0.7872,0.6653,-14.19,-6.83,-367,-1.476e-05,-5.893e-05,3.522e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001327,1.478e-05,1.442e-05,0.0001275,0.1109,0.1109,0.1494,0.3225,0.3214,0.09871,7.127e-11,7.133e-11,1.668e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32885000,0.7094,-0.001496,-0.004779,0.7048,-1.363,-0.7801,0.6694,-14.33,-6.909,-367,-1.476e-05,-5.893e-05,3.411e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001325,1.508e-05,1.472e-05,0.0001273,0.1355,0.1355,0.1687,0.3343,0.3332,0.1026,7.137e-11,7.143e-11,1.652e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32985000,0.7093,-0.001431,-0.004822,0.7049,-1.352,-0.7747,0.6663,-14.48,-6.987,-366.9,-1.48e-05,-5.893e-05,3.412e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001323,1.531e-05,1.496e-05,0.0001271,0.111,0.111,0.1491,0.3326,0.3315,0.09796,7.129e-11,7.136e-11,1.635e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33085000,0.7093,-0.001492,-0.004873,0.7049,-1.32,-0.7688,0.6653,-14.61,-7.064,-366.8,-1.48e-05,-5.893e-05,3.477e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001321,1.562e-05,1.527e-05,0.000127,0.1356,0.1356,0.1682,0.3444,0.3433,0.1018,7.139e-11,7.146e-11,1.619e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33185000,0.7063,0.001036,-0.004168,0.7079,-1.287,-0.7526,0.611,-14.74,-7.135,-366.8,-1.479e-05,-5.891e-05,3.467e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001316,1.584e-05,1.55e-05,0.0001272,0.111,0.111,0.1488,0.3428,0.3416,0.09723,7.131e-11,7.138e-11,1.603e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33285000,0.6576,0.0139,-0.002795,0.7532,-1.278,-0.7376,0.5839,-14.87,-7.209,-366.7,-1.479e-05,-5.891e-05,3.464e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001259,1.61e-05,1.578e-05,0.0001328,0.1357,0.1357,0.1678,0.3546,0.3534,0.101,7.141e-11,7.148e-11,1.587e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33385000,0.5564,0.01189,-0.00329,0.8308,-1.282,-0.7288,0.7824,-15,-7.283,-366.6,-1.481e-05,-5.892e-05,3.471e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001152,1.633e-05,1.604e-05,0.0001435,0.111,0.111,0.1484,0.3529,0.3517,0.09651,7.132e-11,7.139e-11,1.571e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33485000,0.42,0.005224,-0.0003592,0.9075,-1.261,-0.7261,0.8141,-15.13,-7.356,-366.6,-1.482e-05,-5.891e-05,3.375e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001037,1.662e-05,1.638e-05,0.0001556,0.1356,0.1356,0.1688,0.3646,0.3635,0.1028,7.142e-11,7.149e-11,1.56e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33585000,0.2633,-0.001005,-0.002356,0.9647,-1.203,-0.7103,0.7561,-15.24,-7.417,-366.5,-1.478e-05,-5.888e-05,3.346e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,9.388e-05,1.683e-05,1.666e-05,0.0001657,0.1111,0.111,0.1492,0.363,0.3618,0.09815,7.133e-11,7.14e-11,1.545e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33685000,0.09692,-0.004519,-0.005108,0.9953,-1.143,-0.709,0.7677,-15.36,-7.488,-366.4,-1.478e-05,-5.888e-05,3.369e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,8.786e-05,1.702e-05,1.695e-05,0.0001721,0.1358,0.1357,0.1684,0.3748,0.3736,0.102,7.143e-11,7.15e-11,1.53e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33785000,-0.07261,-0.006229,-0.006524,0.9973,-1.099,-0.6827,0.7405,-15.49,-7.551,-366.3,-1.484e-05,-5.885e-05,3.316e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,8.659e-05,1.702e-05,1.706e-05,0.0001736,0.1112,0.1111,0.1489,0.3731,0.3719,0.09743,7.133e-11,7.14e-11,1.515e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33885000,-0.2398,-0.007424,-0.006846,0.9708,-1.024,-0.6593,0.7302,-15.59,-7.618,-366.3,-1.484e-05,-5.885e-05,3.302e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,9.034e-05,1.701e-05,1.714e-05,0.0001703,0.136,0.1358,0.1679,0.3849,0.3837,0.1012,7.143e-11,7.15e-11,1.5e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
33985000,-0.3872,-0.006023,-0.00987,0.9219,-1.005,-0.6176,0.7026,-15.72,-7.679,-366.2,-1.495e-05,-5.883e-05,3.257e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,9.78e-05,1.681e-05,1.702e-05,0.000163,0.1113,0.1112,0.1485,0.3832,0.382,0.09668,7.131e-11,7.139e-11,1.485e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34085000,-0.4951,-0.004747,-0.01127,0.8688,-0.9432,-0.5704,0.7101,-15.82,-7.738,-366.1,-1.495e-05,-5.883e-05,3.287e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000106,1.664e-05,1.69e-05,0.0001552,0.1361,0.1359,0.1689,0.395,0.3938,0.103,7.141e-11,7.149e-11,1.475e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34185000,-0.5662,-0.004707,-0.00963,0.8242,-0.97,-0.5448,0.7161,-15.96,-7.808,-366.1,-1.513e-05,-5.887e-05,3.29e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001123,1.638e-05,1.665e-05,0.0001485,0.1114,0.1112,0.1493,0.3934,0.3921,0.09835,7.129e-11,7.138e-11,1.461e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34285000,-0.6104,-0.005544,-0.006601,0.7921,-0.9127,-0.4931,0.7188,-16.05,-7.86,-366,-1.513e-05,-5.887e-05,3.264e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001167,1.62e-05,1.648e-05,0.0001439,0.1361,0.1359,0.1685,0.4051,0.4039,0.1022,7.139e-11,7.148e-11,1.447e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34385000,-0.6372,-0.006445,-0.003643,0.7707,-0.9184,-0.4691,0.7131,-16.18,-7.922,-365.9,-1.527e-05,-5.892e-05,3.257e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001194,1.595e-05,1.622e-05,0.0001407,0.1114,0.1112,0.149,0.4035,0.4022,0.0976,7.128e-11,7.137e-11,1.433e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34485000,-0.6533,-0.007389,-0.001355,0.757,-0.8561,-0.4228,0.7154,-16.27,-7.966,-365.9,-1.527e-05,-5.892e-05,3.257e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000121,1.578e-05,1.605e-05,0.0001387,0.1361,0.1359,0.168,0.4152,0.4141,0.1014,7.138e-11,7.147e-11,1.419e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34585000,-0.6632,-0.007967,9.992e-05,0.7484,-0.8785,-0.4274,0.7118,-16.4,-8.035,-365.8,-1.545e-05,-5.901e-05,3.303e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001219,1.552e-05,1.579e-05,0.0001372,0.1113,0.1112,0.1486,0.4136,0.4123,0.09687,7.127e-11,7.136e-11,1.406e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34685000,-0.6693,-0.008339,0.0009417,0.7429,-0.8134,-0.3817,0.7142,-16.48,-8.076,-365.7,-1.545e-05,-5.901e-05,3.246e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001225,1.535e-05,1.562e-05,0.0001363,0.1361,0.1358,0.1676,0.4253,0.4242,0.1006,7.137e-11,7.146e-11,1.393e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34785000,-0.6733,-0.008372,0.001475,0.7393,-0.8248,-0.3839,0.7143,-16.6,-8.139,-365.6,-1.561e-05,-5.908e-05,3.132e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001229,1.51e-05,1.536e-05,0.0001357,0.1113,0.1111,0.1494,0.4237,0.4224,0.09853,7.127e-11,7.136e-11,1.383e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34885000,-0.6757,-0.00841,0.001608,0.7371,-0.7606,-0.3407,0.7179,-16.68,-8.175,-365.6,-1.561e-05,-5.908e-05,3.123e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000123,1.493e-05,1.519e-05,0.0001353,0.1361,0.1358,0.1686,0.4354,0.4343,0.1024,7.137e-11,7.146e-11,1.37e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34985000,-0.679,-0.01562,-0.0005926,0.734,0.1675,0.2648,-0.05683,-16.74,-8.198,-365.6,-1.581e-05,-5.918e-05,2.991e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001231,1.478e-05,1.499e-05,0.0001345,0.1153,0.1122,0.1492,0.4337,0.4326,0.0978,7.128e-11,7.138e-11,1.357e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35085000,-0.6791,-0.016,-0.0009934,0.7339,0.3983,0.293,-0.1505,-16.71,-8.17,-365.6,-1.581e-05,-5.918e-05,2.956e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001229,1.462e-05,1.483e-05,0.0001344,0.141,0.1373,0.1684,0.4453,0.4446,0.1016,7.138e-11,7.148e-11,1.345e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35185000,-0.6792,-0.01569,-0.001134,0.7338,0.2197,0.2318,-0.1125,-16.79,-8.2,-365.6,-1.628e-05,-5.934e-05,2.829e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001222,1.434e-05,1.455e-05,0.0001325,0.1135,0.1118,0.1488,0.4439,0.4427,0.09705,7.123e-11,7.134e-11,1.33e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35285000,-0.6792,-0.01571,-0.00121,0.7338,0.2614,0.2756,-0.1014,-16.76,-8.174,-365.6,-1.628e-05,-5.934e-05,2.747e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000122,1.419e-05,1.439e-05,0.0001324,0.1383,0.1365,0.1678,0.4555,0.4546,0.1008,7.133e-11,7.144e-11,1.318e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35385000,-0.6792,-0.0155,-0.001257,0.7338,0.1346,0.2195,-0.07308,-16.83,-8.202,-365.6,-1.663e-05,-5.949e-05,2.627e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001217,1.394e-05,1.415e-05,0.0001316,0.1123,0.1114,0.1495,0.454,0.4528,0.09873,7.123e-11,7.133e-11,1.308e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35485000,-0.6793,-0.01553,-0.001268,0.7337,0.1761,0.2619,-0.06431,-16.81,-8.178,-365.6,-1.663e-05,-5.949e-05,2.511e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001215,1.38e-05,1.4e-05,0.0001315,0.1371,0.1361,0.1688,0.4657,0.4647,0.1026,7.133e-11,7.143e-11,1.296e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35585000,-0.6793,-0.01541,-0.001252,0.7337,0.1561,0.2103,-0.04606,-16.83,-8.205,-365.6,-1.676e-05,-5.965e-05,2.562e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001212,1.358e-05,1.377e-05,0.0001309,0.1117,0.1112,0.1492,0.4641,0.463,0.09797,7.125e-11,7.136e-11,1.284e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35685000,-0.6793,-0.01541,-0.001211,0.7337,0.197,0.2531,-0.0405,-16.81,-8.182,-365.6,-1.676e-05,-5.965e-05,2.484e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000121,1.344e-05,1.363e-05,0.0001307,0.1364,0.1358,0.1683,0.4758,0.4748,0.1018,7.135e-11,7.146e-11,1.273e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35785000,-0.6793,-0.01532,-0.001209,0.7337,0.1704,0.2042,-0.02474,-16.83,-8.207,-365.6,-1.689e-05,-5.98e-05,2.48e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001208,1.324e-05,1.343e-05,0.0001304,0.1114,0.1111,0.1488,0.4742,0.4731,0.09724,7.129e-11,7.14e-11,1.261e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35885000,-0.6793,-0.01533,-0.001257,0.7337,0.2108,0.2474,-0.01695,-16.81,-8.184,-365.6,-1.689e-05,-5.98e-05,2.446e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001206,1.311e-05,1.33e-05,0.0001302,0.1361,0.1357,0.1679,0.4859,0.4849,0.101,7.139e-11,7.15e-11,1.25e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
35985000,-0.6793,-0.01515,-0.001233,0.7337,0.1711,0.1958,-0.01237,-16.83,-8.211,-365.6,-1.705e-05,-5.993e-05,2.479e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001204,1.292e-05,1.31e-05,0.0001299,0.1112,0.111,0.1485,0.4844,0.4832,0.09651,7.135e-11,7.146e-11,1.239e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36085000,-0.6793,-0.0152,-0.00123,0.7337,0.2114,0.2385,-0.005249,-16.81,-8.189,-365.5,-1.705e-05,-5.993e-05,2.444e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001204,1.28e-05,1.298e-05,0.0001299,0.1358,0.1356,0.1688,0.4961,0.495,0.1028,7.145e-11,7.156e-11,1.231e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36185000,-0.6793,-0.01507,-0.001229,0.7337,0.1709,0.1906,-0.0007318,-16.83,-8.216,-365.5,-1.719e-05,-6.006e-05,2.3e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001201,1.262e-05,1.28e-05,0.0001297,0.1111,0.111,0.1492,0.4945,0.4933,0.09816,7.142e-11,7.153e-11,1.221e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36285000,-0.6794,-0.01514,-0.001198,0.7336,0.2109,0.2332,0.01107,-16.82,-8.194,-365.5,-1.719e-05,-6.006e-05,2.241e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.00012,1.251e-05,1.269e-05,0.0001296,0.1357,0.1355,0.1684,0.5062,0.5051,0.102,7.152e-11,7.163e-11,1.21e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36385000,-0.6793,-0.01506,-0.001196,0.7337,0.1746,0.1891,0.01124,-16.84,-8.218,-365.5,-1.733e-05,-6.017e-05,2.249e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001198,1.235e-05,1.252e-05,0.0001294,0.111,0.1109,0.1489,0.5046,0.5034,0.09743,7.151e-11,7.162e-11,1.2e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36485000,-0.6793,-0.01513,-0.001237,0.7337,0.2157,0.231,0.01604,-16.82,-8.197,-365.5,-1.733e-05,-6.017e-05,2.292e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001196,1.224e-05,1.241e-05,0.0001292,0.1356,0.1355,0.1679,0.5163,0.5152,0.1012,7.161e-11,7.172e-11,1.19e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36585000,-0.6794,-0.01507,-0.001201,0.7336,0.1769,0.1894,0.01845,-16.84,-8.22,-365.5,-1.746e-05,-6.027e-05,2.205e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001194,1.209e-05,1.226e-05,0.000129,0.111,0.1109,0.1485,0.5147,0.5135,0.09669,7.16e-11,7.171e-11,1.18e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36685000,-0.6795,-0.01506,-0.001158,0.7336,0.217,0.2317,0.02533,-16.82,-8.199,-365.5,-1.746e-05,-6.027e-05,2.129e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001194,1.199e-05,1.216e-05,0.000129,0.1355,0.1354,0.1689,0.5265,0.5253,0.103,7.17e-11,7.181e-11,1.173e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36785000,-0.6795,-0.015,-0.001173,0.7335,0.1782,0.1937,0.02137,-16.84,-8.22,-365.5,-1.758e-05,-6.037e-05,2.047e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001193,1.185e-05,1.201e-05,0.0001288,0.1109,0.1109,0.1493,0.5249,0.5236,0.09835,7.171e-11,7.181e-11,1.163e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36885000,-0.6796,-0.01506,-0.001171,0.7334,0.218,0.2342,0.02676,-16.82,-8.199,-365.5,-1.758e-05,-6.037e-05,1.943e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001191,1.176e-05,1.192e-05,0.0001287,0.1355,0.1354,0.1685,0.5366,0.5354,0.1022,7.181e-11,7.191e-11,1.153e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
36985000,-0.6797,-0.01497,-0.001093,0.7334,0.1794,0.1949,0.02006,-16.84,-8.22,-365.5,-1.771e-05,-6.045e-05,1.886e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001189,1.163e-05,1.179e-05,0.0001285,0.1109,0.1108,0.149,0.535,0.5338,0.09761,7.182e-11,7.193e-11,1.144e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37085000,-0.6797,-0.015,-0.001061,0.7334,0.2198,0.2359,0.02737,-16.82,-8.198,-365.5,-1.771e-05,-6.045e-05,1.859e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001188,1.155e-05,1.17e-05,0.0001284,0.1354,0.1353,0.168,0.5467,0.5455,0.1014,7.192e-11,7.203e-11,1.135e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37185000,-0.6797,-0.01494,-0.001037,0.7333,0.1807,0.1916,0.02601,-16.84,-8.222,-365.5,-1.783e-05,-6.054e-05,1.863e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001186,1.143e-05,1.158e-05,0.0001282,0.1109,0.1108,0.1486,0.5451,0.5439,0.09688,7.194e-11,7.205e-11,1.125e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37285000,-0.6797,-0.01497,-0.001061,0.7333,0.2208,0.2326,0.03185,-16.82,-8.201,-365.5,-1.783e-05,-6.054e-05,1.795e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001185,1.135e-05,1.15e-05,0.0001281,0.1354,0.1353,0.1676,0.5568,0.5556,0.1006,7.204e-11,7.215e-11,1.116e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37385000,-0.6798,-0.01491,-0.0009951,0.7333,0.1803,0.1886,0.02891,-16.84,-8.224,-365.5,-1.794e-05,-6.062e-05,1.772e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001184,1.124e-05,1.139e-05,0.0001281,0.1108,0.1108,0.1494,0.5552,0.554,0.09853,7.207e-11,7.218e-11,1.11e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37485000,-0.6799,-0.01493,-0.0009724,0.7332,0.22,0.2309,0.03386,-16.82,-8.203,-365.5,-1.794e-05,-6.062e-05,1.681e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001183,1.118e-05,1.132e-05,0.0001279,0.1354,0.1353,0.1686,0.567,0.5658,0.1024,7.217e-11,7.228e-11,1.101e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37585000,-0.6799,-0.01487,-0.000947,0.7332,0.1792,0.1886,0.03869,-16.85,-8.226,-365.5,-1.805e-05,-6.07e-05,1.617e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001181,1.107e-05,1.122e-05,0.0001278,0.1108,0.1108,0.149,0.5654,0.5641,0.0978,7.221e-11,7.231e-11,1.092e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37685000,-0.6799,-0.01493,-0.0009812,0.7331,0.2184,0.2309,0.0496,-16.83,-8.205,-365.5,-1.805e-05,-6.07e-05,1.553e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.000118,1.102e-05,1.116e-05,0.0001277,0.1353,0.1352,0.1682,0.5771,0.5759,0.1016,7.231e-11,7.241e-11,1.084e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37785000,-0.6799,-0.01481,-0.001006,0.7331,0.1782,0.1887,0.05065,-16.85,-8.228,-365.5,-1.815e-05,-6.077e-05,1.527e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001178,1.092e-05,1.106e-05,0.0001275,0.1108,0.1107,0.1487,0.5755,0.5742,0.09705,7.235e-11,7.245e-11,1.075e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37885000,-0.68,-0.01483,-0.0009987,0.7331,0.2172,0.2303,0.05417,-16.83,-8.207,-365.5,-1.815e-05,-6.077e-05,1.493e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001177,1.087e-05,1.101e-05,0.0001274,0.1353,0.1352,0.1677,0.5872,0.586,0.1008,7.245e-11,7.255e-11,1.067e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
37985000,-0.68,-0.01475,-0.00103,0.7331,0.1744,0.1882,0.04976,-16.85,-8.23,-365.5,-1.826e-05,-6.083e-05,1.487e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001177,1.078e-05,1.092e-05,0.0001273,0.1108,0.1107,0.1494,0.5856,0.5844,0.09872,7.25e-11,7.26e-11,1.061e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38085000,-0.68,-0.01479,-0.001034,0.7331,0.2127,0.2296,0.06204,-16.83,-8.209,-365.5,-1.826e-05,-6.083e-05,1.421e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001175,1.074e-05,1.087e-05,0.0001272,0.1353,0.1352,0.1687,0.5973,0.5961,0.1026,7.26e-11,7.27e-11,1.053e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38185000,-0.68,-0.01469,-0.0009984,0.7331,0.1698,0.1872,0.0535,-16.85,-8.232,-365.5,-1.835e-05,-6.089e-05,1.406e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001174,1.066e-05,1.08e-05,0.0001271,0.1108,0.1107,0.1491,0.5958,0.5945,0.09797,7.265e-11,7.276e-11,1.045e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38285000,-0.68,-0.01473,-0.0009993,0.7331,0.2091,0.2273,0.05943,-16.83,-8.212,-365.5,-1.835e-05,-6.089e-05,1.377e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001172,1.063e-05,1.076e-05,0.000127,0.1353,0.1352,0.1683,0.6075,0.6062,0.1018,7.275e-11,7.286e-11,1.037e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38385000,-0.68,-0.01464,-0.0009417,0.7331,0.1716,0.1867,0.04628,-16.86,-8.234,-365.5,-1.844e-05,-6.094e-05,1.382e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001171,1.056e-05,1.069e-05,0.0001268,0.1108,0.1107,0.1488,0.6059,0.6046,0.09723,7.281e-11,7.291e-11,1.029e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38485000,-0.68,-0.01465,-0.0009552,0.7331,0.211,0.228,0.05134,-16.84,-8.213,-365.5,-1.844e-05,-6.094e-05,1.346e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001169,1.053e-05,1.066e-05,0.0001267,0.1353,0.1352,0.1678,0.6176,0.6163,0.101,7.291e-11,7.301e-11,1.021e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38585000,-0.68,-0.0146,-0.0008711,0.7331,0.1744,0.1871,0.03712,-16.86,-8.236,-365.5,-1.852e-05,-6.099e-05,1.345e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001168,1.047e-05,1.06e-05,0.0001265,0.1108,0.1107,0.1485,0.616,0.6147,0.09651,7.298e-11,7.308e-11,1.013e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38685000,-0.68,-0.01469,-0.0008813,0.7331,0.2129,0.2264,0.04166,-16.84,-8.215,-365.5,-1.852e-05,-6.099e-05,1.302e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001168,1.045e-05,1.058e-05,0.0001265,0.1352,0.1352,0.1688,0.6277,0.6265,0.1028,7.308e-11,7.318e-11,1.008e-10,2.955e-06,2.955e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
38785000,-0.68,-0.0146,-0.0008629,0.7331,0.1716,0.1818,0.03907,-16.86,-8.24,-365.5,-1.861e-05,-6.103e-05,1.283e-06,-2.265e-05,7.455e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001166,1.04e-05,1.052e-05,0.0001264,0.08946,0.0894,0.1277,0.6261,0.6248,0.09811,7.315e-11,7.325e-11,1e-10,2.955e-06,2.955e-06,5.001e-08,0,0,0,0,0,0,0,0
|
||||
38885000,-0.68,-0.01479,-0.0009186,0.7331,0.1926,0.2032,0.4922,-16.84,-8.22,-365.5,-1.861e-05,-6.103e-05,1.256e-06,-2.265e-05,7.454e-05,-0.0012,0.2083,0.00204,0.4353,0,0,0,0,0,0.0001165,1.039e-05,1.051e-05,0.0001263,0.09064,0.09057,0.1233,0.6373,0.6361,0.1016,7.325e-11,7.335e-11,9.93e-11,2.955e-06,2.955e-06,5.002e-08,0,0,0,0,0,0,0,0
|
||||
|
||||
|
@@ -103,249 +103,249 @@ Timestamp,state[0],state[1],state[2],state[3],state[4],state[5],state[6],state[7
|
||||
10085000,0.9819,-0.005143,-0.01215,0.1887,-0.01631,0.1118,-0.005844,-0.04709,0.204,-0.05068,-1.781e-05,-5.797e-05,-2.424e-06,-2.396e-05,2.661e-05,-0.001354,0.2042,0.002,0.4335,0,0,0,0,0,8.563e-06,0.0004068,0.0004069,0.0002287,1.983,1.983,0.02205,7.996,7.996,0.09407,5.697e-09,5.7e-09,9.127e-09,3.744e-06,3.744e-06,9.169e-08,0,0,0,0,0,0,0,0
|
||||
10185000,0.9819,-0.005096,-0.01206,0.189,-0.01926,0.1155,-0.0042,-0.04891,0.2154,-0.05074,-1.783e-05,-5.795e-05,-3.397e-06,-2.397e-05,2.662e-05,-0.001355,0.2042,0.002,0.4335,0,0,0,0,0,8.531e-06,0.0004156,0.0004157,0.0002277,2.098,2.098,0.02149,8.8,8.8,0.09295,5.697e-09,5.701e-09,8.988e-09,3.744e-06,3.744e-06,8.806e-08,0,0,0,0,0,0,0,0
|
||||
10285000,0.9819,-0.005223,-0.01199,0.1889,-0.01782,0.1106,-0.005294,-0.04672,0.2087,-0.05067,-1.761e-05,-5.8e-05,-3.109e-06,-2.347e-05,2.984e-05,-0.001355,0.2042,0.002,0.4335,0,0,0,0,0,8.495e-06,0.0004003,0.0004004,0.0002269,2.045,2.045,0.02095,8.88,8.88,0.09186,5.598e-09,5.602e-09,8.846e-09,3.72e-06,3.72e-06,8.463e-08,0,0,0,0,0,0,0,0
|
||||
10385000,0.9819,-0.005213,-0.01189,0.1888,0.006524,0.005011,-0.002936,0.0007451,0.0001646,-0.0489,-1.761e-05,-5.8e-05,-2.913e-06,-2.349e-05,2.981e-05,-0.001356,0.2042,0.002,0.4335,0,0,0,0,0,8.47e-06,0.0004092,0.0004093,0.0002261,0.03589,0.03589,0.03746,0.1253,0.1253,0.08507,5.598e-09,5.602e-09,8.702e-09,3.72e-06,3.72e-06,8.155e-08,0,0,0,0,0,0,0,0
|
||||
10485000,0.9819,-0.005102,-0.01183,0.189,0.006078,0.00775,-0.001848,0.001367,0.0008001,-0.04435,-1.763e-05,-5.799e-05,-3.568e-06,-2.354e-05,2.976e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,8.445e-06,0.0004184,0.0004185,0.0002255,0.04051,0.04051,0.03756,0.1263,0.1263,0.07943,5.598e-09,5.602e-09,8.555e-09,3.72e-06,3.72e-06,7.895e-08,0,0,0,0,0,0,0,0
|
||||
10585000,0.9819,-0.005058,-0.01169,0.1889,0.003699,0.009361,-0.0005502,0.0009072,-0.002531,-0.0437,-1.76e-05,-5.818e-05,-3.169e-06,-2.091e-05,2.999e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,8.432e-06,0.0004205,0.0004206,0.0002249,0.04165,0.04165,0.03527,0.08497,0.08497,0.0751,5.569e-09,5.573e-09,8.406e-09,3.715e-06,3.715e-06,7.672e-08,0,0,0,0,0,0,0,0
|
||||
10685000,0.9819,-0.004996,-0.01172,0.1889,0.003269,0.01038,-0.0004444,0.001248,-0.001548,-0.04301,-1.76e-05,-5.818e-05,-3.332e-06,-2.092e-05,2.999e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,8.499e-06,0.0004301,0.0004302,0.0002268,0.05195,0.05195,0.03531,0.08707,0.08707,0.07336,5.569e-09,5.573e-09,8.293e-09,3.715e-06,3.715e-06,7.526e-08,0,0,0,0,0,0,0,0
|
||||
10785000,0.9819,-0.005147,-0.01177,0.1889,0.003243,0.009486,0.0003639,0.001048,-0.001253,-0.04061,-1.728e-05,-5.838e-05,-3.501e-06,-1.828e-05,3.418e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,8.479e-06,0.0004143,0.0004144,0.0002264,0.05386,0.05386,0.03318,0.06634,0.06634,0.07073,5.467e-09,5.471e-09,8.141e-09,3.697e-06,3.698e-06,7.352e-08,0,0,0,0,0,0,0,0
|
||||
10885000,0.9819,-0.005108,-0.01181,0.1888,0.002759,0.01251,0.000491,0.001351,-0.0002101,-0.04044,-1.726e-05,-5.839e-05,-2.834e-06,-1.828e-05,3.418e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,8.474e-06,0.0004239,0.000424,0.0002259,0.06851,0.06851,0.03306,0.06975,0.06975,0.0692,5.467e-09,5.471e-09,7.988e-09,3.697e-06,3.698e-06,7.2e-08,0,0,0,0,0,0,0,0
|
||||
10985000,0.9819,-0.005241,-0.01188,0.1888,0.0004488,0.01742,0.00244,0.001046,0.0002654,-0.03802,-1.699e-05,-5.855e-05,-2.902e-06,-1.626e-05,3.741e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.449e-06,0.0003883,0.0003884,0.0002256,0.0666,0.0666,0.03104,0.05685,0.05685,0.06764,5.283e-09,5.287e-09,7.834e-09,3.67e-06,3.67e-06,7.066e-08,0,0,0,0,0,0,0,0
|
||||
11085000,0.9819,-0.005354,-0.01186,0.189,0.0002146,0.02246,0.004243,0.001051,0.0022,-0.03573,-1.701e-05,-5.854e-05,-3.652e-06,-1.628e-05,3.74e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.445e-06,0.0003976,0.0003977,0.0002252,0.08353,0.08354,0.03077,0.06174,0.06174,0.06714,5.283e-09,5.287e-09,7.679e-09,3.67e-06,3.67e-06,6.949e-08,0,0,0,0,0,0,0,0
|
||||
11185000,0.9819,-0.005659,-0.01187,0.189,0.001268,0.02097,0.007416,0.001985,0.00158,-0.03139,-1.637e-05,-5.852e-05,-3.99e-06,-1.624e-05,4.477e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.415e-06,0.0003502,0.0003503,0.0002249,0.07533,0.07533,0.02887,0.05206,0.05206,0.06618,5.05e-09,5.053e-09,7.524e-09,3.64e-06,3.64e-06,6.844e-08,0,0,0,0,0,0,0,0
|
||||
11285000,0.9819,-0.005653,-0.0119,0.1891,-0.0004139,0.02272,0.008417,0.001986,0.003818,-0.03186,-1.637e-05,-5.852e-05,-4.128e-06,-1.623e-05,4.478e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.409e-06,0.0003588,0.0003589,0.0002245,0.09255,0.09255,0.02848,0.0583,0.0583,0.06632,5.05e-09,5.053e-09,7.369e-09,3.64e-06,3.64e-06,6.754e-08,0,0,0,0,0,0,0,0
|
||||
11385000,0.9819,-0.005837,-0.01185,0.1891,-0.001544,0.01901,0.00752,0.001532,0.002396,-0.03378,-1.58e-05,-5.875e-05,-4.133e-06,-1.368e-05,5.069e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.473e-06,0.0003105,0.0003105,0.0002265,0.0788,0.0788,0.02684,0.04975,0.04975,0.06676,4.809e-09,4.812e-09,7.253e-09,3.613e-06,3.614e-06,6.691e-08,0,0,0,0,0,0,0,0
|
||||
11485000,0.9819,-0.00574,-0.01182,0.1889,-0.003797,0.01999,0.00919,0.001216,0.00437,-0.03068,-1.579e-05,-5.876e-05,-3.819e-06,-1.369e-05,5.067e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.457e-06,0.0003184,0.0003185,0.0002262,0.09498,0.09498,0.02637,0.05702,0.05702,0.06727,4.809e-09,4.812e-09,7.098e-09,3.613e-06,3.614e-06,6.619e-08,0,0,0,0,0,0,0,0
|
||||
11585000,0.9819,-0.006061,-0.0118,0.1889,-0.001362,0.0157,0.009641,0.001242,0.002587,-0.02958,-1.527e-05,-5.888e-05,-3.734e-06,-1.248e-05,5.554e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.434e-06,0.0002759,0.000276,0.0002258,0.07808,0.07808,0.02472,0.0487,0.0487,0.06674,4.587e-09,4.59e-09,6.944e-09,3.594e-06,3.594e-06,6.554e-08,0,0,0,0,0,0,0,0
|
||||
11685000,0.9819,-0.006015,-0.01174,0.1888,-0.001715,0.01927,0.01132,0.001098,0.004331,-0.02958,-1.526e-05,-5.889e-05,-3.432e-06,-1.247e-05,5.554e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.423e-06,0.0002833,0.0002833,0.0002254,0.09257,0.09257,0.02419,0.05661,0.05661,0.06742,4.587e-09,4.59e-09,6.791e-09,3.594e-06,3.594e-06,6.497e-08,0,0,0,0,0,0,0,0
|
||||
11785000,0.982,-0.006363,-0.0117,0.1887,-0.002421,0.01431,0.01207,0.0009324,0.0008645,-0.02713,-1.456e-05,-5.913e-05,-2.6e-06,-1.054e-05,6.091e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.404e-06,0.0002488,0.0002489,0.0002249,0.07486,0.07486,0.02266,0.04825,0.04825,0.06691,4.393e-09,4.395e-09,6.639e-09,3.581e-06,3.582e-06,6.447e-08,0,0,0,0,0,0,0,0
|
||||
11885000,0.982,-0.006437,-0.0116,0.1887,-0.0003793,0.01535,0.01102,0.0007212,0.002302,-0.02611,-1.456e-05,-5.913e-05,-2.676e-06,-1.054e-05,6.091e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.387e-06,0.0002557,0.0002558,0.0002245,0.08763,0.08764,0.0221,0.0565,0.0565,0.06763,4.393e-09,4.395e-09,6.488e-09,3.581e-06,3.582e-06,6.403e-08,0,0,0,0,0,0,0,0
|
||||
11985000,0.982,-0.006619,-0.01171,0.1885,0.002445,0.01465,0.01008,0.002215,0.0005506,-0.02893,-1.427e-05,-5.901e-05,-2.382e-06,-1.108e-05,6.305e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.446e-06,0.0002288,0.0002288,0.0002263,0.07051,0.07051,0.02089,0.04806,0.04806,0.06824,4.224e-09,4.227e-09,6.376e-09,3.574e-06,3.574e-06,6.373e-08,0,0,0,0,0,0,0,0
|
||||
12085000,0.982,-0.006531,-0.01176,0.1886,0.003576,0.01502,0.01256,0.002521,0.001999,-0.02257,-1.427e-05,-5.901e-05,-2.349e-06,-1.109e-05,6.304e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.433e-06,0.0002354,0.0002354,0.0002258,0.08167,0.08167,0.02033,0.05644,0.05644,0.06894,4.224e-09,4.227e-09,6.228e-09,3.574e-06,3.574e-06,6.338e-08,0,0,0,0,0,0,0,0
|
||||
12185000,0.982,-0.006471,-0.01173,0.1885,0.0034,0.01342,0.01187,0.001878,0.002347,-0.02117,-1.421e-05,-5.913e-05,-2.629e-06,-1.044e-05,6.333e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.401e-06,0.0002146,0.0002147,0.0002253,0.06587,0.06587,0.01908,0.04798,0.04798,0.06833,4.076e-09,4.079e-09,6.082e-09,3.57e-06,3.571e-06,6.307e-08,0,0,0,0,0,0,0,0
|
||||
12285000,0.982,-0.006516,-0.01172,0.1886,0.0006241,0.0126,0.01022,0.00209,0.003641,-0.02083,-1.422e-05,-5.913e-05,-2.679e-06,-1.044e-05,6.333e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.382e-06,0.000221,0.000221,0.0002247,0.07569,0.07569,0.01852,0.05634,0.05634,0.06893,4.076e-09,4.079e-09,5.938e-09,3.57e-06,3.571e-06,6.28e-08,0,0,0,0,0,0,0,0
|
||||
12385000,0.982,-0.006632,-0.01166,0.1885,-3.265e-05,0.009199,0.01067,0.001745,0.002154,-0.02398,-1.397e-05,-5.923e-05,-2.629e-06,-1.003e-05,6.404e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.348e-06,0.0002049,0.0002049,0.000224,0.06138,0.06138,0.01741,0.04793,0.04793,0.06824,3.941e-09,3.944e-09,5.795e-09,3.569e-06,3.569e-06,6.255e-08,0,0,0,0,0,0,0,0
|
||||
12485000,0.982,-0.006627,-0.01167,0.1885,1.358e-07,0.01037,0.01447,0.001752,0.003114,-0.02224,-1.397e-05,-5.923e-05,-2.616e-06,-1.003e-05,6.404e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.332e-06,0.0002111,0.0002111,0.0002234,0.07004,0.07004,0.01689,0.05617,0.05617,0.06873,3.941e-09,3.944e-09,5.655e-09,3.569e-06,3.569e-06,6.234e-08,0,0,0,0,0,0,0,0
|
||||
12585000,0.982,-0.006776,-0.01165,0.1886,0.003676,0.004118,0.01606,0.003239,0.0001634,-0.02127,-1.352e-05,-5.919e-05,-2.703e-06,-9.9e-06,6.438e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.308e-06,0.0001984,0.0001985,0.0002227,0.05725,0.05725,0.01591,0.04786,0.04786,0.06797,3.815e-09,3.818e-09,5.517e-09,3.568e-06,3.568e-06,6.214e-08,0,0,0,0,0,0,0,0
|
||||
12685000,0.982,-0.006744,-0.01166,0.1885,0.003589,0.002576,0.01614,0.003546,0.0004974,-0.01866,-1.352e-05,-5.919e-05,-2.665e-06,-9.896e-06,6.438e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.364e-06,0.0002046,0.0002046,0.0002242,0.06506,0.06506,0.01559,0.05593,0.05593,0.06952,3.815e-09,3.818e-09,5.415e-09,3.568e-06,3.568e-06,6.201e-08,0,0,0,0,0,0,0,0
|
||||
12785000,0.982,-0.006966,-0.01157,0.1882,0.005268,-0.0004038,0.01727,0.003952,-0.002906,-0.01741,-1.301e-05,-5.914e-05,-1.585e-06,-9.078e-06,6.345e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.328e-06,0.0001944,0.0001944,0.0002234,0.05365,0.05365,0.01473,0.04776,0.04776,0.06868,3.693e-09,3.695e-09,5.281e-09,3.567e-06,3.567e-06,6.185e-08,0,0,0,0,0,0,0,0
|
||||
12885000,0.9821,-0.006945,-0.01151,0.1879,0.004816,-0.001578,0.01803,0.004493,-0.003005,-0.01445,-1.299e-05,-5.915e-05,-9.284e-07,-9.06e-06,6.344e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.292e-06,0.0002004,0.0002005,0.0002226,0.06076,0.06076,0.01429,0.05565,0.05565,0.06892,3.693e-09,3.695e-09,5.15e-09,3.567e-06,3.567e-06,6.171e-08,0,0,0,0,0,0,0,0
|
||||
12985000,0.9821,-0.00695,-0.0115,0.1877,0.003638,0.0001771,0.01838,0.003409,-0.002367,-0.0132,-1.305e-05,-5.925e-05,-3.47e-07,-9.178e-06,6.345e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.251e-06,0.0001919,0.000192,0.0002218,0.05055,0.05055,0.01354,0.04763,0.04763,0.06804,3.571e-09,3.573e-09,5.021e-09,3.566e-06,3.566e-06,6.156e-08,0,0,0,0,0,0,0,0
|
||||
13085000,0.9822,-0.006954,-0.01142,0.1876,0.004456,0.00054,0.01675,0.003811,-0.002286,-0.01353,-1.304e-05,-5.927e-05,3.957e-07,-9.174e-06,6.345e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.226e-06,0.0001979,0.000198,0.0002209,0.05712,0.05712,0.01316,0.05532,0.05532,0.06815,3.571e-09,3.574e-09,4.895e-09,3.566e-06,3.566e-06,6.144e-08,0,0,0,0,0,0,0,0
|
||||
13185000,0.9822,-0.006981,-0.01138,0.1875,0.0009994,-0.001212,0.01585,0.0009358,-0.003486,-0.01281,-1.291e-05,-5.95e-05,8.84e-07,-9.568e-06,6.252e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.193e-06,0.0001906,0.0001906,0.0002199,0.04795,0.04795,0.01251,0.04747,0.04747,0.06724,3.447e-09,3.449e-09,4.772e-09,3.563e-06,3.563e-06,6.131e-08,0,0,0,0,0,0,0,0
|
||||
13285000,0.9822,-0.006988,-0.01137,0.1874,-0.0001161,-0.001887,0.01405,0.0009124,-0.003626,-0.01245,-1.291e-05,-5.95e-05,9.735e-07,-9.574e-06,6.253e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.238e-06,0.0001965,0.0001966,0.0002212,0.05412,0.05412,0.01231,0.05497,0.05497,0.06842,3.447e-09,3.449e-09,4.681e-09,3.563e-06,3.563e-06,6.124e-08,0,0,0,0,0,0,0,0
|
||||
13385000,0.9822,-0.006943,-0.01148,0.1874,-0.0005166,-0.0005732,0.01312,0.0007429,-0.002795,-0.01272,-1.296e-05,-5.948e-05,8.683e-07,-9.506e-06,6.269e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.197e-06,0.0001899,0.0001899,0.0002202,0.0458,0.0458,0.01175,0.04729,0.04729,0.06746,3.319e-09,3.321e-09,4.562e-09,3.558e-06,3.558e-06,6.111e-08,0,0,0,0,0,0,0,0
|
||||
13485000,0.9822,-0.00691,-0.01144,0.1874,2.807e-05,0.001476,0.01387,0.0007174,-0.002703,-0.01418,-1.296e-05,-5.948e-05,1.011e-06,-9.524e-06,6.271e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.16e-06,0.0001957,0.0001958,0.0002192,0.05164,0.05164,0.01147,0.0546,0.0546,0.06739,3.319e-09,3.321e-09,4.446e-09,3.558e-06,3.558e-06,6.102e-08,0,0,0,0,0,0,0,0
|
||||
13585000,0.9822,-0.00693,-0.01155,0.1875,0.004256,0.0009514,0.01529,0.003683,-0.002326,-0.01608,-1.279e-05,-5.91e-05,8.99e-07,-6.772e-06,6.132e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.124e-06,0.0001895,0.0001895,0.0002181,0.04403,0.04403,0.01099,0.04709,0.04709,0.06644,3.185e-09,3.187e-09,4.332e-09,3.551e-06,3.551e-06,6.089e-08,0,0,0,0,0,0,0,0
|
||||
13685000,0.9822,-0.006862,-0.01147,0.1873,0.003613,-0.0002652,0.0149,0.004068,-0.002294,-0.01381,-1.278e-05,-5.911e-05,1.313e-06,-6.76e-06,6.132e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.077e-06,0.0001953,0.0001953,0.000217,0.04964,0.04964,0.01076,0.05424,0.05424,0.0663,3.185e-09,3.187e-09,4.221e-09,3.551e-06,3.551e-06,6.081e-08,0,0,0,0,0,0,0,0
|
||||
13785000,0.9822,-0.006819,-0.01163,0.1873,0.01065,0.00269,0.01509,0.007713,-0.0003471,-0.01422,-1.281e-05,-5.854e-05,1.168e-06,-1.828e-06,6.134e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.034e-06,0.0001892,0.0001892,0.0002159,0.04264,0.04264,0.01036,0.04687,0.04687,0.06536,3.045e-09,3.047e-09,4.113e-09,3.541e-06,3.542e-06,6.067e-08,0,0,0,0,0,0,0,0
|
||||
13885000,0.9822,-0.006738,-0.0116,0.1871,0.01175,0.003908,0.01638,0.008804,9.148e-06,-0.01192,-1.279e-05,-5.855e-05,1.817e-06,-1.816e-06,6.133e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,7.994e-06,0.0001949,0.0001949,0.0002148,0.04808,0.04808,0.01017,0.05388,0.05388,0.06517,3.045e-09,3.047e-09,4.008e-09,3.541e-06,3.542e-06,6.06e-08,0,0,0,0,0,0,0,0
|
||||
13985000,0.9823,-0.006822,-0.01135,0.1871,0.01209,0.00464,0.01544,0.00688,-0.001555,-0.01166,-1.26e-05,-5.894e-05,2.252e-06,-5.138e-06,5.944e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.031e-06,0.0001887,0.0001887,0.0002158,0.04156,0.04156,0.009938,0.04666,0.04666,0.0653,2.899e-09,2.901e-09,3.93e-09,3.529e-06,3.529e-06,6.046e-08,0,0,0,0,0,0,0,0
|
||||
14085000,0.9822,-0.006807,-0.01128,0.1873,0.009442,0.0005636,0.01726,0.008047,-0.001315,-0.01328,-1.262e-05,-5.893e-05,1.304e-06,-5.177e-06,5.947e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,7.988e-06,0.0001943,0.0001944,0.0002146,0.04686,0.04686,0.009796,0.05354,0.05354,0.06507,2.899e-09,2.901e-09,3.829e-09,3.529e-06,3.529e-06,6.039e-08,0,0,0,0,0,0,0,0
|
||||
14185000,0.9822,-0.0068,-0.01123,0.1875,0.007472,0.001694,0.01628,0.007546,-0.001024,-0.01553,-1.265e-05,-5.894e-05,7.046e-07,-5.239e-06,5.955e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.943e-06,0.000188,0.000188,0.0002134,0.04071,0.04071,0.009512,0.04646,0.04646,0.06414,2.747e-09,2.749e-09,3.731e-09,3.514e-06,3.514e-06,6.021e-08,0,0,0,0,0,0,0,0
|
||||
14285000,0.9822,-0.00672,-0.01122,0.1875,0.008557,0.001478,0.01515,0.008213,-0.0009252,-0.0119,-1.265e-05,-5.894e-05,7.983e-07,-5.214e-06,5.954e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.901e-06,0.0001934,0.0001935,0.0002122,0.04596,0.04596,0.009411,0.05323,0.05323,0.06389,2.747e-09,2.749e-09,3.635e-09,3.514e-06,3.514e-06,6.014e-08,0,0,0,0,0,0,0,0
|
||||
14385000,0.9822,-0.006832,-0.01117,0.1875,0.009584,-0.001522,0.01525,0.007903,-0.00232,-0.008353,-1.241e-05,-5.906e-05,1.15e-06,-6.125e-06,5.685e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.856e-06,0.0001868,0.0001868,0.0002109,0.0401,0.0401,0.009178,0.04627,0.04627,0.06299,2.59e-09,2.592e-09,3.542e-09,3.496e-06,3.496e-06,5.994e-08,0,0,0,0,0,0,0,0
|
||||
14485000,0.9822,-0.006931,-0.01114,0.1876,0.007685,-0.00108,0.01902,0.00869,-0.00246,-0.006149,-1.242e-05,-5.905e-05,6.427e-07,-6.123e-06,5.685e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.807e-06,0.0001921,0.0001921,0.0002097,0.04525,0.04525,0.009114,0.05296,0.05296,0.06273,2.59e-09,2.592e-09,3.451e-09,3.496e-06,3.496e-06,5.987e-08,0,0,0,0,0,0,0,0
|
||||
14585000,0.9822,-0.007021,-0.01095,0.1876,0.005979,-0.001204,0.0177,0.005551,-0.003377,-0.008326,-1.241e-05,-5.954e-05,5.308e-07,-1.163e-05,5.652e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.835e-06,0.0001851,0.0001852,0.0002104,0.03961,0.03961,0.009009,0.04609,0.04609,0.06285,2.43e-09,2.431e-09,3.384e-09,3.475e-06,3.475e-06,5.967e-08,0,0,0,0,0,0,0,0
|
||||
14685000,0.9822,-0.006992,-0.01101,0.1875,0.005385,-0.001029,0.01749,0.006112,-0.003471,-0.007898,-1.24e-05,-5.954e-05,8.359e-07,-1.165e-05,5.654e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.785e-06,0.0001902,0.0001903,0.0002091,0.04473,0.04473,0.008976,0.05271,0.05271,0.06259,2.43e-09,2.432e-09,3.298e-09,3.475e-06,3.475e-06,5.958e-08,0,0,0,0,0,0,0,0
|
||||
14785000,0.9822,-0.006916,-0.011,0.1872,0.006954,0.005322,0.01728,0.004971,0.001335,-0.005929,-1.311e-05,-5.943e-05,1.35e-06,-9.902e-06,6.514e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.73e-06,0.000183,0.000183,0.0002078,0.03925,0.03925,0.008822,0.04594,0.04594,0.06175,2.268e-09,2.27e-09,3.214e-09,3.452e-06,3.452e-06,5.933e-08,0,0,0,0,0,0,0,0
|
||||
14885000,0.9823,-0.006839,-0.01093,0.187,0.005685,0.00355,0.0209,0.005592,0.001782,-0.004998,-1.31e-05,-5.944e-05,1.884e-06,-9.916e-06,6.516e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.678e-06,0.0001879,0.0001879,0.0002065,0.04429,0.04429,0.008819,0.05251,0.05251,0.06149,2.268e-09,2.27e-09,3.132e-09,3.452e-06,3.452e-06,5.924e-08,0,0,0,0,0,0,0,0
|
||||
14985000,0.9823,-0.007008,-0.0108,0.187,0.005021,0.001581,0.02375,0.004454,1.207e-06,-0.003536,-1.288e-05,-5.972e-05,2.164e-06,-1.332e-05,6.244e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.63e-06,0.0001803,0.0001803,0.0002052,0.03891,0.03891,0.008697,0.0458,0.0458,0.0607,2.107e-09,2.108e-09,3.052e-09,3.427e-06,3.427e-06,5.896e-08,0,0,0,0,0,0,0,0
|
||||
15085000,0.9823,-0.006947,-0.01088,0.187,0.005083,0.002558,0.02766,0.00497,0.0001751,-0.001082,-1.287e-05,-5.972e-05,2.179e-06,-1.333e-05,6.245e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.581e-06,0.000185,0.000185,0.0002039,0.04389,0.04389,0.008721,0.05233,0.05233,0.06046,2.107e-09,2.108e-09,2.974e-09,3.427e-06,3.427e-06,5.886e-08,0,0,0,0,0,0,0,0
|
||||
15185000,0.9823,-0.007087,-0.01092,0.187,0.003642,0.001248,0.02812,0.003948,-5.001e-05,-0.0004436,-1.287e-05,-5.987e-05,2.124e-06,-1.533e-05,6.232e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,7.529e-06,0.0001772,0.0001772,0.0002025,0.03861,0.03861,0.008626,0.04569,0.04569,0.05972,1.948e-09,1.949e-09,2.899e-09,3.401e-06,3.401e-06,5.854e-08,0,0,0,0,0,0,0,0
|
||||
15285000,0.9823,-0.007184,-0.01095,0.1868,0.003586,0.0008095,0.02797,0.004337,9.507e-05,-0.0005961,-1.286e-05,-5.988e-05,2.564e-06,-1.539e-05,6.237e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,7.551e-06,0.0001816,0.0001817,0.0002031,0.04355,0.04355,0.008746,0.05219,0.05219,0.0604,1.948e-09,1.949e-09,2.844e-09,3.401e-06,3.401e-06,5.846e-08,0,0,0,0,0,0,0,0
|
||||
15385000,0.9823,-0.007263,-0.01095,0.187,0.004483,0.002964,0.0277,0.003481,0.0001318,-0.001262,-1.289e-05,-6e-05,2.303e-06,-1.707e-05,6.281e-05,-0.001357,0.2042,0.002,0.4335,0,0,0,0,0,7.504e-06,0.0001737,0.0001737,0.0002017,0.03833,0.03833,0.008671,0.04559,0.04559,0.05969,1.792e-09,1.794e-09,2.772e-09,3.373e-06,3.374e-06,5.811e-08,0,0,0,0,0,0,0,0
|
||||
15485000,0.9823,-0.007298,-0.01092,0.187,0.003572,0.0008376,0.02777,0.003876,0.0003574,-0.0003064,-1.289e-05,-6e-05,2.448e-06,-1.711e-05,6.284e-05,-0.001357,0.2042,0.002,0.4335,0,0,0,0,0,7.457e-06,0.0001779,0.0001779,0.0002004,0.0432,0.0432,0.008738,0.05207,0.05207,0.0595,1.793e-09,1.794e-09,2.703e-09,3.373e-06,3.374e-06,5.798e-08,0,0,0,0,0,0,0,0
|
||||
15585000,0.9823,-0.007494,-0.01094,0.1869,0.007371,-0.002785,0.02743,0.005895,-0.003723,-0.00123,-1.215e-05,-5.996e-05,2.745e-06,-1.669e-05,5.284e-05,-0.001356,0.2042,0.002,0.4335,0,0,0,0,0,7.41e-06,0.0001698,0.0001698,0.000199,0.03802,0.03802,0.008682,0.04552,0.04552,0.05883,1.643e-09,1.644e-09,2.635e-09,3.346e-06,3.346e-06,5.759e-08,0,0,0,0,0,0,0,0
|
||||
15685000,0.9823,-0.007458,-0.01093,0.1868,0.009194,-0.0058,0.02787,0.006705,-0.004152,-5.783e-05,-1.215e-05,-5.997e-05,3.137e-06,-1.696e-05,5.311e-05,-0.001356,0.2042,0.002,0.4335,0,0,0,0,0,7.355e-06,0.0001738,0.0001738,0.0001977,0.0428,0.0428,0.008766,0.05197,0.05197,0.05867,1.643e-09,1.644e-09,2.569e-09,3.346e-06,3.346e-06,5.745e-08,0,0,0,0,0,0,0,0
|
||||
15785000,0.9824,-0.007457,-0.0108,0.1866,0.006093,-0.005908,0.02733,0.00518,-0.003324,0.001246,-1.237e-05,-6.015e-05,3.675e-06,-1.958e-05,5.663e-05,-0.001355,0.2042,0.002,0.4335,0,0,0,0,0,7.3e-06,0.0001657,0.0001657,0.0001963,0.03767,0.03767,0.008724,0.04545,0.04545,0.05805,1.501e-09,1.501e-09,2.505e-09,3.318e-06,3.318e-06,5.703e-08,0,0,0,0,0,0,0,0
|
||||
15885000,0.9823,-0.007502,-0.01085,0.1867,0.004817,-0.003774,0.02852,0.005661,-0.003812,0.001363,-1.237e-05,-6.015e-05,3.382e-06,-1.95e-05,5.651e-05,-0.001355,0.2042,0.002,0.4335,0,0,0,0,0,7.317e-06,0.0001694,0.0001694,0.0001967,0.04235,0.04235,0.00889,0.05188,0.05188,0.05878,1.501e-09,1.501e-09,2.459e-09,3.318e-06,3.318e-06,5.691e-08,0,0,0,0,0,0,0,0
|
||||
15985000,0.9823,-0.007315,-0.01079,0.1866,0.003248,-0.002356,0.02512,0.004516,-0.002975,-0.0007267,-1.252e-05,-6.024e-05,3.341e-06,-2.108e-05,5.871e-05,-0.001352,0.2042,0.002,0.4335,0,0,0,0,0,7.259e-06,0.0001614,0.0001614,0.0001954,0.03728,0.03728,0.008858,0.04539,0.04539,0.05819,1.366e-09,1.367e-09,2.398e-09,3.29e-06,3.29e-06,5.644e-08,0,0,0,0,0,0,0,0
|
||||
16085000,0.9823,-0.007277,-0.01078,0.1866,0.00178,-0.003367,0.02372,0.004697,-0.003277,0.0008757,-1.252e-05,-6.024e-05,3.086e-06,-2.114e-05,5.874e-05,-0.001352,0.2042,0.002,0.4335,0,0,0,0,0,7.199e-06,0.0001649,0.0001649,0.000194,0.04187,0.04187,0.008967,0.05181,0.05181,0.0581,1.366e-09,1.367e-09,2.339e-09,3.29e-06,3.29e-06,5.627e-08,0,0,0,0,0,0,0,0
|
||||
16185000,0.9823,-0.007183,-0.01067,0.1867,-0.002034,-0.001712,0.02267,0.002417,-0.002489,-0.002109,-1.273e-05,-6.044e-05,2.772e-06,-2.449e-05,6.174e-05,-0.001351,0.2042,0.002,0.4335,0,0,0,0,0,7.142e-06,0.000157,0.0001571,0.0001927,0.03682,0.03682,0.008942,0.04535,0.04535,0.05755,1.241e-09,1.241e-09,2.282e-09,3.263e-06,3.263e-06,5.577e-08,0,0,0,0,0,0,0,0
|
||||
16285000,0.9823,-0.007232,-0.0106,0.1867,-0.001644,-0.003008,0.02229,0.002212,-0.002739,-0.0005993,-1.272e-05,-6.045e-05,2.906e-06,-2.457e-05,6.181e-05,-0.00135,0.2042,0.002,0.4335,0,0,0,0,0,7.096e-06,0.0001602,0.0001602,0.0001913,0.04129,0.04129,0.009061,0.05173,0.05173,0.0575,1.241e-09,1.241e-09,2.226e-09,3.263e-06,3.263e-06,5.557e-08,0,0,0,0,0,0,0,0
|
||||
16385000,0.9824,-0.007189,-0.01062,0.1866,0.0008453,-0.002357,0.02296,0.003289,-0.00215,-0.000618,-1.271e-05,-6.024e-05,3.234e-06,-2.144e-05,6.172e-05,-0.001349,0.2042,0.002,0.4335,0,0,0,0,0,7.047e-06,0.0001526,0.0001526,0.0001899,0.0363,0.0363,0.009041,0.0453,0.0453,0.057,1.124e-09,1.124e-09,2.172e-09,3.237e-06,3.237e-06,5.503e-08,0,0,0,0,0,0,0,0
|
||||
16485000,0.9824,-0.007289,-0.01061,0.1866,0.003307,-0.003654,0.02484,0.003492,-0.002516,0.00281,-1.271e-05,-6.024e-05,3.155e-06,-2.138e-05,6.166e-05,-0.00135,0.2042,0.002,0.4335,0,0,0,0,0,6.994e-06,0.0001556,0.0001556,0.0001886,0.04063,0.04063,0.009167,0.05166,0.05166,0.05698,1.124e-09,1.125e-09,2.12e-09,3.237e-06,3.237e-06,5.481e-08,0,0,0,0,0,0,0,0
|
||||
16585000,0.9824,-0.007271,-0.0106,0.1866,0.007241,-0.004486,0.0283,0.003059,-0.001991,0.003511,-1.283e-05,-6.028e-05,3.118e-06,-2.196e-05,6.341e-05,-0.001349,0.2042,0.002,0.4335,0,0,0,0,0,7.001e-06,0.0001483,0.0001483,0.0001889,0.0357,0.0357,0.009216,0.04525,0.04525,0.05733,1.017e-09,1.017e-09,2.081e-09,3.212e-06,3.212e-06,5.429e-08,0,0,0,0,0,0,0,0
|
||||
16685000,0.9824,-0.007327,-0.01054,0.1865,0.008508,-0.008086,0.02861,0.003842,-0.002597,0.004904,-1.283e-05,-6.028e-05,3.345e-06,-2.212e-05,6.356e-05,-0.001349,0.2042,0.002,0.4335,0,0,0,0,0,6.95e-06,0.000151,0.000151,0.0001875,0.0399,0.0399,0.009347,0.05157,0.05158,0.05735,1.017e-09,1.017e-09,2.031e-09,3.212e-06,3.212e-06,5.405e-08,0,0,0,0,0,0,0,0
|
||||
16785000,0.9824,-0.007164,-0.01042,0.1864,0.00964,-0.007929,0.0274,0.003012,-0.001904,0.004066,-1.305e-05,-6.039e-05,3.487e-06,-2.39e-05,6.726e-05,-0.001347,0.2042,0.002,0.4335,0,0,0,0,0,6.894e-06,0.000144,0.000144,0.0001862,0.03508,0.03509,0.009328,0.0452,0.0452,0.05691,9.19e-10,9.193e-10,1.983e-09,3.189e-06,3.189e-06,5.344e-08,0,0,0,0,0,0,0,0
|
||||
16885000,0.9824,-0.00713,-0.01051,0.1861,0.008453,-0.007834,0.0287,0.003911,-0.002677,0.003259,-1.304e-05,-6.039e-05,3.904e-06,-2.413e-05,6.743e-05,-0.001346,0.2042,0.002,0.4335,0,0,0,0,0,6.838e-06,0.0001466,0.0001466,0.0001849,0.03913,0.03913,0.009461,0.05148,0.05148,0.05697,9.19e-10,9.193e-10,1.936e-09,3.189e-06,3.189e-06,5.318e-08,0,0,0,0,0,0,0,0
|
||||
16985000,0.9824,-0.007146,-0.01055,0.1861,0.008534,-0.008066,0.02886,0.003674,-0.002014,0.002305,-1.315e-05,-6.027e-05,4.003e-06,-2.197e-05,6.916e-05,-0.001345,0.2042,0.002,0.4335,0,0,0,0,0,6.79e-06,0.0001399,0.0001399,0.0001836,0.03441,0.03441,0.009438,0.04514,0.04514,0.05656,8.299e-10,8.302e-10,1.89e-09,3.166e-06,3.167e-06,5.253e-08,0,0,0,0,0,0,0,0
|
||||
17085000,0.9824,-0.007246,-0.01048,0.1861,0.009492,-0.01038,0.02907,0.004581,-0.002954,0.002142,-1.315e-05,-6.026e-05,3.908e-06,-2.206e-05,6.918e-05,-0.001344,0.2042,0.002,0.4335,0,0,0,0,0,6.74e-06,0.0001423,0.0001422,0.0001823,0.03833,0.03833,0.009572,0.05138,0.05138,0.05665,8.3e-10,8.302e-10,1.846e-09,3.166e-06,3.167e-06,5.225e-08,0,0,0,0,0,0,0,0
|
||||
17185000,0.9824,-0.007368,-0.01037,0.1863,0.008814,-0.01528,0.03023,0.002961,-0.006673,0.004804,-1.301e-05,-6.043e-05,3.524e-06,-2.447e-05,6.668e-05,-0.001343,0.2042,0.002,0.4335,0,0,0,0,0,6.751e-06,0.000136,0.000136,0.0001825,0.03371,0.03371,0.009616,0.04507,0.04507,0.05708,7.493e-10,7.495e-10,1.813e-09,3.146e-06,3.146e-06,5.164e-08,0,0,0,0,0,0,0,0
|
||||
17285000,0.9824,-0.007322,-0.01037,0.1865,0.009275,-0.01575,0.02974,0.003855,-0.008197,0.005333,-1.302e-05,-6.042e-05,3.157e-06,-2.441e-05,6.656e-05,-0.001342,0.2042,0.002,0.4335,0,0,0,0,0,6.702e-06,0.0001381,0.0001381,0.0001812,0.03749,0.03749,0.009749,0.05127,0.05127,0.0572,7.494e-10,7.495e-10,1.771e-09,3.146e-06,3.146e-06,5.135e-08,0,0,0,0,0,0,0,0
|
||||
17385000,0.9824,-0.007203,-0.01038,0.1863,0.006486,-0.01591,0.02979,0.005307,-0.005139,0.005966,-1.337e-05,-6.015e-05,3.459e-06,-2.017e-05,7.259e-05,-0.001341,0.2042,0.002,0.4335,0,0,0,0,0,6.645e-06,0.0001322,0.0001322,0.0001799,0.033,0.033,0.009716,0.045,0.045,0.05683,6.765e-10,6.767e-10,1.73e-09,3.127e-06,3.127e-06,5.064e-08,0,0,0,0,0,0,0,0
|
||||
17485000,0.9824,-0.007201,-0.01043,0.1863,0.004238,-0.01667,0.02929,0.005777,-0.006742,0.006492,-1.337e-05,-6.015e-05,3.316e-06,-2.022e-05,7.258e-05,-0.00134,0.2042,0.002,0.4335,0,0,0,0,0,6.596e-06,0.0001342,0.0001342,0.0001786,0.03663,0.03663,0.009847,0.05114,0.05114,0.05699,6.766e-10,6.768e-10,1.69e-09,3.127e-06,3.127e-06,5.031e-08,0,0,0,0,0,0,0,0
|
||||
17585000,0.9824,-0.007119,-0.0103,0.1863,0.0006678,-0.01289,0.02833,0.002128,-0.005044,0.004661,-1.375e-05,-6.039e-05,3.311e-06,-2.442e-05,7.908e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.546e-06,0.0001287,0.0001286,0.0001773,0.03226,0.03226,0.009807,0.04492,0.04492,0.05664,6.111e-10,6.112e-10,1.651e-09,3.109e-06,3.11e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17685000,0.9824,-0.007214,-0.01022,0.1861,-0.000336,-0.0134,0.02964,0.002165,-0.006381,0.007017,-1.375e-05,-6.039e-05,3.365e-06,-2.447e-05,7.912e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.49e-06,0.0001305,0.0001305,0.000176,0.03575,0.03575,0.009933,0.051,0.05101,0.05681,6.112e-10,6.113e-10,1.614e-09,3.109e-06,3.11e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17785000,0.9825,-0.007176,-0.01021,0.1859,0.002062,-0.01163,0.02944,0.003111,-0.005526,0.01063,-1.396e-05,-6.017e-05,3.467e-06,-2.079e-05,8.268e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.429e-06,0.0001253,0.0001253,0.0001748,0.03151,0.03151,0.009886,0.04482,0.04482,0.05648,5.524e-10,5.525e-10,1.577e-09,3.093e-06,3.093e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17885000,0.9825,-0.007123,-0.01032,0.1859,0.004344,-0.01385,0.02892,0.003487,-0.006817,0.01561,-1.396e-05,-6.018e-05,3.512e-06,-2.071e-05,8.263e-05,-0.001339,0.2042,0.002,0.4335,0,0,0,0,0,6.432e-06,0.000127,0.000127,0.0001749,0.03488,0.03488,0.01008,0.05085,0.05085,0.05749,5.525e-10,5.526e-10,1.55e-09,3.093e-06,3.093e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17985000,0.9825,-0.00691,-0.0103,0.1858,0.003277,-0.007574,0.02867,0.002764,-0.001427,0.01572,-1.452e-05,-6.003e-05,3.46e-06,-1.841e-05,9.231e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.38e-06,0.0001222,0.0001221,0.0001737,0.03077,0.03077,0.01003,0.04472,0.04472,0.05717,4.998e-10,4.998e-10,1.515e-09,3.078e-06,3.078e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18085000,0.9825,-0.006994,-0.01027,0.1858,0.00349,-0.008062,0.02833,0.003177,-0.00224,0.01513,-1.452e-05,-6.003e-05,3.447e-06,-1.854e-05,9.238e-05,-0.001337,0.2042,0.002,0.4335,0,0,0,0,0,6.334e-06,0.0001237,0.0001237,0.0001724,0.03399,0.03399,0.01015,0.05069,0.05069,0.05738,4.999e-10,4.999e-10,1.482e-09,3.078e-06,3.078e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18185000,0.9825,-0.007006,-0.01031,0.1856,0.003327,-0.006963,0.02908,0.003746,-0.001666,0.0135,-1.458e-05,-5.995e-05,3.865e-06,-1.699e-05,9.37e-05,-0.001335,0.2042,0.002,0.4335,0,0,0,0,0,6.285e-06,0.0001192,0.0001192,0.0001712,0.03001,0.03001,0.01008,0.04461,0.04461,0.05707,4.527e-10,4.528e-10,1.449e-09,3.064e-06,3.065e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18285000,0.9825,-0.00704,-0.01029,0.1856,0.004154,-0.007649,0.02839,0.004059,-0.002384,0.01257,-1.458e-05,-5.995e-05,3.88e-06,-1.72e-05,9.383e-05,-0.001334,0.2042,0.002,0.4335,0,0,0,0,0,6.241e-06,0.0001206,0.0001206,0.00017,0.0331,0.0331,0.01019,0.05051,0.05051,0.05729,4.528e-10,4.528e-10,1.417e-09,3.064e-06,3.065e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18385000,0.9825,-0.006963,-0.01032,0.1857,0.004743,-0.006823,0.02818,0.005679,-0.00181,0.01215,-1.462e-05,-5.978e-05,3.726e-06,-1.443e-05,9.453e-05,-0.001332,0.2042,0.002,0.4335,0,0,0,0,0,6.199e-06,0.0001165,0.0001164,0.0001688,0.02926,0.02926,0.01012,0.0445,0.0445,0.05698,4.107e-10,4.107e-10,1.386e-09,3.051e-06,3.052e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18485000,0.9825,-0.006997,-0.01033,0.1857,0.007656,-0.00647,0.02789,0.006386,-0.002483,0.01477,-1.462e-05,-5.978e-05,3.868e-06,-1.438e-05,9.449e-05,-0.001332,0.2042,0.002,0.4335,0,0,0,0,0,6.203e-06,0.0001178,0.0001178,0.0001689,0.03223,0.03223,0.01031,0.05033,0.05033,0.05805,4.107e-10,4.108e-10,1.363e-09,3.051e-06,3.052e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18585000,0.9825,-0.00683,-0.0102,0.1858,0.006288,-0.005993,0.02758,0.00513,-0.001951,0.01643,-1.474e-05,-5.985e-05,3.716e-06,-1.587e-05,9.666e-05,-0.001331,0.2042,0.002,0.4335,0,0,0,0,0,6.163e-06,0.0001139,0.0001139,0.0001677,0.02853,0.02853,0.01023,0.04437,0.04437,0.05773,3.731e-10,3.731e-10,1.333e-09,3.04e-06,3.04e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18685000,0.9825,-0.006811,-0.01015,0.1857,0.005914,-0.00497,0.02613,0.005746,-0.002502,0.01588,-1.474e-05,-5.986e-05,3.782e-06,-1.602e-05,9.674e-05,-0.00133,0.2042,0.002,0.4335,0,0,0,0,0,6.116e-06,0.0001151,0.0001151,0.0001665,0.03137,0.03137,0.01033,0.05013,0.05013,0.05798,3.731e-10,3.732e-10,1.304e-09,3.04e-06,3.04e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18785000,0.9825,-0.006749,-0.01005,0.1857,0.004836,-0.004871,0.02549,0.005766,-0.002037,0.0126,-1.479e-05,-5.983e-05,3.772e-06,-1.594e-05,9.797e-05,-0.001327,0.2042,0.002,0.4335,0,0,0,0,0,6.072e-06,0.0001115,0.0001115,0.0001653,0.0278,0.0278,0.01024,0.04423,0.04423,0.05766,3.395e-10,3.395e-10,1.276e-09,3.029e-06,3.03e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18885000,0.9825,-0.006702,-0.01006,0.1858,0.003906,-0.004516,0.02404,0.006172,-0.002567,0.0096,-1.479e-05,-5.983e-05,3.621e-06,-1.629e-05,9.82e-05,-0.001325,0.2042,0.002,0.4335,0,0,0,0,0,6.027e-06,0.0001127,0.0001126,0.0001641,0.03053,0.03053,0.01034,0.04992,0.04992,0.05791,3.396e-10,3.396e-10,1.249e-09,3.029e-06,3.03e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18985000,0.9825,-0.006686,-0.0101,0.1859,0.002352,-0.004659,0.02457,0.005074,-0.002066,0.01244,-1.487e-05,-5.987e-05,3.583e-06,-1.704e-05,9.957e-05,-0.001325,0.2042,0.002,0.4335,0,0,0,0,0,5.99e-06,0.0001093,0.0001093,0.000163,0.02709,0.02709,0.01025,0.04409,0.04409,0.05759,3.095e-10,3.095e-10,1.222e-09,3.02e-06,3.02e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19085000,0.9825,-0.00676,-0.01011,0.1858,0.0003673,-0.004738,0.02513,0.005251,-0.002501,0.008698,-1.487e-05,-5.987e-05,3.672e-06,-1.735e-05,9.975e-05,-0.001323,0.2042,0.002,0.4335,0,0,0,0,0,5.949e-06,0.0001104,0.0001104,0.0001618,0.0297,0.0297,0.01034,0.04971,0.04971,0.05785,3.096e-10,3.096e-10,1.197e-09,3.02e-06,3.02e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19185000,0.9825,-0.006655,-0.01023,0.186,-0.001009,-0.0047,0.02518,0.00436,-0.002068,0.008784,-1.493e-05,-5.987e-05,3.401e-06,-1.762e-05,0.000101,-0.001322,0.2042,0.002,0.4335,0,0,0,0,0,5.951e-06,0.0001073,0.0001073,0.0001619,0.02639,0.02639,0.01032,0.04394,0.04394,0.05836,2.827e-10,2.827e-10,1.178e-09,3.011e-06,3.011e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19285000,0.9825,-0.006594,-0.01019,0.186,-0.00211,-0.004637,0.02557,0.004237,-0.002537,0.008925,-1.494e-05,-5.987e-05,3.299e-06,-1.778e-05,0.0001011,-0.001321,0.2042,0.002,0.4335,0,0,0,0,0,5.907e-06,0.0001083,0.0001082,0.0001608,0.0289,0.0289,0.01041,0.04949,0.04949,0.05862,2.827e-10,2.828e-10,1.153e-09,3.011e-06,3.011e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19385000,0.9825,-0.006673,-0.01007,0.186,-0.002115,-0.001215,0.02727,0.003622,-0.0007546,0.007782,-1.506e-05,-5.982e-05,3.148e-06,-1.728e-05,0.0001035,-0.001319,0.2042,0.002,0.4335,0,0,0,0,0,5.863e-06,0.0001054,0.0001054,0.0001597,0.02571,0.02571,0.01031,0.04379,0.04379,0.05828,2.587e-10,2.587e-10,1.129e-09,3.003e-06,3.003e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19485000,0.9824,-0.006724,-0.009977,0.1862,-0.003051,-0.001173,0.02659,0.003323,-0.0008731,0.007595,-1.506e-05,-5.982e-05,2.871e-06,-1.753e-05,0.0001037,-0.001318,0.2042,0.002,0.4335,0,0,0,0,0,5.828e-06,0.0001063,0.0001063,0.0001585,0.02813,0.02813,0.01039,0.04926,0.04926,0.05853,2.588e-10,2.588e-10,1.106e-09,3.003e-06,3.003e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19585000,0.9824,-0.006673,-0.01009,0.1863,-0.004829,-0.003988,0.02806,0.003886,-0.001939,0.007838,-1.498e-05,-5.976e-05,2.776e-06,-1.66e-05,0.0001021,-0.001317,0.2042,0.002,0.4335,0,0,0,0,0,5.792e-06,0.0001037,0.0001037,0.0001574,0.02506,0.02506,0.01028,0.04363,0.04363,0.05818,2.372e-10,2.372e-10,1.083e-09,2.995e-06,2.996e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19685000,0.9824,-0.006693,-0.01011,0.1862,-0.006186,-0.00277,0.02735,0.003371,-0.002283,0.007797,-1.497e-05,-5.976e-05,2.903e-06,-1.672e-05,0.0001022,-0.001316,0.2042,0.002,0.4335,0,0,0,0,0,5.752e-06,0.0001045,0.0001045,0.0001564,0.02738,0.02738,0.01035,0.04902,0.04902,0.05843,2.373e-10,2.373e-10,1.061e-09,2.995e-06,2.996e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19785000,0.9824,-0.006775,-0.01012,0.1863,-0.006459,-0.001433,0.02621,0.005799,-0.001852,0.004907,-1.495e-05,-5.961e-05,2.778e-06,-1.435e-05,0.0001019,-0.001313,0.2042,0.002,0.4335,0,0,0,0,0,5.753e-06,0.0001021,0.000102,0.0001564,0.02443,0.02443,0.01033,0.04346,0.04346,0.05894,2.18e-10,2.18e-10,1.045e-09,2.989e-06,2.989e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19885000,0.9824,-0.006782,-0.01021,0.1864,-0.00619,-0.0008255,0.02601,0.00511,-0.001923,0.003858,-1.495e-05,-5.961e-05,2.56e-06,-1.461e-05,0.0001021,-0.001312,0.2042,0.002,0.4335,0,0,0,0,0,5.715e-06,0.0001029,0.0001028,0.0001553,0.02666,0.02666,0.0104,0.04878,0.04878,0.05918,2.181e-10,2.181e-10,1.023e-09,2.989e-06,2.989e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19985000,0.9824,-0.0068,-0.01035,0.1863,-0.006273,-0.000755,0.02353,0.005472,-0.0005045,0.0003727,-1.499e-05,-5.95e-05,2.602e-06,-1.285e-05,0.0001031,-0.001309,0.2042,0.002,0.4335,0,0,0,0,0,5.671e-06,0.0001006,0.0001006,0.0001543,0.02382,0.02382,0.01029,0.04329,0.04329,0.05881,2.008e-10,2.008e-10,1.003e-09,2.983e-06,2.983e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20085000,0.9824,-0.006805,-0.01036,0.1862,-0.005744,-0.003165,0.02365,0.004847,-0.0007267,0.00369,-1.499e-05,-5.949e-05,2.569e-06,-1.281e-05,0.0001031,-0.001309,0.2042,0.002,0.4335,0,0,0,0,0,5.628e-06,0.0001013,0.0001013,0.0001532,0.02597,0.02597,0.01036,0.04854,0.04854,0.05905,2.009e-10,2.009e-10,9.828e-10,2.983e-06,2.983e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20185000,0.9824,-0.006809,-0.01047,0.1863,-0.004721,-0.00141,0.02449,0.005901,-0.0005286,0.003364,-1.5e-05,-5.943e-05,2.343e-06,-1.17e-05,0.0001032,-0.001308,0.2042,0.002,0.4335,0,0,0,0,0,5.589e-06,9.922e-05,9.918e-05,0.0001522,0.02382,0.02382,0.01024,0.04313,0.04313,0.05867,1.853e-10,1.853e-10,9.632e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20285000,0.9824,-0.0068,-0.0105,0.1863,-0.007783,-0.001664,0.02483,0.005306,-0.0006073,0.004171,-1.5e-05,-5.942e-05,2.26e-06,-1.17e-05,0.0001032,-0.001308,0.2042,0.002,0.4335,0,0,0,0,0,5.546e-06,9.99e-05,9.986e-05,0.0001511,0.02728,0.02728,0.01031,0.04837,0.04837,0.0589,1.854e-10,1.854e-10,9.442e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20385000,0.9824,-0.006751,-0.0105,0.1863,-0.008437,-0.0007354,0.02391,0.006268,-0.0004316,0.003784,-1.499e-05,-5.935e-05,2.403e-06,-1.17e-05,0.0001032,-0.001306,0.2042,0.002,0.4335,0,0,0,0,0,5.514e-06,9.625e-05,9.622e-05,0.0001501,0.02605,0.02605,0.01019,0.04302,0.04302,0.05852,1.707e-10,1.707e-10,9.256e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20485000,0.9824,-0.006763,-0.01047,0.1862,-0.01274,-0.001639,0.02457,0.005183,-0.0005273,0.003549,-1.499e-05,-5.935e-05,2.316e-06,-1.17e-05,0.0001032,-0.001305,0.2042,0.002,0.4335,0,0,0,0,0,5.508e-06,9.687e-05,9.683e-05,0.0001502,0.0305,0.03051,0.01034,0.04833,0.04833,0.05961,1.708e-10,1.708e-10,9.12e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20585000,0.9825,-0.006738,-0.01052,0.186,-0.01194,-0.002521,0.02426,0.006296,-0.0004413,0.002058,-1.496e-05,-5.926e-05,2.598e-06,-1.17e-05,0.0001032,-0.001303,0.2042,0.002,0.4335,0,0,0,0,0,5.467e-06,9.121e-05,9.117e-05,0.0001492,0.0294,0.02941,0.01022,0.04299,0.04299,0.05921,1.572e-10,1.572e-10,8.943e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20685000,0.9825,-0.006663,-0.01051,0.1861,-0.01394,-0.001461,0.02525,0.005044,-0.0005998,0.002557,-1.496e-05,-5.925e-05,2.359e-06,-1.17e-05,0.0001032,-0.001302,0.2042,0.002,0.4335,0,0,0,0,0,5.427e-06,9.175e-05,9.171e-05,0.0001482,0.03464,0.03465,0.01029,0.04844,0.04844,0.05943,1.573e-10,1.573e-10,8.77e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20785000,0.9825,-0.006204,-0.01049,0.186,-0.01519,0.0008208,0.01295,0.004313,-0.0004654,0.001278,-1.495e-05,-5.92e-05,2.423e-06,-1.17e-05,0.0001032,-0.001301,0.2042,0.002,0.4335,0,0,0,0,0,5.386e-06,8.422e-05,8.419e-05,0.0001472,0.03317,0.03318,0.01017,0.04307,0.04308,0.05902,1.452e-10,1.452e-10,8.601e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20885000,0.9825,0.002653,-0.006802,0.1859,-0.02146,0.01267,-0.1005,0.002413,0.0002366,-0.004183,-1.495e-05,-5.92e-05,2.415e-06,-1.17e-05,0.0001032,-0.0013,0.2042,0.002,0.4335,0,0,0,0,0,5.346e-06,8.468e-05,8.464e-05,0.0001462,0.03962,0.03963,0.01023,0.04873,0.04873,0.05922,1.453e-10,1.453e-10,8.437e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20985000,0.9825,0.006306,-0.003152,0.1859,-0.03057,0.02944,-0.2417,0.002075,0.0006278,-0.01751,-1.485e-05,-5.913e-05,2.378e-06,-1.17e-05,0.0001032,-0.001303,0.2042,0.002,0.4335,0,0,0,0,0,5.311e-06,7.56e-05,7.558e-05,0.0001453,0.03789,0.0379,0.01011,0.04329,0.04329,0.05882,1.349e-10,1.349e-10,8.277e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21085000,0.9825,0.004881,-0.003398,0.1863,-0.04389,0.0457,-0.3594,-0.001643,0.004439,-0.04675,-1.485e-05,-5.913e-05,2.318e-06,-1.17e-05,0.0001032,-0.001303,0.2042,0.002,0.4335,0,0,0,0,0,5.327e-06,7.598e-05,7.596e-05,0.0001453,0.04476,0.04478,0.01025,0.04925,0.04926,0.0599,1.35e-10,1.35e-10,8.159e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21185000,0.9824,0.001838,-0.005171,0.1866,-0.04453,0.04707,-0.4845,-0.0003984,0.002699,-0.08043,-1.457e-05,-5.903e-05,2.411e-06,-1.17e-05,0.0001032,-0.001311,0.2042,0.002,0.4335,0,0,0,0,0,5.309e-06,6.603e-05,6.602e-05,0.0001443,0.0415,0.04152,0.01013,0.04363,0.04364,0.05947,1.265e-10,1.265e-10,8.006e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21285000,0.9824,-0.0003732,-0.00655,0.1868,-0.04428,0.05034,-0.6145,-0.004864,0.007585,-0.1364,-1.457e-05,-5.902e-05,2.227e-06,-1.17e-05,0.0001032,-0.001311,0.2042,0.002,0.4335,0,0,0,0,0,5.281e-06,6.634e-05,6.632e-05,0.0001433,0.04848,0.0485,0.01019,0.0499,0.0499,0.05966,1.266e-10,1.266e-10,7.856e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21385000,0.9823,-0.001933,-0.007349,0.187,-0.0376,0.04548,-0.7388,-0.003257,0.009854,-0.1979,-1.446e-05,-5.892e-05,2.187e-06,-1.17e-05,0.0001032,-0.001317,0.2042,0.002,0.4335,0,0,0,0,0,5.256e-06,5.642e-05,5.64e-05,0.0001424,0.04376,0.04377,0.01007,0.04405,0.04405,0.05924,1.2e-10,1.2e-10,7.71e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21485000,0.9823,-0.002777,-0.007793,0.1871,-0.03256,0.04237,-0.8741,-0.006839,0.01428,-0.2823,-1.446e-05,-5.892e-05,2.309e-06,-1.17e-05,0.0001032,-0.001315,0.2042,0.002,0.4335,0,0,0,0,0,5.231e-06,5.665e-05,5.664e-05,0.0001414,0.05051,0.05053,0.01013,0.05057,0.05058,0.05941,1.201e-10,1.201e-10,7.568e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21585000,0.9823,-0.00322,-0.007804,0.187,-0.02418,0.03765,-0.9974,-0.005915,0.0152,-0.3674,-1.44e-05,-5.889e-05,2.417e-06,-1.17e-05,0.0001032,-0.001323,0.2042,0.002,0.4335,0,0,0,0,0,5.198e-06,4.745e-05,4.744e-05,0.0001405,0.04464,0.04465,0.01002,0.04448,0.04448,0.05899,1.153e-10,1.153e-10,7.429e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21685000,0.9823,-0.003568,-0.007656,0.1871,-0.02112,0.03361,-1.131,-0.008177,0.0188,-0.4812,-1.439e-05,-5.889e-05,2.587e-06,-1.17e-05,0.0001032,-0.001321,0.2042,0.002,0.4335,0,0,0,0,0,5.172e-06,4.763e-05,4.762e-05,0.0001396,0.05093,0.05095,0.01008,0.05119,0.05119,0.05916,1.154e-10,1.154e-10,7.293e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21785000,0.9823,-0.003915,-0.007869,0.187,-0.01151,0.02834,-1.258,-0.001009,0.01691,-0.5939,-1.428e-05,-5.879e-05,2.836e-06,-1.17e-05,0.0001032,-0.001327,0.2042,0.002,0.4335,0,0,0,0,0,5.172e-06,3.953e-05,3.952e-05,0.0001396,0.04435,0.04437,0.01005,0.04488,0.04488,0.05961,1.119e-10,1.12e-10,7.194e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21885000,0.9823,-0.004201,-0.007987,0.187,-0.007797,0.02409,-1.379,-0.001995,0.01957,-0.733,-1.428e-05,-5.879e-05,2.673e-06,-1.17e-05,0.0001032,-0.001325,0.2042,0.002,0.4335,0,0,0,0,0,5.136e-06,3.967e-05,3.967e-05,0.0001387,0.05005,0.05007,0.01011,0.05169,0.05169,0.05978,1.12e-10,1.121e-10,7.064e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21985000,0.9823,-0.004815,-0.008195,0.1869,-0.006964,0.01963,-1.367,0.001627,0.01611,-0.8676,-1.419e-05,-5.877e-05,2.751e-06,-1.17e-05,0.0001032,-0.00133,0.2042,0.002,0.4335,0,0,0,0,0,5.098e-06,3.28e-05,3.28e-05,0.0001379,0.04254,0.04256,0.009995,0.04519,0.04519,0.05934,1.096e-10,1.097e-10,6.937e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22085000,0.9823,-0.005552,-0.008987,0.1868,-0.003862,0.01593,-1.348,0.001023,0.01784,-1.009,-1.419e-05,-5.877e-05,2.923e-06,-1.17e-05,0.0001032,-0.001328,0.2042,0.002,0.4335,0,0,0,0,0,5.07e-06,3.292e-05,3.292e-05,0.000137,0.04699,0.04701,0.01006,0.05197,0.05197,0.0595,1.097e-10,1.098e-10,6.813e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22185000,0.9824,-0.005919,-0.009233,0.1867,0.001993,0.01158,-1.363,0.007429,0.01303,-1.149,-1.408e-05,-5.872e-05,3.048e-06,-1.17e-05,0.0001032,-0.001326,0.2042,0.002,0.4335,0,0,0,0,0,5.035e-06,2.734e-05,2.734e-05,0.0001361,0.04005,0.04006,0.009944,0.04539,0.0454,0.05905,1.081e-10,1.082e-10,6.692e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22285000,0.9823,-0.00664,-0.009474,0.1867,0.007969,0.006402,-1.36,0.007911,0.01397,-1.291,-1.409e-05,-5.872e-05,2.953e-06,-1.17e-05,0.0001032,-0.001324,0.2042,0.002,0.4335,0,0,0,0,0,5.003e-06,2.744e-05,2.744e-05,0.0001353,0.04407,0.04408,0.01001,0.05208,0.05208,0.05921,1.082e-10,1.083e-10,6.574e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22385000,0.9823,-0.007008,-0.009541,0.1868,0.00982,-0.003227,-1.362,0.0132,0.00408,-1.435,-1.396e-05,-5.87e-05,2.803e-06,-1.17e-05,0.0001032,-0.00132,0.2042,0.002,0.4335,0,0,0,0,0,5.003e-06,2.291e-05,2.291e-05,0.0001353,0.03755,0.03756,0.00998,0.04549,0.04549,0.05965,1.071e-10,1.072e-10,6.487e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22485000,0.9823,-0.007176,-0.009975,0.1869,0.01437,-0.009794,-1.367,0.0144,0.00341,-1.575,-1.397e-05,-5.869e-05,2.602e-06,-1.17e-05,0.0001032,-0.001319,0.2042,0.002,0.4335,0,0,0,0,0,4.972e-06,2.3e-05,2.3e-05,0.0001344,0.04113,0.04115,0.01004,0.05204,0.05205,0.05981,1.072e-10,1.073e-10,6.374e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22585000,0.9823,-0.007026,-0.01061,0.187,0.02305,-0.01681,-1.366,0.02602,-0.004794,-1.717,-1.385e-05,-5.863e-05,2.71e-06,-1.17e-05,0.0001032,-0.001316,0.2042,0.002,0.4335,0,0,0,0,0,4.947e-06,1.933e-05,1.933e-05,0.0001336,0.03512,0.03514,0.009932,0.04548,0.04548,0.05936,1.065e-10,1.066e-10,6.263e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22685000,0.9823,-0.006955,-0.01081,0.1871,0.02545,-0.02183,-1.369,0.02844,-0.006774,-1.86,-1.385e-05,-5.863e-05,2.666e-06,-1.17e-05,0.0001032,-0.001314,0.2042,0.002,0.4335,0,0,0,0,0,4.922e-06,1.942e-05,1.941e-05,0.0001327,0.0383,0.03832,0.009996,0.05188,0.05189,0.05951,1.066e-10,1.067e-10,6.155e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22785000,0.9823,-0.006893,-0.01115,0.187,0.02933,-0.02859,-1.373,0.03704,-0.01609,-2.007,-1.376e-05,-5.858e-05,2.528e-06,-1.17e-05,0.0001032,-0.00131,0.2042,0.002,0.4335,0,0,0,0,0,4.88e-06,1.645e-05,1.644e-05,0.0001319,0.03282,0.03283,0.009885,0.04539,0.04539,0.05906,1.062e-10,1.062e-10,6.049e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22885000,0.9824,-0.007073,-0.01148,0.1865,0.03273,-0.03361,-1.375,0.04011,-0.01912,-2.15,-1.376e-05,-5.858e-05,2.678e-06,-1.17e-05,0.0001032,-0.001308,0.2042,0.002,0.4335,0,0,0,0,0,4.834e-06,1.654e-05,1.653e-05,0.0001312,0.03564,0.03566,0.00995,0.05162,0.05163,0.05921,1.063e-10,1.063e-10,5.946e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22985000,0.9824,-0.006992,-0.01181,0.1861,0.03527,-0.03804,-1.379,0.04857,-0.02912,-2.302,-1.367e-05,-5.854e-05,2.816e-06,-1.17e-05,0.0001032,-0.001302,0.2042,0.002,0.4335,0,0,0,0,0,4.788e-06,1.413e-05,1.411e-05,0.0001304,0.03064,0.03066,0.009841,0.04523,0.04523,0.05876,1.06e-10,1.06e-10,5.845e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23085000,0.9825,-0.007002,-0.01213,0.1858,0.03947,-0.04333,-1.376,0.0523,-0.03322,-2.44,-1.367e-05,-5.854e-05,2.807e-06,-1.17e-05,0.0001032,-0.001302,0.2042,0.002,0.4335,0,0,0,0,0,4.77e-06,1.422e-05,1.42e-05,0.0001304,0.03316,0.03318,0.009991,0.05128,0.05128,0.05979,1.061e-10,1.061e-10,5.771e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23185000,0.9825,-0.006971,-0.01231,0.1856,0.04518,-0.0439,-1.379,0.06318,-0.04317,-2.586,-1.36e-05,-5.85e-05,2.675e-06,-1.17e-05,0.0001032,-0.001298,0.2042,0.002,0.4335,0,0,0,0,0,4.726e-06,1.226e-05,1.224e-05,0.0001296,0.02862,0.02864,0.009881,0.04501,0.04501,0.05933,1.059e-10,1.059e-10,5.674e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23285000,0.9826,-0.007439,-0.01244,0.1854,0.04955,-0.04902,-1.375,0.06785,-0.04785,-2.729,-1.36e-05,-5.85e-05,2.72e-06,-1.17e-05,0.0001032,-0.001297,0.2042,0.002,0.4335,0,0,0,0,0,4.689e-06,1.235e-05,1.233e-05,0.0001288,0.03087,0.03089,0.009948,0.05087,0.05088,0.05948,1.06e-10,1.06e-10,5.579e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23385000,0.9826,-0.007355,-0.01256,0.1853,0.05454,-0.0495,-1.376,0.07854,-0.05176,-2.869,-1.356e-05,-5.846e-05,2.515e-06,-1.17e-05,0.0001032,-0.001296,0.2042,0.002,0.4335,0,0,0,0,0,4.65e-06,1.075e-05,1.073e-05,0.0001281,0.02675,0.02677,0.00984,0.04473,0.04474,0.05903,1.059e-10,1.059e-10,5.486e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23485000,0.9826,-0.00744,-0.01282,0.1852,0.05862,-0.0515,-1.377,0.08416,-0.05684,-3.011,-1.356e-05,-5.846e-05,2.627e-06,-1.17e-05,0.0001032,-0.001294,0.2042,0.002,0.4335,0,0,0,0,0,4.621e-06,1.085e-05,1.083e-05,0.0001273,0.02878,0.02881,0.009907,0.05041,0.05042,0.05917,1.06e-10,1.06e-10,5.396e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23585000,0.9826,-0.007699,-0.01273,0.1851,0.06011,-0.05421,-1.377,0.09089,-0.06715,-3.156,-1.352e-05,-5.844e-05,2.667e-06,-1.17e-05,0.0001032,-0.001292,0.2042,0.002,0.4335,0,0,0,0,0,4.591e-06,9.547e-06,9.524e-06,0.0001266,0.02504,0.02506,0.0098,0.04442,0.04442,0.05872,1.059e-10,1.06e-10,5.307e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23685000,0.9826,-0.008325,-0.01322,0.185,0.05866,-0.05703,-1.28,0.09684,-0.07277,-3.292,-1.352e-05,-5.844e-05,2.733e-06,-1.17e-05,0.0001032,-0.001291,0.2042,0.002,0.4335,0,0,0,0,0,4.591e-06,9.656e-06,9.631e-06,0.0001265,0.02671,0.02674,0.00995,0.04991,0.04991,0.05975,1.06e-10,1.061e-10,5.242e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23785000,0.9826,-0.01005,-0.01591,0.185,0.0547,-0.05356,-0.9628,0.1066,-0.07682,-3.414,-1.349e-05,-5.843e-05,2.891e-06,-1.17e-05,0.0001032,-0.001287,0.2042,0.002,0.4335,0,0,0,0,0,4.565e-06,8.6e-06,8.568e-06,0.0001258,0.02287,0.0229,0.00984,0.04405,0.04406,0.05929,1.06e-10,1.061e-10,5.157e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23885000,0.9825,-0.01339,-0.02004,0.1848,0.05018,-0.05404,-0.5318,0.1118,-0.08215,-3.491,-1.349e-05,-5.843e-05,2.886e-06,-1.17e-05,0.0001032,-0.001286,0.2042,0.002,0.4335,0,0,0,0,0,4.534e-06,8.731e-06,8.689e-06,0.000125,0.02385,0.02389,0.009905,0.04927,0.04928,0.05943,1.061e-10,1.062e-10,5.073e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23985000,0.9824,-0.01555,-0.02244,0.1846,0.05109,-0.05203,-0.1472,0.1201,-0.0841,-3.558,-1.349e-05,-5.841e-05,2.849e-06,-1.17e-05,0.0001032,-0.001264,0.2042,0.002,0.4335,0,0,0,0,0,4.499e-06,7.9e-06,7.851e-06,0.0001243,0.02051,0.02054,0.009799,0.04359,0.0436,0.05898,1.061e-10,1.062e-10,4.992e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24085000,0.9825,-0.01519,-0.02151,0.1846,0.05734,-0.0605,0.09754,0.1255,-0.08969,-3.56,-1.349e-05,-5.841e-05,2.738e-06,-1.17e-05,0.0001032,-0.001263,0.2042,0.002,0.4335,0,0,0,0,0,4.466e-06,8.017e-06,7.97e-06,0.0001236,0.02165,0.02168,0.009868,0.04854,0.04855,0.05912,1.062e-10,1.063e-10,4.912e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24185000,0.9826,-0.01233,-0.01776,0.1846,0.06768,-0.06483,0.09027,0.1332,-0.09399,-3.575,-1.35e-05,-5.841e-05,2.79e-06,-1.17e-05,0.0001032,-0.001245,0.2042,0.002,0.4335,0,0,0,0,0,4.441e-06,7.323e-06,7.283e-06,0.0001229,0.01923,0.01927,0.009766,0.04308,0.04309,0.05868,1.063e-10,1.063e-10,4.834e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24285000,0.9827,-0.009884,-0.01428,0.1846,0.07115,-0.06863,0.06545,0.1402,-0.1007,-3.569,-1.35e-05,-5.841e-05,2.802e-06,-1.17e-05,0.0001032,-0.001244,0.2042,0.002,0.4335,0,0,0,0,0,4.414e-06,7.441e-06,7.406e-06,0.0001222,0.02062,0.02067,0.009834,0.04786,0.04787,0.05882,1.064e-10,1.064e-10,4.757e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24385000,0.9827,-0.008909,-0.01319,0.1844,0.06504,-0.06308,0.08194,0.1473,-0.1013,-3.565,-1.351e-05,-5.841e-05,2.907e-06,-1.17e-05,0.0001032,-0.001244,0.2042,0.002,0.4335,0,0,0,0,0,4.409e-06,6.873e-06,6.838e-06,0.0001222,0.01837,0.01842,0.009809,0.04258,0.04259,0.05924,1.064e-10,1.065e-10,4.701e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24485000,0.9827,-0.009123,-0.01326,0.1843,0.05978,-0.05926,0.08041,0.1536,-0.1074,-3.556,-1.35e-05,-5.841e-05,3.106e-06,-1.17e-05,0.0001032,-0.001244,0.2042,0.002,0.4335,0,0,0,0,0,4.386e-06,7.014e-06,6.977e-06,0.0001215,0.01964,0.0197,0.009875,0.04722,0.04724,0.05939,1.065e-10,1.066e-10,4.628e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24585000,0.9827,-0.009751,-0.01336,0.1845,0.05653,-0.05469,0.07586,0.1578,-0.1043,-3.549,-1.352e-05,-5.84e-05,3.081e-06,-1.17e-05,0.0001032,-0.001243,0.2042,0.002,0.4335,0,0,0,0,0,4.368e-06,6.543e-06,6.504e-06,0.0001208,0.01759,0.01764,0.009769,0.04212,0.04213,0.05894,1.066e-10,1.066e-10,4.556e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24685000,0.9827,-0.01026,-0.0132,0.1846,0.05357,-0.05399,0.07529,0.1634,-0.1097,-3.541,-1.352e-05,-5.84e-05,3.053e-06,-1.17e-05,0.0001032,-0.001243,0.2042,0.002,0.4335,0,0,0,0,0,4.346e-06,6.691e-06,6.652e-06,0.0001201,0.01879,0.01886,0.009836,0.04662,0.04664,0.05908,1.067e-10,1.067e-10,4.485e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24785000,0.9827,-0.01034,-0.01255,0.1845,0.05057,-0.05111,0.0676,0.1661,-0.1057,-3.538,-1.355e-05,-5.84e-05,3.057e-06,-1.17e-05,0.0001032,-0.001242,0.2042,0.002,0.4335,0,0,0,0,0,4.318e-06,6.294e-06,6.254e-06,0.0001194,0.01689,0.01695,0.00973,0.04167,0.04169,0.05863,1.067e-10,1.068e-10,4.416e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24885000,0.9827,-0.01018,-0.01204,0.1846,0.04799,-0.05451,0.05754,0.171,-0.111,-3.534,-1.355e-05,-5.84e-05,3.099e-06,-1.17e-05,0.0001032,-0.001242,0.2042,0.002,0.4335,0,0,0,0,0,4.299e-06,6.451e-06,6.409e-06,0.0001188,0.01804,0.01812,0.009798,0.04605,0.04607,0.05877,1.068e-10,1.069e-10,4.348e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24985000,0.9827,-0.009895,-0.0118,0.1847,0.03997,-0.04981,0.05006,0.1714,-0.1026,-3.531,-1.359e-05,-5.839e-05,3.078e-06,-1.17e-05,0.0001032,-0.001241,0.2042,0.002,0.4335,0,0,0,0,0,4.303e-06,6.119e-06,6.075e-06,0.0001187,0.01627,0.01635,0.009775,0.04125,0.04127,0.05919,1.068e-10,1.069e-10,4.299e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25085000,0.9827,-0.01022,-0.01185,0.1847,0.03604,-0.04923,0.04721,0.1751,-0.1075,-3.532,-1.359e-05,-5.839e-05,3.025e-06,-1.17e-05,0.0001032,-0.001239,0.2042,0.002,0.4335,0,0,0,0,0,4.277e-06,6.285e-06,6.239e-06,0.0001181,0.01737,0.01746,0.009844,0.04551,0.04554,0.05934,1.069e-10,1.07e-10,4.234e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25185000,0.9826,-0.01039,-0.01169,0.1849,0.03139,-0.04283,0.04732,0.1759,-0.09979,-3.529,-1.362e-05,-5.837e-05,2.91e-06,-1.17e-05,0.0001032,-0.001238,0.2042,0.002,0.4335,0,0,0,0,0,4.261e-06,6.005e-06,5.957e-06,0.0001174,0.01571,0.01581,0.009737,0.04084,0.04086,0.05888,1.069e-10,1.07e-10,4.17e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25285000,0.9826,-0.01053,-0.01105,0.1852,0.02563,-0.04422,0.04228,0.1787,-0.1041,-3.525,-1.363e-05,-5.837e-05,2.711e-06,-1.17e-05,0.0001032,-0.001238,0.2042,0.002,0.4335,0,0,0,0,0,4.243e-06,6.179e-06,6.129e-06,0.0001168,0.01677,0.01688,0.009806,0.045,0.04503,0.05903,1.07e-10,1.071e-10,4.107e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25385000,0.9826,-0.0106,-0.01084,0.1852,0.01793,-0.03719,0.04056,0.1751,-0.09351,-3.526,-1.367e-05,-5.835e-05,2.676e-06,-1.17e-05,0.0001032,-0.001236,0.2042,0.002,0.4335,0,0,0,0,0,4.22e-06,5.941e-06,5.889e-06,0.0001161,0.01523,0.01534,0.0097,0.04045,0.04048,0.05858,1.07e-10,1.07e-10,4.046e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25485000,0.9826,-0.01063,-0.01054,0.1852,0.01186,-0.03648,0.0398,0.1765,-0.09718,-3.524,-1.368e-05,-5.835e-05,2.579e-06,-1.17e-05,0.0001032,-0.001235,0.2042,0.002,0.4335,0,0,0,0,0,4.197e-06,6.124e-06,6.069e-06,0.0001155,0.01626,0.01639,0.009769,0.04451,0.04455,0.05872,1.071e-10,1.071e-10,3.986e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25585000,0.9826,-0.0108,-0.01035,0.1853,0.007207,-0.03288,0.04164,0.1733,-0.08954,-3.522,-1.37e-05,-5.833e-05,2.459e-06,-1.17e-05,0.0001032,-0.001234,0.2042,0.002,0.4335,0,0,0,0,0,4.174e-06,5.922e-06,5.864e-06,0.0001149,0.01482,0.01495,0.009665,0.04008,0.04011,0.05827,1.07e-10,1.07e-10,3.927e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25685000,0.9826,-0.01027,-0.01004,0.1853,0.005867,-0.03257,0.0309,0.1739,-0.09284,-3.521,-1.37e-05,-5.833e-05,2.454e-06,-1.17e-05,0.0001032,-0.001233,0.2042,0.002,0.4335,0,0,0,0,0,4.174e-06,6.113e-06,6.052e-06,0.0001149,0.01584,0.01598,0.009818,0.04405,0.0441,0.05929,1.071e-10,1.071e-10,3.884e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25785000,0.9826,-0.01,-0.00932,0.1853,-0.004772,-0.02485,0.02973,0.1674,-0.084,-3.524,-1.373e-05,-5.831e-05,2.408e-06,-1.17e-05,0.0001032,-0.001231,0.2042,0.002,0.4335,0,0,0,0,0,4.149e-06,5.937e-06,5.875e-06,0.0001142,0.01449,0.01463,0.009712,0.03972,0.03976,0.05883,1.069e-10,1.069e-10,3.828e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25885000,0.9826,-0.01006,-0.009364,0.1854,-0.01167,-0.02301,0.03226,0.1665,-0.08636,-3.522,-1.373e-05,-5.83e-05,2.155e-06,-1.17e-05,0.0001032,-0.00123,0.2042,0.002,0.4335,0,0,0,0,0,4.126e-06,6.136e-06,6.07e-06,0.0001136,0.01548,0.01564,0.009782,0.04361,0.04367,0.05898,1.07e-10,1.07e-10,3.772e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25985000,0.9826,-0.01012,-0.009504,0.1855,-0.01975,-0.01692,0.02542,0.1561,-0.07777,-3.522,-1.376e-05,-5.831e-05,2.063e-06,-1.17e-05,0.0001032,-0.001229,0.2042,0.002,0.4335,0,0,0,0,0,4.104e-06,5.984e-06,5.915e-06,0.000113,0.01422,0.01437,0.009678,0.03939,0.03944,0.05853,1.068e-10,1.068e-10,3.718e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26085000,0.9826,-0.009816,-0.009456,0.1854,-0.02509,-0.01656,0.02387,0.1538,-0.07942,-3.522,-1.376e-05,-5.831e-05,2.122e-06,-1.17e-05,0.0001032,-0.001228,0.2042,0.002,0.4335,0,0,0,0,0,4.08e-06,6.19e-06,6.116e-06,0.0001124,0.0152,0.01538,0.009749,0.04321,0.04328,0.05867,1.069e-10,1.069e-10,3.664e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26185000,0.9826,-0.009734,-0.009954,0.1854,-0.03178,-0.01102,0.01963,0.1441,-0.07333,-3.524,-1.374e-05,-5.828e-05,2.143e-06,-1.17e-05,0.0001032,-0.001226,0.2042,0.002,0.4335,0,0,0,0,0,4.061e-06,6.056e-06,5.978e-06,0.0001118,0.014,0.01418,0.009645,0.03908,0.03914,0.05822,1.065e-10,1.066e-10,3.612e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26285000,0.9826,-0.009792,-0.01026,0.1854,-0.03354,-0.01,0.01378,0.1408,-0.0744,-3.525,-1.374e-05,-5.828e-05,2.015e-06,-1.17e-05,0.0001032,-0.001225,0.2042,0.002,0.4335,0,0,0,0,0,4.057e-06,6.27e-06,6.189e-06,0.0001118,0.01499,0.01519,0.009801,0.04283,0.04291,0.05924,1.066e-10,1.067e-10,3.574e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26385000,0.9826,-0.009229,-0.01021,0.1853,-0.03915,-0.003576,0.01686,0.1283,-0.06731,-3.525,-1.373e-05,-5.829e-05,1.913e-06,-1.17e-05,0.0001032,-0.001225,0.2042,0.002,0.4335,0,0,0,0,0,4.028e-06,6.146e-06,6.061e-06,0.0001112,0.01385,0.01404,0.009697,0.03879,0.03886,0.05878,1.062e-10,1.062e-10,3.523e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26485000,0.9826,-0.008976,-0.0101,0.1853,-0.04256,-0.0008637,0.026,0.1242,-0.06755,-3.523,-1.373e-05,-5.828e-05,1.801e-06,-1.17e-05,0.0001032,-0.001225,0.2042,0.002,0.4335,0,0,0,0,0,4.004e-06,6.366e-06,6.277e-06,0.0001107,0.01482,0.01504,0.009771,0.04249,0.04259,0.05893,1.063e-10,1.063e-10,3.473e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26585000,0.9826,-0.008431,-0.01035,0.1854,-0.04409,0.006259,0.0266,0.1146,-0.06132,-3.523,-1.369e-05,-5.825e-05,1.669e-06,-1.17e-05,0.0001032,-0.001223,0.2042,0.002,0.4335,0,0,0,0,0,3.985e-06,6.25e-06,6.158e-06,0.0001101,0.01374,0.01395,0.009668,0.03853,0.03861,0.05847,1.057e-10,1.058e-10,3.425e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26685000,0.9826,-0.008304,-0.01006,0.1855,-0.04616,0.01087,0.02574,0.1101,-0.06045,-3.521,-1.369e-05,-5.824e-05,1.472e-06,-1.17e-05,0.0001032,-0.001222,0.2042,0.002,0.4335,0,0,0,0,0,3.962e-06,6.475e-06,6.379e-06,0.0001095,0.01473,0.01497,0.009743,0.04219,0.04229,0.05863,1.058e-10,1.059e-10,3.377e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26785000,0.9826,-0.008098,-0.00952,0.1854,-0.05221,0.01421,0.0246,0.09833,-0.05587,-3.523,-1.361e-05,-5.823e-05,1.366e-06,-1.17e-05,0.0001032,-0.00122,0.2042,0.002,0.4335,0,0,0,0,0,3.937e-06,6.361e-06,6.265e-06,0.000109,0.01369,0.01392,0.009641,0.03829,0.03838,0.05817,1.052e-10,1.052e-10,3.33e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26885000,0.9826,-0.007488,-0.009608,0.1853,-0.05818,0.01672,0.02019,0.09274,-0.05432,-3.522,-1.361e-05,-5.823e-05,1.417e-06,-1.17e-05,0.0001032,-0.001219,0.2042,0.002,0.4335,0,0,0,0,0,3.916e-06,6.593e-06,6.491e-06,0.0001084,0.01469,0.01495,0.009714,0.04192,0.04204,0.05833,1.053e-10,1.053e-10,3.284e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26985000,0.9826,-0.00696,-0.01007,0.1854,-0.06475,0.02223,0.01846,0.08078,-0.04889,-3.526,-1.354e-05,-5.82e-05,1.317e-06,-1.17e-05,0.0001032,-0.001216,0.2042,0.002,0.4335,0,0,0,0,0,3.914e-06,6.482e-06,6.379e-06,0.0001084,0.01369,0.01394,0.009693,0.03809,0.03819,0.05873,1.044e-10,1.045e-10,3.251e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27085000,0.9826,-0.006776,-0.01039,0.1854,-0.06741,0.02937,0.02223,0.07397,-0.04625,-3.529,-1.354e-05,-5.82e-05,1.236e-06,-1.17e-05,0.0001032,-0.001214,0.2042,0.002,0.4335,0,0,0,0,0,3.894e-06,6.719e-06,6.611e-06,0.0001078,0.0147,0.01497,0.009768,0.04168,0.04182,0.05889,1.045e-10,1.046e-10,3.206e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27185000,0.9826,-0.006809,-0.01028,0.1854,-0.07299,0.03411,0.02365,0.06387,-0.04089,-3.531,-1.345e-05,-5.816e-05,1.16e-06,-1.17e-05,0.0001032,-0.001212,0.2042,0.002,0.4335,0,0,0,0,0,3.872e-06,6.603e-06,6.496e-06,0.0001073,0.01372,0.01398,0.009666,0.03791,0.03803,0.05843,1.036e-10,1.036e-10,3.163e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27285000,0.9826,-0.006963,-0.0112,0.1853,-0.07986,0.03967,0.1264,0.05617,-0.03718,-3.529,-1.345e-05,-5.816e-05,1.11e-06,-1.17e-05,0.0001032,-0.001211,0.2042,0.002,0.4335,0,0,0,0,0,3.85e-06,6.846e-06,6.733e-06,0.0001067,0.01465,0.01494,0.009741,0.04148,0.04164,0.05859,1.037e-10,1.037e-10,3.12e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27385000,0.9825,-0.008269,-0.01364,0.1854,-0.08406,0.04489,0.4427,0.04731,-0.03061,-3.51,-1.336e-05,-5.804e-05,1.057e-06,-1.17e-05,0.0001032,-0.001204,0.2042,0.002,0.4335,0,0,0,0,0,3.83e-06,6.733e-06,6.617e-06,0.0001062,0.01343,0.01369,0.009639,0.03775,0.03788,0.05814,1.025e-10,1.026e-10,3.078e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27485000,0.9825,-0.009696,-0.01561,0.1854,-0.08702,0.04947,0.7617,0.03861,-0.02584,-3.452,-1.336e-05,-5.804e-05,8.855e-07,-1.17e-05,0.0001032,-0.001203,0.2042,0.002,0.4335,0,0,0,0,0,3.81e-06,6.984e-06,6.859e-06,0.0001057,0.01416,0.01445,0.009715,0.04127,0.04144,0.0583,1.026e-10,1.027e-10,3.037e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27585000,0.9825,-0.009624,-0.01453,0.1854,-0.08224,0.05211,0.8669,0.0303,-0.02192,-3.39,-1.321e-05,-5.795e-05,8.358e-07,-1.17e-05,0.0001032,-0.001187,0.2042,0.002,0.4335,0,0,0,0,0,3.808e-06,6.869e-06,6.751e-06,0.0001057,0.0132,0.01346,0.0097,0.03757,0.03772,0.05871,1.015e-10,1.015e-10,3.007e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27685000,0.9826,-0.008471,-0.01163,0.1854,-0.0794,0.04864,0.7738,0.02212,-0.01678,-3.311,-1.321e-05,-5.795e-05,8.175e-07,-1.17e-05,0.0001032,-0.001185,0.2042,0.002,0.4335,0,0,0,0,0,3.788e-06,7.109e-06,6.994e-06,0.0001051,0.0143,0.01461,0.00978,0.04106,0.04125,0.05888,1.016e-10,1.016e-10,2.967e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27785000,0.9826,-0.007136,-0.01006,0.1854,-0.07764,0.04521,0.7613,0.01698,-0.01481,-3.237,-1.304e-05,-5.786e-05,8.19e-07,-1.17e-05,0.0001032,-0.001184,0.2042,0.002,0.4335,0,0,0,0,0,3.77e-06,6.983e-06,6.871e-06,0.0001046,0.01346,0.01374,0.009681,0.03743,0.03758,0.05842,1.002e-10,1.002e-10,2.928e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27885000,0.9826,-0.006739,-0.01013,0.1855,-0.08465,0.05111,0.8027,0.008761,-0.01,-3.162,-1.304e-05,-5.786e-05,7.757e-07,-1.17e-05,0.0001032,-0.001183,0.2042,0.002,0.4335,0,0,0,0,0,3.754e-06,7.234e-06,7.118e-06,0.0001041,0.01447,0.01478,0.009757,0.04093,0.04113,0.05859,1.003e-10,1.003e-10,2.89e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27985000,0.9826,-0.007167,-0.01049,0.1855,-0.08514,0.05271,0.7904,0.004138,-0.008548,-3.091,-1.283e-05,-5.773e-05,7.323e-07,-1.17e-05,0.0001032,-0.001176,0.2042,0.002,0.4335,0,0,0,0,0,3.735e-06,7.1e-06,6.987e-06,0.0001036,0.01362,0.01392,0.009657,0.03733,0.0375,0.05814,9.881e-11,9.882e-11,2.852e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28085000,0.9826,-0.007493,-0.0105,0.1854,-0.0891,0.05302,0.7963,-0.00459,-0.003211,-3.013,-1.283e-05,-5.773e-05,8.143e-07,-1.17e-05,0.0001032,-0.001175,0.2042,0.002,0.4335,0,0,0,0,0,3.717e-06,7.353e-06,7.237e-06,0.0001031,0.01469,0.01502,0.009735,0.04084,0.04105,0.05831,9.891e-11,9.892e-11,2.816e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28185000,0.9826,-0.006976,-0.01079,0.1854,-0.08865,0.04897,0.8023,-0.0103,-0.003033,-2.938,-1.262e-05,-5.764e-05,7.695e-07,-1.17e-05,0.0001032,-0.001171,0.2042,0.002,0.4335,0,0,0,0,0,3.699e-06,7.204e-06,7.09e-06,0.0001026,0.01382,0.01412,0.009637,0.03727,0.03744,0.05787,9.723e-11,9.724e-11,2.779e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28285000,0.9826,-0.006455,-0.01108,0.1854,-0.09427,0.05188,0.8026,-0.01952,0.002093,-2.862,-1.262e-05,-5.764e-05,8.296e-07,-1.17e-05,0.0001032,-0.001169,0.2042,0.002,0.4335,0,0,0,0,0,3.698e-06,7.46e-06,7.343e-06,0.0001026,0.01491,0.01525,0.009795,0.04079,0.04102,0.0589,9.733e-11,9.734e-11,2.753e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28385000,0.9826,-0.006474,-0.01171,0.1854,-0.09413,0.05443,0.8038,-0.02329,0.004888,-2.788,-1.243e-05,-5.746e-05,8.892e-07,-1.17e-05,0.0001032,-0.001164,0.2042,0.002,0.4335,0,0,0,0,0,3.685e-06,7.295e-06,7.181e-06,0.0001021,0.01404,0.01435,0.009694,0.03724,0.03743,0.05845,9.55e-11,9.55e-11,2.718e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28485000,0.9826,-0.006785,-0.01221,0.1854,-0.0961,0.05725,0.8045,-0.03296,0.01052,-2.714,-1.242e-05,-5.746e-05,8.423e-07,-1.17e-05,0.0001032,-0.001162,0.2042,0.002,0.4335,0,0,0,0,0,3.667e-06,7.552e-06,7.434e-06,0.0001016,0.01515,0.0155,0.009773,0.04078,0.04103,0.05862,9.559e-11,9.56e-11,2.683e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28585000,0.9826,-0.006874,-0.01219,0.1853,-0.08897,0.05224,0.8021,-0.03525,0.008033,-2.637,-1.212e-05,-5.732e-05,8.774e-07,-1.17e-05,0.0001032,-0.001158,0.2042,0.002,0.4335,0,0,0,0,0,3.645e-06,7.368e-06,7.255e-06,0.0001011,0.01426,0.01457,0.009676,0.03724,0.03744,0.05818,9.361e-11,9.361e-11,2.649e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28685000,0.9826,-0.006664,-0.01157,0.1854,-0.08929,0.05265,0.8024,-0.04433,0.01337,-2.563,-1.212e-05,-5.732e-05,8.205e-07,-1.17e-05,0.0001032,-0.001156,0.2042,0.002,0.4335,0,0,0,0,0,3.631e-06,7.622e-06,7.507e-06,0.0001006,0.01539,0.01575,0.009754,0.04082,0.04107,0.05835,9.37e-11,9.37e-11,2.616e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28785000,0.9826,-0.006025,-0.01138,0.1853,-0.08447,0.05235,0.8012,-0.04582,0.01513,-2.49,-1.192e-05,-5.712e-05,8.866e-07,-1.17e-05,0.0001032,-0.00115,0.2042,0.002,0.4335,0,0,0,0,0,3.615e-06,7.42e-06,7.311e-06,0.0001001,0.01447,0.01479,0.009656,0.03728,0.03748,0.05791,9.158e-11,9.157e-11,2.583e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28885000,0.9826,-0.005842,-0.01112,0.1853,-0.08887,0.05368,0.8001,-0.05459,0.02046,-2.414,-1.192e-05,-5.712e-05,9.296e-07,-1.17e-05,0.0001032,-0.001148,0.2042,0.002,0.4335,0,0,0,0,0,3.613e-06,7.675e-06,7.565e-06,0.0001001,0.01563,0.01598,0.009815,0.04088,0.04114,0.05895,9.168e-11,9.167e-11,2.559e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28985000,0.9826,-0.005616,-0.01135,0.1854,-0.08388,0.04988,0.7994,-0.05302,0.01955,-2.342,-1.164e-05,-5.691e-05,9.253e-07,-1.17e-05,0.0001032,-0.001142,0.2042,0.002,0.4335,0,0,0,0,0,3.6e-06,7.457e-06,7.351e-06,9.966e-05,0.01468,0.015,0.009715,0.03733,0.03754,0.0585,8.943e-11,8.941e-11,2.528e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29085000,0.9826,-0.005498,-0.01139,0.1854,-0.08717,0.05165,0.7985,-0.06175,0.02464,-2.265,-1.164e-05,-5.691e-05,9.036e-07,-1.17e-05,0.0001032,-0.00114,0.2042,0.002,0.4335,0,0,0,0,0,3.585e-06,7.711e-06,7.602e-06,9.919e-05,0.01585,0.01621,0.009792,0.04097,0.04124,0.05868,8.953e-11,8.951e-11,2.497e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29185000,0.9826,-0.005441,-0.01161,0.1853,-0.08217,0.04936,0.7929,-0.05843,0.024,-2.196,-1.137e-05,-5.665e-05,9.731e-07,-1.17e-05,0.0001032,-0.001132,0.2042,0.002,0.4335,0,0,0,0,0,3.566e-06,7.475e-06,7.372e-06,9.873e-05,0.01488,0.01519,0.009693,0.03741,0.03762,0.05824,8.717e-11,8.715e-11,2.466e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29285000,0.9826,-0.005682,-0.01165,0.1854,-0.0841,0.05482,0.7947,-0.06681,0.02929,-2.12,-1.137e-05,-5.665e-05,9.906e-07,-1.17e-05,0.0001032,-0.001131,0.2042,0.002,0.4335,0,0,0,0,0,3.555e-06,7.727e-06,7.622e-06,9.826e-05,0.01606,0.01641,0.009769,0.04107,0.04135,0.05842,8.727e-11,8.724e-11,2.436e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29385000,0.9826,-0.006134,-0.01117,0.1854,-0.07855,0.05319,0.7969,-0.06385,0.03023,-2.044,-1.114e-05,-5.644e-05,1.029e-06,-1.17e-05,0.0001032,-0.001127,0.2042,0.002,0.4335,0,0,0,0,0,3.54e-06,7.474e-06,7.376e-06,9.781e-05,0.01505,0.01536,0.00967,0.0375,0.03772,0.05798,8.483e-11,8.479e-11,2.407e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29485000,0.9826,-0.00618,-0.01104,0.1854,-0.08105,0.05353,0.7975,-0.07191,0.03563,-1.968,-1.113e-05,-5.644e-05,1.144e-06,-1.17e-05,0.0001032,-0.001126,0.2042,0.002,0.4335,0,0,0,0,0,3.527e-06,7.723e-06,7.624e-06,9.736e-05,0.01624,0.01659,0.009747,0.0412,0.04148,0.05816,8.493e-11,8.489e-11,2.378e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29585000,0.9826,-0.0061,-0.01106,0.1853,-0.07505,0.05067,0.7993,-0.06797,0.03478,-1.889,-1.088e-05,-5.623e-05,1.211e-06,-1.17e-05,0.0001032,-0.001123,0.2042,0.002,0.4335,0,0,0,0,0,3.526e-06,7.457e-06,7.365e-06,9.735e-05,0.0152,0.01551,0.009729,0.0376,0.03782,0.05858,8.243e-11,8.238e-11,2.356e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29685000,0.9826,-0.006162,-0.01085,0.1852,-0.07964,0.04935,0.7944,-0.07587,0.03988,-1.815,-1.087e-05,-5.623e-05,1.303e-06,-1.17e-05,0.0001032,-0.001121,0.2042,0.002,0.4335,0,0,0,0,0,3.51e-06,7.704e-06,7.609e-06,9.69e-05,0.01641,0.01675,0.009805,0.04133,0.04161,0.05876,8.253e-11,8.247e-11,2.328e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29785000,0.9826,-0.006018,-0.01138,0.1852,-0.07419,0.04148,0.7907,-0.06996,0.0374,-1.743,-1.061e-05,-5.6e-05,1.407e-06,-1.17e-05,0.0001032,-0.001115,0.2042,0.002,0.4335,0,0,0,0,0,3.496e-06,7.425e-06,7.335e-06,9.646e-05,0.01533,0.01564,0.009705,0.0377,0.03792,0.05832,7.998e-11,7.992e-11,2.301e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29885000,0.9826,-0.00551,-0.01176,0.1852,-0.07469,0.0417,0.7863,-0.07756,0.04161,-1.671,-1.06e-05,-5.599e-05,1.489e-06,-1.17e-05,0.0001032,-0.001112,0.2042,0.002,0.4335,0,0,0,0,0,3.484e-06,7.67e-06,7.575e-06,9.602e-05,0.01655,0.01688,0.009783,0.04147,0.04174,0.05851,8.008e-11,8.001e-11,2.273e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29985000,0.9826,-0.005614,-0.01182,0.1852,-0.06861,0.03661,0.7831,-0.07208,0.03721,-1.601,-1.032e-05,-5.581e-05,1.501e-06,-1.17e-05,0.0001032,-0.001105,0.2042,0.002,0.4335,0,0,0,0,0,3.47e-06,7.379e-06,7.29e-06,9.558e-05,0.01544,0.01574,0.009682,0.03781,0.03803,0.05807,7.751e-11,7.743e-11,2.247e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30085000,0.9826,-0.005767,-0.01197,0.1852,-0.0688,0.03687,0.7803,-0.07912,0.04098,-1.529,-1.032e-05,-5.58e-05,1.367e-06,-1.17e-05,0.0001032,-0.001103,0.2042,0.002,0.4335,0,0,0,0,0,3.452e-06,7.619e-06,7.527e-06,9.516e-05,0.01666,0.01699,0.009759,0.0416,0.04188,0.05825,7.761e-11,7.753e-11,2.221e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30185000,0.9826,-0.00575,-0.01198,0.1854,-0.06134,0.03346,0.7801,-0.07144,0.03976,-1.456,-1.015e-05,-5.556e-05,1.26e-06,-1.17e-05,0.0001032,-0.001099,0.2042,0.002,0.4335,0,0,0,0,0,3.454e-06,7.32e-06,7.234e-06,9.515e-05,0.01552,0.01581,0.009739,0.03792,0.03814,0.05867,7.504e-11,7.494e-11,2.201e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30285000,0.9826,-0.00578,-0.01198,0.1855,-0.06069,0.03301,0.7795,-0.07771,0.04318,-1.385,-1.014e-05,-5.555e-05,1.264e-06,-1.17e-05,0.0001032,-0.001096,0.2042,0.002,0.4335,0,0,0,0,0,3.443e-06,7.555e-06,7.467e-06,9.472e-05,0.01674,0.01706,0.009817,0.04174,0.04201,0.05886,7.514e-11,7.504e-11,2.176e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30385000,0.9825,-0.005754,-0.01189,0.1856,-0.05202,0.02733,0.7769,-0.06855,0.04072,-1.317,-9.937e-06,-5.53e-05,1.397e-06,-1.17e-05,0.0001032,-0.001089,0.2042,0.002,0.4335,0,0,0,0,0,3.435e-06,7.248e-06,7.165e-06,9.429e-05,0.01557,0.01585,0.009715,0.03802,0.03824,0.05841,7.259e-11,7.247e-11,2.151e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30485000,0.9826,-0.00577,-0.01203,0.1854,-0.05482,0.02694,0.7771,-0.07409,0.04357,-1.246,-9.929e-06,-5.53e-05,1.483e-06,-1.17e-05,0.0001032,-0.001087,0.2042,0.002,0.4335,0,0,0,0,0,3.418e-06,7.48e-06,7.393e-06,9.388e-05,0.01679,0.0171,0.009792,0.04186,0.04213,0.0586,7.268e-11,7.256e-11,2.126e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30585000,0.9826,-0.006072,-0.01231,0.1853,-0.04883,0.02408,0.7764,-0.06606,0.04021,-1.175,-9.735e-06,-5.51e-05,1.582e-06,-1.17e-05,0.0001032,-0.001082,0.2042,0.002,0.4335,0,0,0,0,0,3.403e-06,7.169e-06,7.086e-06,9.346e-05,0.0156,0.01587,0.009689,0.03812,0.03833,0.05816,7.016e-11,7.003e-11,2.102e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30685000,0.9826,-0.006444,-0.01254,0.1852,-0.04731,0.02221,0.7745,-0.07118,0.04267,-1.105,-9.728e-06,-5.509e-05,1.591e-06,-1.17e-05,0.0001032,-0.001079,0.2042,0.002,0.4335,0,0,0,0,0,3.385e-06,7.396e-06,7.31e-06,9.306e-05,0.01681,0.01711,0.009766,0.04197,0.04223,0.05835,7.026e-11,7.012e-11,2.078e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30785000,0.9826,-0.006159,-0.01225,0.1851,-0.03912,0.01727,0.7724,-0.06333,0.04245,-1.036,-9.663e-06,-5.49e-05,1.575e-06,-1.17e-05,0.0001032,-0.001074,0.2042,0.002,0.4335,0,0,0,0,0,3.367e-06,7.08e-06,6.998e-06,9.266e-05,0.0156,0.01587,0.009665,0.0382,0.03841,0.05791,6.779e-11,6.763e-11,2.055e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30885000,0.9826,-0.005527,-0.01212,0.1852,-0.03884,0.01352,0.7693,-0.06734,0.04411,-0.9641,-9.659e-06,-5.489e-05,1.535e-06,-1.17e-05,0.0001032,-0.001072,0.2042,0.002,0.4335,0,0,0,0,0,3.37e-06,7.302e-06,7.218e-06,9.265e-05,0.01681,0.01711,0.009824,0.04207,0.04233,0.05895,6.789e-11,6.773e-11,2.038e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30985000,0.9826,-0.005686,-0.01205,0.1853,-0.03077,0.00847,0.7704,-0.0567,0.03788,-0.8952,-9.461e-06,-5.47e-05,1.521e-06,-1.17e-05,0.0001032,-0.001066,0.2042,0.002,0.4335,0,0,0,0,0,3.356e-06,6.986e-06,6.904e-06,9.225e-05,0.01559,0.01585,0.00972,0.03828,0.03848,0.05851,6.548e-11,6.53e-11,2.015e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31085000,0.9826,-0.005832,-0.01217,0.1855,-0.029,0.005952,0.7685,-0.05978,0.03859,-0.8226,-9.459e-06,-5.47e-05,1.466e-06,-1.17e-05,0.0001032,-0.001065,0.2042,0.002,0.4335,0,0,0,0,0,3.348e-06,7.203e-06,7.119e-06,9.184e-05,0.01678,0.01708,0.009797,0.04216,0.04241,0.05869,6.557e-11,6.539e-11,1.992e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31185000,0.9826,-0.005973,-0.01231,0.1854,-0.02396,0.002445,0.7695,-0.05091,0.03473,-0.7534,-9.35e-06,-5.454e-05,1.597e-06,-1.17e-05,0.0001032,-0.00106,0.2042,0.002,0.4335,0,0,0,0,0,3.336e-06,6.887e-06,6.804e-06,9.144e-05,0.01555,0.01581,0.009693,0.03835,0.03854,0.05825,6.323e-11,6.303e-11,1.97e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31285000,0.9826,-0.006236,-0.01239,0.1853,-0.02095,-0.000497,0.7725,-0.05334,0.03496,-0.6832,-9.343e-06,-5.454e-05,1.668e-06,-1.17e-05,0.0001032,-0.001058,0.2042,0.002,0.4335,0,0,0,0,0,3.321e-06,7.099e-06,7.014e-06,9.105e-05,0.01673,0.01702,0.00977,0.04223,0.04247,0.05843,6.333e-11,6.313e-11,1.949e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31385000,0.9826,-0.00602,-0.01219,0.1853,-0.01459,-0.00637,0.7712,-0.04431,0.03055,-0.6113,-9.26e-06,-5.442e-05,1.591e-06,-1.17e-05,0.0001032,-0.001054,0.2042,0.002,0.4335,0,0,0,0,0,3.305e-06,6.784e-06,6.7e-06,9.067e-05,0.01549,0.01575,0.009666,0.0384,0.03859,0.05799,6.106e-11,6.084e-11,1.927e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31485000,0.9826,-0.005769,-0.01251,0.1854,-0.01427,-0.0104,0.7673,-0.0459,0.02971,-0.5373,-9.259e-06,-5.442e-05,1.568e-06,-1.17e-05,0.0001032,-0.001053,0.2042,0.002,0.4335,0,0,0,0,0,3.307e-06,6.993e-06,6.906e-06,9.066e-05,0.01667,0.01696,0.009825,0.04229,0.04252,0.05904,6.116e-11,6.094e-11,1.912e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31585000,0.9826,-0.00559,-0.01296,0.1853,-0.009432,-0.01128,0.7703,-0.03472,0.02691,-0.4666,-9.207e-06,-5.425e-05,1.644e-06,-1.17e-05,0.0001032,-0.001049,0.2042,0.002,0.4335,0,0,0,0,0,3.291e-06,6.682e-06,6.595e-06,9.028e-05,0.01542,0.01568,0.009719,0.03844,0.03862,0.05859,5.898e-11,5.874e-11,1.891e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31685000,0.9826,-0.005582,-0.01343,0.1852,-0.01137,-0.01304,0.7658,-0.03608,0.02573,-0.3986,-9.199e-06,-5.425e-05,1.743e-06,-1.17e-05,0.0001032,-0.001046,0.2042,0.002,0.4335,0,0,0,0,0,3.276e-06,6.886e-06,6.794e-06,8.99e-05,0.01658,0.01687,0.009794,0.04232,0.04256,0.05877,5.907e-11,5.884e-11,1.871e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31785000,0.9826,-0.005776,-0.01408,0.1851,-0.002018,-0.01455,0.765,-0.0244,0.02593,-0.3282,-9.223e-06,-5.406e-05,1.819e-06,-1.17e-05,0.0001032,-0.001042,0.2042,0.002,0.4335,0,0,0,0,0,3.261e-06,6.58e-06,6.486e-06,8.952e-05,0.01533,0.01559,0.009689,0.03847,0.03865,0.05833,5.698e-11,5.672e-11,1.851e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31885000,0.9826,-0.005545,-0.01388,0.185,0.001816,-0.01748,0.763,-0.02467,0.02438,-0.2604,-9.217e-06,-5.405e-05,1.87e-06,-1.17e-05,0.0001032,-0.001039,0.2042,0.002,0.4335,0,0,0,0,0,3.25e-06,6.777e-06,6.681e-06,8.915e-05,0.01648,0.01677,0.009767,0.04235,0.04257,0.0585,5.707e-11,5.682e-11,1.831e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31985000,0.9826,-0.005749,-0.01343,0.1851,0.009744,-0.01684,0.759,-0.01297,0.02314,-0.195,-9.222e-06,-5.39e-05,1.823e-06,-1.17e-05,0.0001032,-0.001033,0.2042,0.002,0.4335,0,0,0,0,0,3.238e-06,6.473e-06,6.378e-06,8.878e-05,0.01524,0.0155,0.009662,0.03848,0.03866,0.05806,5.507e-11,5.479e-11,1.812e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32085000,0.9826,-0.006129,-0.01307,0.1851,0.01011,-0.02091,0.7606,-0.01217,0.0214,-0.1256,-9.219e-06,-5.39e-05,1.822e-06,-1.17e-05,0.0001032,-0.001031,0.2042,0.002,0.4335,0,0,0,0,0,3.223e-06,6.665e-06,6.568e-06,8.841e-05,0.01637,0.01667,0.009738,0.04236,0.04258,0.05824,5.516e-11,5.489e-11,1.792e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32185000,0.9826,-0.006331,-0.01333,0.1851,0.01471,-0.02242,0.7599,-0.001388,0.02207,-0.05757,-9.292e-06,-5.377e-05,1.8e-06,-1.17e-05,0.0001032,-0.001027,0.2042,0.002,0.4335,0,0,0,0,0,3.224e-06,6.368e-06,6.271e-06,8.841e-05,0.01513,0.0154,0.009713,0.03849,0.03866,0.05865,5.325e-11,5.296e-11,1.778e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32285000,0.9826,-0.006248,-0.01358,0.185,0.01663,-0.02635,0.7577,-9.472e-05,0.01971,0.009961,-9.286e-06,-5.377e-05,1.855e-06,-1.17e-05,0.0001032,-0.001024,0.2042,0.002,0.4335,0,0,0,0,0,3.21e-06,6.558e-06,6.456e-06,8.804e-05,0.01625,0.01655,0.009791,0.04235,0.04257,0.05883,5.334e-11,5.305e-11,1.76e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32385000,0.9826,-0.006292,-0.01369,0.1852,0.02327,-0.02589,0.7556,0.01076,0.01898,0.08129,-9.342e-06,-5.367e-05,1.816e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.199e-06,6.266e-06,6.164e-06,8.768e-05,0.01501,0.01529,0.009684,0.03848,0.03865,0.05838,5.151e-11,5.121e-11,1.742e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32485000,0.9826,-0.009201,-0.01164,0.1851,0.04885,-0.08928,-0.118,0.0146,0.01159,0.08824,-9.341e-06,-5.367e-05,1.767e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.183e-06,6.446e-06,6.349e-06,8.733e-05,0.01701,0.01735,0.009585,0.04239,0.04261,0.05855,5.161e-11,5.131e-11,1.724e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32585000,0.9826,-0.009212,-0.0116,0.1851,0.04862,-0.08928,-0.1205,0.026,0.01024,0.06832,-9.519e-06,-5.357e-05,1.847e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.171e-06,6.14e-06,6.043e-06,8.697e-05,0.01566,0.01597,0.00921,0.03852,0.0387,0.05806,4.979e-11,4.946e-11,1.706e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32685000,0.9826,-0.009201,-0.01147,0.1851,0.04553,-0.09571,-0.1229,0.03061,0.001045,0.05197,-9.518e-06,-5.357e-05,1.834e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.159e-06,6.32e-06,6.219e-06,8.662e-05,0.01678,0.01713,0.009023,0.04245,0.04268,0.05815,4.988e-11,4.956e-11,1.688e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32785000,0.9826,-0.009101,-0.01156,0.1851,0.04392,-0.09327,-0.1245,0.03974,0.001134,0.0351,-9.725e-06,-5.348e-05,1.913e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.161e-06,6.024e-06,5.924e-06,8.661e-05,0.01545,0.01577,0.008755,0.03857,0.03874,0.05847,4.816e-11,4.782e-11,1.676e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32885000,0.9826,-0.009078,-0.01163,0.185,0.04497,-0.101,-0.1264,0.04414,-0.008565,0.01987,-9.724e-06,-5.348e-05,1.951e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.146e-06,6.2e-06,6.096e-06,8.626e-05,0.01656,0.01691,0.008587,0.04247,0.0427,0.05849,4.826e-11,4.792e-11,1.659e-10,2.977e-06,2.978e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32985000,0.9826,-0.009034,-0.01162,0.1849,0.04297,-0.09924,-0.1264,0.05143,-0.01057,0.005206,-9.899e-06,-5.341e-05,2.053e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.135e-06,5.913e-06,5.811e-06,8.592e-05,0.01524,0.01557,0.008281,0.03858,0.03876,0.05791,4.663e-11,4.627e-11,1.642e-10,2.977e-06,2.978e-06,5.001e-08,0,0,0,0,0,0,0,0
|
||||
33085000,0.9826,-0.00901,-0.01165,0.1849,0.04087,-0.1047,-0.1247,0.05575,-0.02076,-0.004863,-9.9e-06,-5.342e-05,2.053e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.123e-06,6.086e-06,5.978e-06,8.557e-05,0.01632,0.01669,0.008145,0.04246,0.0427,0.05787,4.672e-11,4.637e-11,1.625e-10,2.977e-06,2.978e-06,5.002e-08,0,0,0,0,0,0,0,0
|
||||
33185000,0.9826,-0.008936,-0.0116,0.1849,0.03805,-0.1039,-0.124,0.06152,-0.02197,-0.01308,-1.008e-05,-5.336e-05,2.034e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.109e-06,5.809e-06,5.704e-06,8.523e-05,0.01503,0.01536,0.007888,0.03856,0.03875,0.05727,4.519e-11,4.482e-11,1.609e-10,2.977e-06,2.978e-06,5.003e-08,0,0,0,0,0,0,0,0
|
||||
33285000,0.9827,-0.009016,-0.01163,0.1848,0.03675,-0.1079,-0.1243,0.06529,-0.03261,-0.02312,-1.008e-05,-5.337e-05,2.151e-06,-1.17e-05,0.0001032,-0.00102,0.2042,0.002,0.4335,0,0,0,0,0,3.097e-06,5.977e-06,5.868e-06,8.49e-05,0.01609,0.01647,0.007788,0.04243,0.04267,0.05718,4.529e-11,4.492e-11,1.593e-10,2.977e-06,2.978e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33385000,0.9827,-0.008932,-0.0117,0.1847,0.03306,-0.1011,-0.1229,0.06784,-0.02793,-0.03381,-1.036e-05,-5.331e-05,2.207e-06,-1.183e-05,0.0001018,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.084e-06,5.711e-06,5.605e-06,8.456e-05,0.01509,0.01543,0.007577,0.03853,0.03872,0.05657,4.384e-11,4.346e-11,1.577e-10,2.977e-06,2.978e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33485000,0.9827,-0.008925,-0.01167,0.1847,0.03005,-0.1057,-0.1233,0.07096,-0.03824,-0.04605,-1.036e-05,-5.331e-05,2.227e-06,-1.183e-05,0.0001018,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.084e-06,5.877e-06,5.767e-06,8.456e-05,0.017,0.01738,0.007572,0.04238,0.04263,0.05725,4.394e-11,4.356e-11,1.566e-10,2.977e-06,2.978e-06,5.005e-08,0,0,0,0,0,0,0,0
|
||||
33585000,0.9827,-0.008782,-0.01165,0.1846,0.02694,-0.1019,-0.1203,0.07275,-0.03454,-0.05393,-1.059e-05,-5.326e-05,2.338e-06,-1.448e-05,7.636e-05,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.071e-06,5.621e-06,5.516e-06,8.423e-05,0.01697,0.01731,0.007399,0.0385,0.0387,0.05662,4.258e-11,4.219e-11,1.55e-10,2.963e-06,2.963e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33685000,0.9827,-0.008785,-0.01166,0.1845,0.02421,-0.1066,-0.1223,0.07543,-0.04504,-0.06381,-1.059e-05,-5.326e-05,2.389e-06,-1.446e-05,7.635e-05,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.059e-06,5.783e-06,5.673e-06,8.39e-05,0.01996,0.02034,0.007366,0.04239,0.04264,0.05647,4.268e-11,4.229e-11,1.535e-10,2.963e-06,2.963e-06,5.005e-08,0,0,0,0,0,0,0,0
|
||||
33785000,0.9827,-0.008706,-0.01165,0.1844,0.01986,-0.1006,-0.1172,0.07799,-0.0401,-0.07161,-1.082e-05,-5.319e-05,2.393e-06,-2.264e-05,2.855e-05,-0.001022,0.2042,0.002,0.4335,0,0,0,0,0,3.045e-06,5.545e-06,5.44e-06,8.358e-05,0.02046,0.02079,0.007229,0.03853,0.03873,0.05584,4.143e-11,4.103e-11,1.52e-10,2.912e-06,2.912e-06,5.003e-08,0,0,0,0,0,0,0,0
|
||||
33885000,0.9828,-0.008755,-0.01163,0.1844,0.01758,-0.1022,-0.1172,0.07993,-0.05034,-0.08019,-1.082e-05,-5.319e-05,2.493e-06,-2.259e-05,2.85e-05,-0.001022,0.2042,0.002,0.4335,0,0,0,0,0,3.034e-06,5.705e-06,5.594e-06,8.326e-05,0.02437,0.02473,0.007225,0.04257,0.04283,0.05568,4.153e-11,4.113e-11,1.506e-10,2.912e-06,2.912e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33985000,0.9827,-0.008633,-0.01175,0.1844,0.01506,-0.0908,-0.1142,0.08106,-0.04231,-0.08513,-1.107e-05,-5.311e-05,2.484e-06,-4.62e-05,-4.512e-05,-0.001024,0.2042,0.002,0.4335,0,0,0,0,0,3.023e-06,5.495e-06,5.389e-06,8.294e-05,0.02483,0.02514,0.007122,0.03872,0.03892,0.05507,4.042e-11,4e-11,1.491e-10,2.811e-06,2.811e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34085000,0.9828,-0.008579,-0.01178,0.1844,0.01276,-0.09536,-0.1136,0.08263,-0.0517,-0.0933,-1.107e-05,-5.311e-05,2.507e-06,-4.607e-05,-4.523e-05,-0.001024,0.2042,0.002,0.4335,0,0,0,0,0,3.022e-06,5.653e-06,5.543e-06,8.294e-05,0.02947,0.0298,0.007199,0.04302,0.04328,0.05567,4.052e-11,4.01e-11,1.481e-10,2.811e-06,2.811e-06,5.001e-08,0,0,0,0,0,0,0,0
|
||||
34185000,0.9828,-0.008528,-0.0118,0.1843,0.008435,-0.08219,-0.1118,0.08391,-0.04356,-0.09664,-1.127e-05,-5.305e-05,2.568e-06,-6.782e-05,-0.0001257,-0.001025,0.2042,0.002,0.4335,0,0,0,0,0,3.012e-06,5.484e-06,5.378e-06,8.262e-05,0.02933,0.02959,0.007122,0.03911,0.03932,0.05507,3.957e-11,3.915e-11,1.467e-10,2.658e-06,2.659e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34285000,0.9828,-0.008429,-0.01188,0.1843,0.009494,-0.08512,-0.1111,0.08494,-0.05201,-0.1051,-1.127e-05,-5.305e-05,2.638e-06,-6.767e-05,-0.0001258,-0.001025,0.2042,0.002,0.4335,0,0,0,0,0,3.002e-06,5.639e-06,5.529e-06,8.23e-05,0.03443,0.03471,0.00717,0.04378,0.04403,0.0549,3.967e-11,3.925e-11,1.453e-10,2.658e-06,2.659e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34385000,0.9828,-0.008339,-0.01187,0.1842,0.005716,-0.06919,-0.1066,0.08424,-0.04283,-0.1098,-1.144e-05,-5.301e-05,2.681e-06,-9.021e-05,-0.0002094,-0.001027,0.2042,0.002,0.4335,0,0,0,0,0,2.987e-06,5.521e-06,5.413e-06,8.199e-05,0.03326,0.03346,0.007119,0.03972,0.03991,0.05434,3.892e-11,3.849e-11,1.439e-10,2.463e-06,2.464e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34485000,0.9828,-0.008435,-0.01183,0.1841,0.00398,-0.07179,-0.1054,0.08496,-0.05004,-0.1145,-1.144e-05,-5.301e-05,2.757e-06,-8.972e-05,-0.0002098,-0.001027,0.2042,0.002,0.4335,0,0,0,0,0,2.977e-06,5.676e-06,5.564e-06,8.169e-05,0.03857,0.03878,0.00719,0.04478,0.04501,0.05419,3.902e-11,3.859e-11,1.426e-10,2.463e-06,2.464e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34585000,0.9828,-0.008353,-0.01163,0.1841,0.003223,-0.05636,0.6402,0.08422,-0.04159,-0.09062,-1.156e-05,-5.298e-05,2.786e-06,-0.0001105,-0.0002787,-0.001029,0.2042,0.002,0.4335,0,0,0,0,0,2.966e-06,5.611e-06,5.501e-06,8.138e-05,0.03584,0.03597,0.007161,0.04045,0.04062,0.05366,3.845e-11,3.802e-11,1.412e-10,2.243e-06,2.244e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34685000,0.9828,-0.008347,-0.01135,0.1841,0.002914,-0.05321,1.631,0.08446,-0.04704,0.02115,-1.156e-05,-5.298e-05,2.812e-06,-0.0001108,-0.0002785,-0.001029,0.2042,0.002,0.4335,0,0,0,0,0,2.955e-06,5.766e-06,5.652e-06,8.108e-05,0.0407,0.04083,0.007251,0.04581,0.04601,0.05353,3.855e-11,3.812e-11,1.399e-10,2.243e-06,2.244e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34785000,0.9828,-0.008231,-0.01099,0.184,-0.002792,-0.03591,2.598,0.0797,-0.03699,0.1834,-1.166e-05,-5.297e-05,2.827e-06,-0.0001264,-0.0003361,-0.001003,0.2042,0.002,0.4335,0,0,0,0,0,2.954e-06,5.768e-06,5.655e-06,8.108e-05,0.03718,0.03725,0.007291,0.04119,0.04134,0.05376,3.821e-11,3.777e-11,1.39e-10,2.008e-06,2.009e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34885000,0.9828,-0.008213,-0.0107,0.184,-0.003594,-0.03197,3.583,0.0787,-0.04009,0.4725,-1.165e-05,-5.296e-05,2.849e-06,-0.000129,-0.0003338,-0.001001,0.2042,0.002,0.4335,0,0,0,0,0,2.943e-06,5.925e-06,5.808e-06,8.078e-05,0.04204,0.04211,0.007398,0.04677,0.04693,0.05366,3.83e-11,3.787e-11,1.377e-10,2.008e-06,2.009e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
10385000,0.9819,-0.005213,-0.01189,0.1888,0.006524,0.005011,-0.002934,0.0007451,0.0001646,-0.0489,-1.761e-05,-5.8e-05,-2.913e-06,-2.349e-05,2.981e-05,-0.001356,0.2042,0.002,0.4335,0,0,0,0,0,8.47e-06,0.0004092,0.0004093,0.0002261,0.0414,0.0414,0.04011,0.2503,0.2503,0.08509,5.598e-09,5.602e-09,8.702e-09,3.72e-06,3.72e-06,8.155e-08,0,0,0,0,0,0,0,0
|
||||
10485000,0.9819,-0.005102,-0.01183,0.189,0.006078,0.00775,-0.001821,0.001367,0.0008001,-0.04435,-1.763e-05,-5.799e-05,-3.568e-06,-2.354e-05,2.976e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,8.445e-06,0.0004184,0.0004185,0.0002255,0.04603,0.04603,0.04021,0.2515,0.2515,0.07951,5.598e-09,5.602e-09,8.555e-09,3.72e-06,3.72e-06,7.895e-08,0,0,0,0,0,0,0,0
|
||||
10585000,0.9819,-0.005056,-0.0117,0.1889,0.003433,0.009264,-0.000433,0.00059,-0.004536,-0.04367,-1.76e-05,-5.818e-05,-3.17e-06,-2.097e-05,2.997e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,8.432e-06,0.0004206,0.0004207,0.0002249,0.04556,0.04556,0.03758,0.1263,0.1263,0.07525,5.57e-09,5.573e-09,8.406e-09,3.715e-06,3.715e-06,7.673e-08,0,0,0,0,0,0,0,0
|
||||
10685000,0.9819,-0.004994,-0.01173,0.1889,0.003007,0.01029,-0.0003212,0.0009048,-0.003563,-0.04297,-1.76e-05,-5.818e-05,-3.333e-06,-2.098e-05,2.996e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,8.499e-06,0.0004302,0.0004303,0.0002268,0.05576,0.05576,0.0376,0.1284,0.1284,0.07363,5.57e-09,5.573e-09,8.293e-09,3.715e-06,3.715e-06,7.526e-08,0,0,0,0,0,0,0,0
|
||||
10785000,0.9819,-0.00514,-0.01178,0.1889,0.00302,0.009268,0.0004983,0.0007086,-0.002475,-0.04056,-1.729e-05,-5.836e-05,-3.504e-06,-1.848e-05,3.404e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,8.479e-06,0.0004152,0.0004153,0.0002264,0.05629,0.05629,0.03518,0.08647,0.08647,0.07107,5.471e-09,5.474e-09,8.141e-09,3.698e-06,3.698e-06,7.352e-08,0,0,0,0,0,0,0,0
|
||||
10885000,0.9819,-0.005101,-0.01182,0.1888,0.002548,0.01231,0.000627,0.0009893,-0.001453,-0.04038,-1.727e-05,-5.837e-05,-2.839e-06,-1.848e-05,3.403e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,8.474e-06,0.0004249,0.000425,0.0002259,0.07074,0.07074,0.03502,0.08972,0.08972,0.06966,5.471e-09,5.474e-09,7.988e-09,3.698e-06,3.698e-06,7.201e-08,0,0,0,0,0,0,0,0
|
||||
10985000,0.9819,-0.005228,-0.01189,0.1888,0.0003181,0.01729,0.002649,0.0007204,-0.0006135,-0.0379,-1.701e-05,-5.852e-05,-2.912e-06,-1.662e-05,3.714e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.45e-06,0.0003908,0.0003908,0.0002256,0.06789,0.06789,0.03275,0.06823,0.06823,0.06816,5.293e-09,5.296e-09,7.834e-09,3.672e-06,3.672e-06,7.067e-08,0,0,0,0,0,0,0,0
|
||||
11085000,0.9819,-0.00534,-0.01187,0.189,0.0001042,0.02236,0.004475,0.0007136,0.00131,-0.03559,-1.703e-05,-5.851e-05,-3.667e-06,-1.664e-05,3.713e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.445e-06,0.0004001,0.0004002,0.0002252,0.08465,0.08465,0.03244,0.07286,0.07286,0.06778,5.293e-09,5.296e-09,7.679e-09,3.672e-06,3.672e-06,6.952e-08,0,0,0,0,0,0,0,0
|
||||
11185000,0.9819,-0.005638,-0.01188,0.189,0.001261,0.02096,0.00774,0.001659,0.0009173,-0.03117,-1.64e-05,-5.849e-05,-4.012e-06,-1.668e-05,4.434e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.416e-06,0.0003542,0.0003542,0.0002249,0.07604,0.07604,0.03032,0.05893,0.05893,0.06685,5.065e-09,5.068e-09,7.524e-09,3.642e-06,3.642e-06,6.848e-08,0,0,0,0,0,0,0,0
|
||||
11285000,0.9819,-0.005632,-0.01191,0.1891,-0.000399,0.02276,0.008713,0.00166,0.003157,-0.03163,-1.641e-05,-5.848e-05,-4.156e-06,-1.668e-05,4.435e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.41e-06,0.0003629,0.000363,0.0002245,0.09318,0.09318,0.02987,0.06486,0.06486,0.06709,5.065e-09,5.068e-09,7.369e-09,3.642e-06,3.642e-06,6.758e-08,0,0,0,0,0,0,0,0
|
||||
11385000,0.9819,-0.005812,-0.01187,0.1891,-0.001469,0.01915,0.007759,0.001238,0.001909,-0.03358,-1.584e-05,-5.871e-05,-4.167e-06,-1.418e-05,5.019e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.474e-06,0.0003153,0.0003154,0.0002265,0.07939,0.07939,0.02806,0.05401,0.05401,0.06757,4.826e-09,4.83e-09,7.253e-09,3.616e-06,3.616e-06,6.697e-08,0,0,0,0,0,0,0,0
|
||||
11485000,0.9819,-0.005716,-0.01184,0.1889,-0.003696,0.02019,0.009457,0.0009309,0.003899,-0.03044,-1.583e-05,-5.872e-05,-3.86e-06,-1.419e-05,5.018e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.458e-06,0.0003234,0.0003234,0.0002262,0.09561,0.09561,0.02754,0.06097,0.06097,0.06817,4.826e-09,4.83e-09,7.098e-09,3.616e-06,3.616e-06,6.626e-08,0,0,0,0,0,0,0,0
|
||||
11585000,0.9819,-0.006037,-0.01182,0.1889,-0.001226,0.01595,0.009844,0.0009788,0.002243,-0.02939,-1.53e-05,-5.884e-05,-3.783e-06,-1.298e-05,5.506e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.436e-06,0.0002809,0.000281,0.0002258,0.07877,0.07877,0.02572,0.05137,0.05137,0.06762,4.604e-09,4.607e-09,6.944e-09,3.597e-06,3.597e-06,6.562e-08,0,0,0,0,0,0,0,0
|
||||
11685000,0.9819,-0.005991,-0.01176,0.1888,-0.001553,0.01957,0.01151,0.0008494,0.004015,-0.0294,-1.53e-05,-5.885e-05,-3.487e-06,-1.297e-05,5.506e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.424e-06,0.0002884,0.0002884,0.0002254,0.09339,0.09339,0.02513,0.05901,0.05901,0.06836,4.604e-09,4.607e-09,6.791e-09,3.597e-06,3.597e-06,6.507e-08,0,0,0,0,0,0,0,0
|
||||
11785000,0.9819,-0.006342,-0.01172,0.1887,-0.002245,0.01458,0.01226,0.0007062,0.0006823,-0.02693,-1.459e-05,-5.909e-05,-2.661e-06,-1.101e-05,6.05e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.405e-06,0.0002535,0.0002535,0.0002249,0.07569,0.07569,0.02348,0.04992,0.04992,0.06782,4.408e-09,4.411e-09,6.639e-09,3.584e-06,3.584e-06,6.458e-08,0,0,0,0,0,0,0,0
|
||||
11885000,0.982,-0.006417,-0.01161,0.1887,-0.0001781,0.01567,0.0112,0.0005139,0.002149,-0.02591,-1.459e-05,-5.909e-05,-2.741e-06,-1.101e-05,6.051e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.388e-06,0.0002605,0.0002605,0.0002245,0.08866,0.08866,0.02286,0.05796,0.05796,0.06859,4.408e-09,4.411e-09,6.488e-09,3.584e-06,3.584e-06,6.416e-08,0,0,0,0,0,0,0,0
|
||||
11985000,0.982,-0.006601,-0.01172,0.1885,0.002666,0.01498,0.01019,0.001996,0.0003679,-0.0288,-1.43e-05,-5.898e-05,-2.451e-06,-1.156e-05,6.268e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.447e-06,0.0002329,0.000233,0.0002263,0.07145,0.07146,0.02156,0.04911,0.04911,0.06919,4.237e-09,4.24e-09,6.376e-09,3.576e-06,3.577e-06,6.387e-08,0,0,0,0,0,0,0,0
|
||||
12085000,0.982,-0.006512,-0.01178,0.1886,0.003822,0.0154,0.01273,0.002325,0.001852,-0.02237,-1.429e-05,-5.898e-05,-2.422e-06,-1.157e-05,6.266e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.435e-06,0.0002396,0.0002396,0.0002258,0.08282,0.08282,0.02095,0.05732,0.05732,0.06992,4.237e-09,4.24e-09,6.228e-09,3.576e-06,3.577e-06,6.353e-08,0,0,0,0,0,0,0,0
|
||||
12185000,0.982,-0.006455,-0.01175,0.1886,0.003625,0.01376,0.01202,0.001705,0.002208,-0.02097,-1.424e-05,-5.91e-05,-2.704e-06,-1.089e-05,6.298e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.402e-06,0.0002181,0.0002182,0.0002253,0.06687,0.06687,0.01961,0.04863,0.04863,0.06924,4.086e-09,4.088e-09,6.082e-09,3.573e-06,3.573e-06,6.323e-08,0,0,0,0,0,0,0,0
|
||||
12285000,0.982,-0.0065,-0.01174,0.1886,0.000871,0.01297,0.01035,0.001941,0.003536,-0.02064,-1.424e-05,-5.91e-05,-2.757e-06,-1.089e-05,6.298e-05,-0.001365,0.2042,0.002,0.4335,0,0,0,0,0,8.383e-06,0.0002245,0.0002246,0.0002247,0.0769,0.0769,0.01902,0.05687,0.05687,0.06986,4.086e-09,4.088e-09,5.938e-09,3.573e-06,3.573e-06,6.298e-08,0,0,0,0,0,0,0,0
|
||||
12385000,0.982,-0.00662,-0.01167,0.1885,0.0001955,0.009496,0.01075,0.001603,0.002061,-0.02385,-1.399e-05,-5.922e-05,-2.708e-06,-1.045e-05,6.375e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.349e-06,0.0002078,0.0002078,0.000224,0.06238,0.06238,0.01783,0.04833,0.04833,0.06911,3.948e-09,3.951e-09,5.795e-09,3.571e-06,3.571e-06,6.274e-08,0,0,0,0,0,0,0,0
|
||||
12485000,0.982,-0.006615,-0.01168,0.1885,0.0002468,0.01069,0.01455,0.001633,0.003053,-0.02211,-1.399e-05,-5.922e-05,-2.695e-06,-1.045e-05,6.375e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.334e-06,0.000214,0.0002141,0.0002234,0.07124,0.07124,0.01727,0.05649,0.05649,0.06959,3.948e-09,3.951e-09,5.655e-09,3.571e-06,3.571e-06,6.254e-08,0,0,0,0,0,0,0,0
|
||||
12585000,0.982,-0.006768,-0.01166,0.1886,0.003935,0.004347,0.01614,0.00311,0.0001137,-0.02116,-1.353e-05,-5.918e-05,-2.782e-06,-1.034e-05,6.42e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.31e-06,0.0002008,0.0002008,0.0002227,0.05823,0.05823,0.01624,0.0481,0.0481,0.06878,3.82e-09,3.823e-09,5.517e-09,3.57e-06,3.57e-06,6.236e-08,0,0,0,0,0,0,0,0
|
||||
12685000,0.982,-0.006736,-0.01167,0.1886,0.003867,0.002826,0.01622,0.003445,0.0004716,-0.01853,-1.353e-05,-5.918e-05,-2.743e-06,-1.033e-05,6.419e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.366e-06,0.000207,0.000207,0.0002242,0.06621,0.06621,0.0159,0.05613,0.05613,0.07034,3.82e-09,3.823e-09,5.415e-09,3.57e-06,3.57e-06,6.224e-08,0,0,0,0,0,0,0,0
|
||||
12785000,0.982,-0.006963,-0.01158,0.1882,0.005579,-0.0002559,0.01734,0.00383,-0.002927,-0.01729,-1.301e-05,-5.914e-05,-1.662e-06,-9.57e-06,6.339e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.329e-06,0.0001963,0.0001963,0.0002234,0.05457,0.05457,0.01499,0.04791,0.04791,0.06944,3.697e-09,3.699e-09,5.281e-09,3.569e-06,3.57e-06,6.209e-08,0,0,0,0,0,0,0,0
|
||||
12885000,0.9821,-0.006941,-0.01152,0.188,0.005148,-0.001418,0.0181,0.004403,-0.00301,-0.01431,-1.3e-05,-5.915e-05,-1.002e-06,-9.552e-06,6.338e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.294e-06,0.0002023,0.0002024,0.0002226,0.06183,0.06183,0.01452,0.05577,0.05577,0.06967,3.697e-09,3.699e-09,5.15e-09,3.569e-06,3.57e-06,6.196e-08,0,0,0,0,0,0,0,0
|
||||
12985000,0.9821,-0.006946,-0.0115,0.1877,0.003918,0.0003182,0.01844,0.003316,-0.00238,-0.01308,-1.306e-05,-5.926e-05,-4.187e-07,-9.676e-06,6.338e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.252e-06,0.0001934,0.0001935,0.0002218,0.0514,0.0514,0.01374,0.04772,0.04772,0.06873,3.574e-09,3.577e-09,5.021e-09,3.568e-06,3.568e-06,6.182e-08,0,0,0,0,0,0,0,0
|
||||
13085000,0.9822,-0.00695,-0.01143,0.1876,0.00475,0.000692,0.0168,0.003746,-0.002285,-0.01343,-1.304e-05,-5.927e-05,3.263e-07,-9.672e-06,6.338e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.227e-06,0.0001994,0.0001995,0.0002209,0.05811,0.05811,0.01333,0.05541,0.05541,0.06882,3.574e-09,3.577e-09,4.895e-09,3.568e-06,3.568e-06,6.172e-08,0,0,0,0,0,0,0,0
|
||||
13185000,0.9822,-0.006979,-0.01139,0.1875,0.001247,-0.001109,0.01589,0.0008622,-0.003492,-0.01273,-1.291e-05,-5.951e-05,8.172e-07,-1.005e-05,6.249e-05,-0.001364,0.2042,0.002,0.4335,0,0,0,0,0,8.195e-06,0.0001917,0.0001918,0.0002199,0.04872,0.04872,0.01266,0.04753,0.04753,0.06786,3.45e-09,3.452e-09,4.772e-09,3.565e-06,3.566e-06,6.16e-08,0,0,0,0,0,0,0,0
|
||||
13285000,0.9822,-0.006986,-0.01137,0.1874,0.0001413,-0.001777,0.01408,0.0008641,-0.003622,-0.01237,-1.291e-05,-5.951e-05,9.087e-07,-1.006e-05,6.25e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.24e-06,0.0001977,0.0001977,0.0002212,0.055,0.055,0.01245,0.05504,0.05504,0.06903,3.45e-09,3.452e-09,4.681e-09,3.565e-06,3.566e-06,6.153e-08,0,0,0,0,0,0,0,0
|
||||
13385000,0.9822,-0.006941,-0.01149,0.1874,-0.0002931,-0.000473,0.01315,0.000689,-0.002797,-0.01267,-1.297e-05,-5.949e-05,8.062e-07,-1.003e-05,6.265e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.198e-06,0.0001908,0.0001908,0.0002202,0.04648,0.04648,0.01186,0.04733,0.04733,0.06803,3.322e-09,3.324e-09,4.562e-09,3.561e-06,3.561e-06,6.141e-08,0,0,0,0,0,0,0,0
|
||||
13485000,0.9822,-0.006908,-0.01145,0.1874,0.0002588,0.001582,0.01388,0.0006863,-0.002694,-0.01415,-1.296e-05,-5.95e-05,9.516e-07,-1.005e-05,6.266e-05,-0.001363,0.2042,0.002,0.4335,0,0,0,0,0,8.162e-06,0.0001967,0.0001967,0.0002192,0.05242,0.05242,0.01157,0.05467,0.05467,0.06793,3.322e-09,3.324e-09,4.446e-09,3.561e-06,3.561e-06,6.133e-08,0,0,0,0,0,0,0,0
|
||||
13585000,0.9822,-0.006929,-0.01156,0.1875,0.004501,0.00104,0.01529,0.003653,-0.002325,-0.01608,-1.28e-05,-5.912e-05,8.422e-07,-7.437e-06,6.133e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.126e-06,0.0001902,0.0001902,0.0002181,0.04462,0.04462,0.01107,0.04712,0.04712,0.06694,3.189e-09,3.192e-09,4.332e-09,3.554e-06,3.555e-06,6.121e-08,0,0,0,0,0,0,0,0
|
||||
13685000,0.9822,-0.006861,-0.01147,0.1873,0.003866,-0.0001714,0.0149,0.004063,-0.002283,-0.0138,-1.279e-05,-5.913e-05,1.259e-06,-7.425e-06,6.132e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.079e-06,0.000196,0.000196,0.000217,0.05032,0.05032,0.01083,0.0543,0.0543,0.06677,3.19e-09,3.192e-09,4.221e-09,3.554e-06,3.555e-06,6.114e-08,0,0,0,0,0,0,0,0
|
||||
13785000,0.9822,-0.006818,-0.01163,0.1873,0.01092,0.002792,0.01508,0.007708,-0.0003375,-0.01423,-1.281e-05,-5.857e-05,1.117e-06,-2.693e-06,6.135e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.036e-06,0.0001897,0.0001898,0.0002159,0.04315,0.04315,0.01042,0.04691,0.04691,0.06579,3.051e-09,3.053e-09,4.113e-09,3.545e-06,3.546e-06,6.101e-08,0,0,0,0,0,0,0,0
|
||||
13885000,0.9822,-0.006737,-0.0116,0.1871,0.01203,0.004015,0.01638,0.008826,2.917e-05,-0.01193,-1.28e-05,-5.858e-05,1.768e-06,-2.681e-06,6.133e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,7.995e-06,0.0001955,0.0001955,0.0002148,0.04866,0.04865,0.01022,0.05394,0.05394,0.06558,3.051e-09,3.053e-09,4.008e-09,3.545e-06,3.546e-06,6.094e-08,0,0,0,0,0,0,0,0
|
||||
13985000,0.9823,-0.006821,-0.01134,0.1871,0.0123,0.004706,0.01543,0.006879,-0.001551,-0.01167,-1.26e-05,-5.898e-05,2.205e-06,-5.966e-06,5.95e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,8.032e-06,0.0001892,0.0001892,0.0002158,0.04199,0.04199,0.009979,0.0467,0.0467,0.06568,2.907e-09,2.909e-09,3.93e-09,3.534e-06,3.534e-06,6.082e-08,0,0,0,0,0,0,0,0
|
||||
14085000,0.9822,-0.006807,-0.01128,0.1874,0.009652,0.0006318,0.01725,0.008066,-0.001304,-0.01331,-1.262e-05,-5.896e-05,1.259e-06,-6.005e-06,5.952e-05,-0.001362,0.2042,0.002,0.4335,0,0,0,0,0,7.99e-06,0.0001948,0.0001948,0.0002146,0.04735,0.04735,0.00983,0.05361,0.05361,0.06542,2.907e-09,2.909e-09,3.829e-09,3.534e-06,3.534e-06,6.075e-08,0,0,0,0,0,0,0,0
|
||||
14185000,0.9822,-0.006799,-0.01122,0.1875,0.007645,0.001752,0.01627,0.007552,-0.001017,-0.01558,-1.265e-05,-5.898e-05,6.629e-07,-6.112e-06,5.96e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.944e-06,0.0001884,0.0001884,0.0002134,0.04107,0.04107,0.009539,0.0465,0.0465,0.06447,2.757e-09,2.759e-09,3.731e-09,3.519e-06,3.519e-06,6.058e-08,0,0,0,0,0,0,0,0
|
||||
14285000,0.9822,-0.00672,-0.01122,0.1875,0.008729,0.001537,0.01514,0.008237,-0.0009133,-0.01194,-1.265e-05,-5.898e-05,7.591e-07,-6.086e-06,5.959e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.902e-06,0.0001939,0.0001939,0.0002122,0.04636,0.04636,0.009433,0.0533,0.0533,0.06419,2.757e-09,2.759e-09,3.635e-09,3.519e-06,3.519e-06,6.052e-08,0,0,0,0,0,0,0,0
|
||||
14385000,0.9822,-0.006832,-0.01117,0.1875,0.009723,-0.001486,0.01524,0.007915,-0.002319,-0.008376,-1.242e-05,-5.91e-05,1.113e-06,-7.017e-06,5.696e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.858e-06,0.0001872,0.0001872,0.0002109,0.0404,0.04039,0.009194,0.04631,0.04631,0.06327,2.603e-09,2.604e-09,3.542e-09,3.502e-06,3.502e-06,6.033e-08,0,0,0,0,0,0,0,0
|
||||
14485000,0.9822,-0.006931,-0.01113,0.1876,0.007821,-0.001044,0.01902,0.008715,-0.002455,-0.00617,-1.243e-05,-5.909e-05,6.086e-07,-7.015e-06,5.695e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.809e-06,0.0001925,0.0001925,0.0002097,0.04557,0.04557,0.009126,0.05302,0.05302,0.06299,2.603e-09,2.604e-09,3.451e-09,3.502e-06,3.502e-06,6.026e-08,0,0,0,0,0,0,0,0
|
||||
14585000,0.9822,-0.007021,-0.01095,0.1876,0.006067,-0.001183,0.01769,0.005557,-0.003379,-0.008362,-1.241e-05,-5.958e-05,4.986e-07,-1.246e-05,5.664e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.836e-06,0.0001856,0.0001856,0.0002104,0.03985,0.03985,0.009018,0.04613,0.04613,0.06309,2.445e-09,2.446e-09,3.384e-09,3.482e-06,3.482e-06,6.006e-08,0,0,0,0,0,0,0,0
|
||||
14685000,0.9822,-0.006992,-0.011,0.1875,0.005467,-0.001009,0.01748,0.006126,-0.00347,-0.007937,-1.241e-05,-5.959e-05,8.061e-07,-1.247e-05,5.665e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.786e-06,0.0001907,0.0001907,0.0002091,0.04499,0.04499,0.008983,0.05278,0.05278,0.06281,2.445e-09,2.446e-09,3.298e-09,3.482e-06,3.482e-06,5.999e-08,0,0,0,0,0,0,0,0
|
||||
14785000,0.9822,-0.006917,-0.01099,0.1873,0.007008,0.005363,0.01727,0.004976,0.001348,-0.005966,-1.311e-05,-5.947e-05,1.323e-06,-1.077e-05,6.512e-05,-0.001361,0.2042,0.002,0.4335,0,0,0,0,0,7.731e-06,0.0001834,0.0001835,0.0002078,0.03943,0.03943,0.008826,0.04598,0.04598,0.06195,2.285e-09,2.287e-09,3.214e-09,3.459e-06,3.46e-06,5.974e-08,0,0,0,0,0,0,0,0
|
||||
14885000,0.9823,-0.00684,-0.01092,0.1871,0.005732,0.00359,0.02089,0.005602,0.001799,-0.005036,-1.31e-05,-5.948e-05,1.858e-06,-1.078e-05,6.513e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.679e-06,0.0001884,0.0001884,0.0002065,0.04449,0.04449,0.008822,0.05257,0.05257,0.06167,2.285e-09,2.287e-09,3.132e-09,3.459e-06,3.46e-06,5.966e-08,0,0,0,0,0,0,0,0
|
||||
14985000,0.9823,-0.007009,-0.01079,0.187,0.005045,0.001604,0.02374,0.004458,8.878e-06,-0.003571,-1.288e-05,-5.976e-05,2.141e-06,-1.416e-05,6.245e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.632e-06,0.0001808,0.0001809,0.0002052,0.03905,0.03905,0.008699,0.04584,0.04584,0.06086,2.126e-09,2.127e-09,3.052e-09,3.435e-06,3.436e-06,5.938e-08,0,0,0,0,0,0,0,0
|
||||
15085000,0.9823,-0.006947,-0.01087,0.187,0.005098,0.00258,0.02766,0.004975,0.000185,-0.001116,-1.288e-05,-5.976e-05,2.158e-06,-1.416e-05,6.245e-05,-0.00136,0.2042,0.002,0.4335,0,0,0,0,0,7.582e-06,0.0001856,0.0001856,0.0002039,0.04404,0.04404,0.008722,0.05239,0.05239,0.06061,2.126e-09,2.127e-09,2.975e-09,3.435e-06,3.436e-06,5.929e-08,0,0,0,0,0,0,0,0
|
||||
15185000,0.9823,-0.007088,-0.01091,0.187,0.003641,0.001262,0.02811,0.00395,-4.355e-05,-0.0004797,-1.287e-05,-5.992e-05,2.105e-06,-1.615e-05,6.232e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,7.53e-06,0.0001778,0.0001779,0.0002025,0.03872,0.03872,0.008627,0.04572,0.04572,0.05985,1.968e-09,1.97e-09,2.899e-09,3.41e-06,3.41e-06,5.898e-08,0,0,0,0,0,0,0,0
|
||||
15285000,0.9823,-0.007185,-0.01094,0.1868,0.003575,0.0008218,0.02797,0.004338,0.0001029,-0.0006366,-1.286e-05,-5.993e-05,2.547e-06,-1.621e-05,6.237e-05,-0.001359,0.2042,0.002,0.4335,0,0,0,0,0,7.552e-06,0.0001823,0.0001823,0.0002031,0.04367,0.04367,0.008746,0.05223,0.05223,0.06052,1.968e-09,1.97e-09,2.844e-09,3.41e-06,3.41e-06,5.89e-08,0,0,0,0,0,0,0,0
|
||||
15385000,0.9823,-0.007264,-0.01094,0.187,0.00446,0.002971,0.0277,0.003481,0.0001375,-0.001305,-1.289e-05,-6.004e-05,2.287e-06,-1.787e-05,6.28e-05,-0.001358,0.2042,0.002,0.4335,0,0,0,0,0,7.505e-06,0.0001744,0.0001744,0.0002017,0.03842,0.03842,0.008671,0.04562,0.04562,0.05979,1.815e-09,1.816e-09,2.772e-09,3.383e-06,3.383e-06,5.855e-08,0,0,0,0,0,0,0,0
|
||||
15485000,0.9823,-0.007299,-0.01091,0.187,0.003538,0.0008421,0.02777,0.003872,0.0003637,-0.0003495,-1.289e-05,-6.005e-05,2.435e-06,-1.791e-05,6.283e-05,-0.001357,0.2042,0.002,0.4335,0,0,0,0,0,7.459e-06,0.0001786,0.0001786,0.0002004,0.0433,0.0433,0.008739,0.05211,0.05211,0.05959,1.815e-09,1.816e-09,2.703e-09,3.383e-06,3.383e-06,5.843e-08,0,0,0,0,0,0,0,0
|
||||
15585000,0.9823,-0.007495,-0.01093,0.187,0.007335,-0.002794,0.02743,0.005895,-0.003723,-0.001274,-1.215e-05,-6.001e-05,2.733e-06,-1.748e-05,5.288e-05,-0.001356,0.2042,0.002,0.4335,0,0,0,0,0,7.411e-06,0.0001706,0.0001706,0.000199,0.0381,0.0381,0.008683,0.04554,0.04554,0.05891,1.666e-09,1.667e-09,2.635e-09,3.355e-06,3.356e-06,5.805e-08,0,0,0,0,0,0,0,0
|
||||
15685000,0.9823,-0.007459,-0.01092,0.1868,0.009146,-0.005812,0.02788,0.006702,-0.004153,-0.0001004,-1.215e-05,-6.002e-05,3.127e-06,-1.776e-05,5.315e-05,-0.001356,0.2042,0.002,0.4335,0,0,0,0,0,7.357e-06,0.0001746,0.0001746,0.0001977,0.04289,0.04289,0.008768,0.052,0.052,0.05874,1.666e-09,1.667e-09,2.569e-09,3.355e-06,3.356e-06,5.791e-08,0,0,0,0,0,0,0,0
|
||||
15785000,0.9824,-0.007458,-0.01079,0.1866,0.006038,-0.00592,0.02734,0.005177,-0.003323,0.001207,-1.237e-05,-6.02e-05,3.667e-06,-2.035e-05,5.666e-05,-0.001355,0.2042,0.002,0.4335,0,0,0,0,0,7.301e-06,0.0001666,0.0001666,0.0001963,0.03774,0.03774,0.008727,0.04547,0.04547,0.05811,1.524e-09,1.525e-09,2.506e-09,3.327e-06,3.328e-06,5.748e-08,0,0,0,0,0,0,0,0
|
||||
15885000,0.9823,-0.007503,-0.01084,0.1867,0.004749,-0.003789,0.02853,0.005651,-0.003813,0.001324,-1.238e-05,-6.019e-05,3.375e-06,-2.027e-05,5.653e-05,-0.001355,0.2042,0.002,0.4335,0,0,0,0,0,7.318e-06,0.0001703,0.0001703,0.0001967,0.04243,0.04243,0.008894,0.05191,0.05191,0.05883,1.524e-09,1.525e-09,2.459e-09,3.327e-06,3.328e-06,5.737e-08,0,0,0,0,0,0,0,0
|
||||
15985000,0.9823,-0.007316,-0.01078,0.1867,0.003178,-0.002371,0.02513,0.004509,-0.002974,-0.0007647,-1.252e-05,-6.028e-05,3.336e-06,-2.183e-05,5.872e-05,-0.001353,0.2042,0.002,0.4335,0,0,0,0,0,7.26e-06,0.0001624,0.0001624,0.0001954,0.03734,0.03734,0.008863,0.04541,0.04541,0.05823,1.39e-09,1.391e-09,2.398e-09,3.3e-06,3.3e-06,5.691e-08,0,0,0,0,0,0,0,0
|
||||
16085000,0.9823,-0.007278,-0.01077,0.1866,0.001697,-0.003386,0.02373,0.004683,-0.003278,0.0008402,-1.253e-05,-6.028e-05,3.083e-06,-2.189e-05,5.875e-05,-0.001352,0.2042,0.002,0.4335,0,0,0,0,0,7.2e-06,0.0001659,0.0001659,0.000194,0.04195,0.04195,0.008974,0.05183,0.05183,0.05813,1.39e-09,1.391e-09,2.339e-09,3.3e-06,3.3e-06,5.674e-08,0,0,0,0,0,0,0,0
|
||||
16185000,0.9823,-0.007184,-0.01066,0.1867,-0.002119,-0.00173,0.02269,0.002406,-0.00249,-0.002144,-1.273e-05,-6.049e-05,2.77e-06,-2.521e-05,6.174e-05,-0.001351,0.2042,0.002,0.4335,0,0,0,0,0,7.144e-06,0.000158,0.0001581,0.0001926,0.03689,0.03689,0.008951,0.04536,0.04536,0.05758,1.264e-09,1.265e-09,2.282e-09,3.273e-06,3.273e-06,5.623e-08,0,0,0,0,0,0,0,0
|
||||
16285000,0.9823,-0.007233,-0.01059,0.1867,-0.001742,-0.003029,0.02231,0.002192,-0.002741,-0.0006302,-1.273e-05,-6.049e-05,2.905e-06,-2.529e-05,6.182e-05,-0.00135,0.2042,0.002,0.4335,0,0,0,0,0,7.097e-06,0.0001613,0.0001613,0.0001913,0.04137,0.04137,0.009072,0.05175,0.05175,0.05752,1.264e-09,1.265e-09,2.226e-09,3.273e-06,3.273e-06,5.604e-08,0,0,0,0,0,0,0,0
|
||||
16385000,0.9824,-0.00719,-0.01061,0.1866,0.0007539,-0.002378,0.02298,0.003276,-0.002151,-0.0006462,-1.271e-05,-6.028e-05,3.235e-06,-2.212e-05,6.171e-05,-0.00135,0.2042,0.002,0.4335,0,0,0,0,0,7.048e-06,0.0001537,0.0001537,0.0001899,0.03638,0.03638,0.009054,0.04531,0.04531,0.05702,1.147e-09,1.148e-09,2.172e-09,3.247e-06,3.247e-06,5.55e-08,0,0,0,0,0,0,0,0
|
||||
16485000,0.9824,-0.00729,-0.0106,0.1866,0.003203,-0.003678,0.02486,0.00347,-0.002519,0.002785,-1.272e-05,-6.028e-05,3.157e-06,-2.206e-05,6.165e-05,-0.00135,0.2042,0.002,0.4335,0,0,0,0,0,6.995e-06,0.0001567,0.0001567,0.0001886,0.04072,0.04072,0.009181,0.05167,0.05167,0.057,1.147e-09,1.148e-09,2.12e-09,3.247e-06,3.247e-06,5.528e-08,0,0,0,0,0,0,0,0
|
||||
16585000,0.9824,-0.007272,-0.01059,0.1866,0.007141,-0.004508,0.02832,0.003043,-0.001992,0.003489,-1.283e-05,-6.031e-05,3.121e-06,-2.261e-05,6.34e-05,-0.001349,0.2042,0.002,0.4335,0,0,0,0,0,7.002e-06,0.0001494,0.0001494,0.0001889,0.03578,0.03579,0.009232,0.04526,0.04526,0.05734,1.039e-09,1.04e-09,2.081e-09,3.222e-06,3.222e-06,5.476e-08,0,0,0,0,0,0,0,0
|
||||
16685000,0.9824,-0.007328,-0.01053,0.1865,0.008396,-0.008112,0.02864,0.003816,-0.002601,0.004885,-1.283e-05,-6.032e-05,3.349e-06,-2.278e-05,6.355e-05,-0.001349,0.2042,0.002,0.4335,0,0,0,0,0,6.951e-06,0.0001521,0.0001521,0.0001875,0.04,0.04,0.009365,0.05159,0.05159,0.05736,1.039e-09,1.04e-09,2.031e-09,3.222e-06,3.222e-06,5.453e-08,0,0,0,0,0,0,0,0
|
||||
16785000,0.9824,-0.007165,-0.01041,0.1864,0.009532,-0.007951,0.02743,0.002992,-0.001906,0.00405,-1.305e-05,-6.042e-05,3.492e-06,-2.453e-05,6.726e-05,-0.001347,0.2042,0.002,0.4335,0,0,0,0,0,6.895e-06,0.0001451,0.0001451,0.0001862,0.03518,0.03518,0.009347,0.04521,0.04521,0.05692,9.404e-10,9.406e-10,1.983e-09,3.198e-06,3.198e-06,5.391e-08,0,0,0,0,0,0,0,0
|
||||
16885000,0.9824,-0.007131,-0.0105,0.1861,0.008332,-0.007859,0.02873,0.00388,-0.002681,0.003247,-1.304e-05,-6.043e-05,3.91e-06,-2.475e-05,6.743e-05,-0.001346,0.2042,0.002,0.4335,0,0,0,0,0,6.84e-06,0.0001477,0.0001477,0.0001849,0.03925,0.03925,0.009483,0.0515,0.0515,0.05698,9.404e-10,9.407e-10,1.936e-09,3.198e-06,3.198e-06,5.365e-08,0,0,0,0,0,0,0,0
|
||||
16985000,0.9824,-0.007146,-0.01054,0.1861,0.008426,-0.008087,0.02889,0.003653,-0.002015,0.002295,-1.315e-05,-6.03e-05,4.009e-06,-2.252e-05,6.915e-05,-0.001345,0.2042,0.002,0.4335,0,0,0,0,0,6.791e-06,0.000141,0.000141,0.0001836,0.03452,0.03452,0.009462,0.04515,0.04515,0.05656,8.502e-10,8.505e-10,1.89e-09,3.176e-06,3.176e-06,5.3e-08,0,0,0,0,0,0,0,0
|
||||
17085000,0.9824,-0.007247,-0.01047,0.1861,0.009372,-0.0104,0.0291,0.004549,-0.002958,0.002136,-1.315e-05,-6.029e-05,3.916e-06,-2.261e-05,6.918e-05,-0.001344,0.2042,0.002,0.4335,0,0,0,0,0,6.741e-06,0.0001434,0.0001434,0.0001823,0.03845,0.03845,0.009597,0.0514,0.0514,0.05665,8.503e-10,8.506e-10,1.846e-09,3.176e-06,3.176e-06,5.272e-08,0,0,0,0,0,0,0,0
|
||||
17185000,0.9824,-0.007369,-0.01036,0.1864,0.008702,-0.0153,0.03026,0.002937,-0.006676,0.0048,-1.301e-05,-6.045e-05,3.532e-06,-2.5e-05,6.665e-05,-0.001343,0.2042,0.002,0.4335,0,0,0,0,0,6.752e-06,0.0001371,0.0001371,0.0001825,0.03383,0.03383,0.009643,0.04508,0.04508,0.05708,7.685e-10,7.687e-10,1.813e-09,3.155e-06,3.155e-06,5.211e-08,0,0,0,0,0,0,0,0
|
||||
17285000,0.9824,-0.007323,-0.01036,0.1865,0.009152,-0.01578,0.02977,0.003819,-0.008203,0.005333,-1.301e-05,-6.045e-05,3.166e-06,-2.494e-05,6.653e-05,-0.001343,0.2042,0.002,0.4335,0,0,0,0,0,6.703e-06,0.0001393,0.0001392,0.0001812,0.03763,0.03763,0.009779,0.05128,0.05129,0.0572,7.686e-10,7.688e-10,1.771e-09,3.155e-06,3.155e-06,5.181e-08,0,0,0,0,0,0,0,0
|
||||
17385000,0.9824,-0.007203,-0.01037,0.1863,0.006377,-0.01593,0.02982,0.005282,-0.00514,0.005968,-1.337e-05,-6.017e-05,3.469e-06,-2.061e-05,7.261e-05,-0.001341,0.2042,0.002,0.4335,0,0,0,0,0,6.646e-06,0.0001333,0.0001333,0.0001799,0.03312,0.03312,0.009747,0.04501,0.04501,0.05683,6.946e-10,6.947e-10,1.73e-09,3.135e-06,3.136e-06,5.109e-08,0,0,0,0,0,0,0,0
|
||||
17485000,0.9824,-0.007202,-0.01042,0.1863,0.004118,-0.01669,0.02932,0.005741,-0.006746,0.006497,-1.337e-05,-6.017e-05,3.327e-06,-2.067e-05,7.261e-05,-0.001341,0.2042,0.002,0.4335,0,0,0,0,0,6.597e-06,0.0001353,0.0001353,0.0001786,0.03678,0.03678,0.00988,0.05116,0.05116,0.05699,6.947e-10,6.948e-10,1.69e-09,3.135e-06,3.136e-06,5.077e-08,0,0,0,0,0,0,0,0
|
||||
17585000,0.9824,-0.007119,-0.01029,0.1863,0.0005451,-0.0129,0.02836,0.002098,-0.005043,0.004668,-1.376e-05,-6.041e-05,3.321e-06,-2.488e-05,7.916e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.547e-06,0.0001297,0.0001297,0.0001773,0.0324,0.0324,0.009841,0.04493,0.04493,0.05664,6.28e-10,6.281e-10,1.651e-09,3.117e-06,3.118e-06,5.003e-08,0,0,0,0,0,0,0,0
|
||||
17685000,0.9824,-0.007213,-0.01021,0.1861,-0.0004696,-0.01341,0.02967,0.002121,-0.006381,0.007027,-1.376e-05,-6.041e-05,3.376e-06,-2.493e-05,7.92e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.491e-06,0.0001316,0.0001316,0.000176,0.03591,0.03591,0.009969,0.05102,0.05102,0.05682,6.281e-10,6.281e-10,1.614e-09,3.117e-06,3.118e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17785000,0.9825,-0.007175,-0.0102,0.1859,0.001945,-0.01162,0.02947,0.00308,-0.005523,0.01065,-1.396e-05,-6.02e-05,3.478e-06,-2.116e-05,8.28e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.43e-06,0.0001263,0.0001263,0.0001748,0.03166,0.03166,0.009923,0.04484,0.04484,0.05649,5.681e-10,5.681e-10,1.577e-09,3.1e-06,3.101e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17885000,0.9825,-0.007122,-0.01031,0.1859,0.004217,-0.01385,0.02895,0.003444,-0.006813,0.01562,-1.396e-05,-6.02e-05,3.524e-06,-2.108e-05,8.276e-05,-0.001339,0.2042,0.002,0.4335,0,0,0,0,0,6.433e-06,0.0001281,0.000128,0.0001749,0.03505,0.03505,0.01012,0.05088,0.05088,0.0575,5.682e-10,5.682e-10,1.55e-09,3.1e-06,3.101e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
17985000,0.9825,-0.006907,-0.0103,0.1858,0.003158,-0.007546,0.0287,0.00273,-0.001415,0.01573,-1.453e-05,-6.005e-05,3.472e-06,-1.871e-05,9.257e-05,-0.001338,0.2042,0.002,0.4335,0,0,0,0,0,6.381e-06,0.0001232,0.0001231,0.0001737,0.03092,0.03092,0.01007,0.04474,0.04474,0.05717,5.143e-10,5.144e-10,1.515e-09,3.085e-06,3.086e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18085000,0.9825,-0.006991,-0.01026,0.1858,0.003361,-0.008032,0.02836,0.003131,-0.002225,0.01515,-1.453e-05,-6.005e-05,3.458e-06,-1.884e-05,9.263e-05,-0.001337,0.2042,0.002,0.4335,0,0,0,0,0,6.335e-06,0.0001247,0.0001247,0.0001724,0.03417,0.03417,0.01019,0.05071,0.05072,0.0574,5.144e-10,5.144e-10,1.482e-09,3.085e-06,3.086e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18185000,0.9825,-0.007002,-0.01031,0.1856,0.003214,-0.006931,0.02911,0.003712,-0.001653,0.01351,-1.46e-05,-5.996e-05,3.876e-06,-1.725e-05,9.395e-05,-0.001335,0.2042,0.002,0.4335,0,0,0,0,0,6.286e-06,0.0001202,0.0001202,0.0001712,0.03016,0.03016,0.01012,0.04463,0.04463,0.05708,4.661e-10,4.662e-10,1.449e-09,3.071e-06,3.071e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18285000,0.9825,-0.007037,-0.01028,0.1856,0.004032,-0.007614,0.02842,0.004014,-0.002368,0.01258,-1.46e-05,-5.996e-05,3.891e-06,-1.745e-05,9.408e-05,-0.001334,0.2042,0.002,0.4335,0,0,0,0,0,6.242e-06,0.0001216,0.0001216,0.00017,0.03328,0.03328,0.01023,0.05054,0.05054,0.05731,4.662e-10,4.663e-10,1.417e-09,3.071e-06,3.071e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18385000,0.9825,-0.00696,-0.01031,0.1857,0.004641,-0.006787,0.02821,0.005647,-0.001796,0.01217,-1.463e-05,-5.979e-05,3.738e-06,-1.46e-05,9.478e-05,-0.001332,0.2042,0.002,0.4335,0,0,0,0,0,6.2e-06,0.0001174,0.0001174,0.0001688,0.02942,0.02942,0.01016,0.04451,0.04451,0.057,4.23e-10,4.23e-10,1.386e-09,3.058e-06,3.058e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18485000,0.9825,-0.006994,-0.01033,0.1857,0.007547,-0.00643,0.02792,0.006344,-0.002465,0.01479,-1.463e-05,-5.979e-05,3.879e-06,-1.456e-05,9.473e-05,-0.001332,0.2042,0.002,0.4335,0,0,0,0,0,6.204e-06,0.0001187,0.0001187,0.0001689,0.03242,0.03242,0.01035,0.05036,0.05036,0.05807,4.231e-10,4.231e-10,1.363e-09,3.058e-06,3.058e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18585000,0.9825,-0.006827,-0.0102,0.1858,0.006182,-0.005952,0.0276,0.005095,-0.001935,0.01644,-1.475e-05,-5.986e-05,3.727e-06,-1.605e-05,9.691e-05,-0.001331,0.2042,0.002,0.4335,0,0,0,0,0,6.164e-06,0.0001148,0.0001148,0.0001677,0.02869,0.02869,0.01027,0.04439,0.04439,0.05776,3.844e-10,3.845e-10,1.333e-09,3.046e-06,3.046e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18685000,0.9825,-0.006808,-0.01015,0.1857,0.005801,-0.004926,0.02615,0.0057,-0.002481,0.0159,-1.475e-05,-5.987e-05,3.793e-06,-1.619e-05,9.7e-05,-0.00133,0.2042,0.002,0.4335,0,0,0,0,0,6.117e-06,0.000116,0.000116,0.0001665,0.03157,0.03157,0.01037,0.05016,0.05016,0.05801,3.845e-10,3.846e-10,1.304e-09,3.046e-06,3.046e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18785000,0.9825,-0.006745,-0.01004,0.1857,0.004734,-0.004827,0.02551,0.00573,-0.002019,0.01261,-1.48e-05,-5.984e-05,3.783e-06,-1.609e-05,9.822e-05,-0.001327,0.2042,0.002,0.4335,0,0,0,0,0,6.073e-06,0.0001124,0.0001124,0.0001653,0.02797,0.02797,0.01029,0.04426,0.04426,0.05769,3.499e-10,3.499e-10,1.276e-09,3.035e-06,3.035e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18885000,0.9825,-0.006699,-0.01006,0.1858,0.003797,-0.00447,0.02405,0.006126,-0.002545,0.009609,-1.481e-05,-5.984e-05,3.631e-06,-1.644e-05,9.845e-05,-0.001325,0.2042,0.002,0.4335,0,0,0,0,0,6.028e-06,0.0001135,0.0001135,0.0001641,0.03073,0.03073,0.01038,0.04996,0.04996,0.05795,3.5e-10,3.5e-10,1.249e-09,3.035e-06,3.035e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
18985000,0.9825,-0.006682,-0.01009,0.1859,0.00225,-0.004613,0.02459,0.005036,-0.002047,0.01245,-1.488e-05,-5.987e-05,3.593e-06,-1.718e-05,9.983e-05,-0.001325,0.2042,0.002,0.4335,0,0,0,0,0,5.991e-06,0.0001102,0.0001101,0.000163,0.02726,0.02726,0.01029,0.04412,0.04412,0.05763,3.191e-10,3.191e-10,1.222e-09,3.025e-06,3.025e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19085000,0.9825,-0.006756,-0.0101,0.1858,0.0002583,-0.004689,0.02514,0.005203,-0.002478,0.008703,-1.488e-05,-5.988e-05,3.682e-06,-1.749e-05,0.0001,-0.001323,0.2042,0.002,0.4335,0,0,0,0,0,5.95e-06,0.0001112,0.0001112,0.0001618,0.0299,0.0299,0.01038,0.04975,0.04975,0.05788,3.191e-10,3.192e-10,1.197e-09,3.025e-06,3.025e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19185000,0.9825,-0.006651,-0.01023,0.186,-0.001109,-0.004651,0.02519,0.004322,-0.002047,0.008787,-1.495e-05,-5.988e-05,3.41e-06,-1.775e-05,0.0001013,-0.001322,0.2042,0.002,0.4335,0,0,0,0,0,5.952e-06,0.0001081,0.000108,0.0001619,0.02656,0.02656,0.01036,0.04397,0.04397,0.0584,2.914e-10,2.915e-10,1.178e-09,3.016e-06,3.016e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19285000,0.9825,-0.00659,-0.01018,0.186,-0.002216,-0.004585,0.02557,0.004188,-0.002512,0.008928,-1.495e-05,-5.987e-05,3.308e-06,-1.791e-05,0.0001014,-0.001321,0.2042,0.002,0.4335,0,0,0,0,0,5.908e-06,0.0001091,0.000109,0.0001608,0.02911,0.02911,0.01045,0.04953,0.04953,0.05866,2.915e-10,2.916e-10,1.153e-09,3.016e-06,3.016e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19385000,0.9825,-0.006669,-0.01007,0.186,-0.002211,-0.001156,0.02728,0.003583,-0.000729,0.007781,-1.507e-05,-5.983e-05,3.157e-06,-1.737e-05,0.0001038,-0.001319,0.2042,0.002,0.4335,0,0,0,0,0,5.863e-06,0.0001062,0.0001061,0.0001597,0.02588,0.02588,0.01034,0.04382,0.04382,0.05832,2.667e-10,2.668e-10,1.129e-09,3.007e-06,3.008e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19485000,0.9824,-0.00672,-0.009974,0.1862,-0.003153,-0.00111,0.02659,0.003274,-0.0008414,0.007592,-1.508e-05,-5.982e-05,2.88e-06,-1.762e-05,0.000104,-0.001318,0.2042,0.002,0.4335,0,0,0,0,0,5.829e-06,0.0001071,0.000107,0.0001585,0.02833,0.02833,0.01042,0.04931,0.04931,0.05858,2.668e-10,2.668e-10,1.106e-09,3.007e-06,3.008e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19585000,0.9824,-0.00667,-0.01009,0.1863,-0.004913,-0.003937,0.02806,0.003851,-0.001916,0.007832,-1.499e-05,-5.976e-05,2.785e-06,-1.665e-05,0.0001024,-0.001317,0.2042,0.002,0.4335,0,0,0,0,0,5.793e-06,0.0001044,0.0001043,0.0001574,0.02523,0.02523,0.01031,0.04366,0.04366,0.05823,2.446e-10,2.446e-10,1.083e-09,3e-06,3e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19685000,0.9824,-0.006689,-0.0101,0.1862,-0.006275,-0.002715,0.02735,0.003328,-0.002255,0.007789,-1.498e-05,-5.976e-05,2.911e-06,-1.678e-05,0.0001024,-0.001316,0.2042,0.002,0.4335,0,0,0,0,0,5.753e-06,0.0001052,0.0001052,0.0001564,0.02758,0.02758,0.01039,0.04907,0.04907,0.05848,2.447e-10,2.447e-10,1.061e-09,3e-06,3e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19785000,0.9824,-0.006772,-0.01012,0.1863,-0.006526,-0.00138,0.0262,0.00577,-0.001828,0.004893,-1.496e-05,-5.961e-05,2.787e-06,-1.434e-05,0.0001021,-0.001313,0.2042,0.002,0.4335,0,0,0,0,0,5.754e-06,0.0001027,0.0001027,0.0001564,0.0246,0.0246,0.01036,0.0435,0.0435,0.05899,2.248e-10,2.248e-10,1.045e-09,2.993e-06,2.994e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19885000,0.9824,-0.006779,-0.01021,0.1864,-0.00626,-0.0007697,0.026,0.005074,-0.001894,0.003841,-1.496e-05,-5.961e-05,2.568e-06,-1.46e-05,0.0001023,-0.001312,0.2042,0.002,0.4335,0,0,0,0,0,5.716e-06,0.0001035,0.0001035,0.0001553,0.02686,0.02686,0.01044,0.04884,0.04884,0.05924,2.249e-10,2.249e-10,1.023e-09,2.993e-06,2.994e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
19985000,0.9824,-0.006797,-0.01035,0.1863,-0.006326,-0.0006956,0.02351,0.005448,-0.0004766,0.0003485,-1.5e-05,-5.949e-05,2.609e-06,-1.278e-05,0.0001033,-0.001309,0.2042,0.002,0.4335,0,0,0,0,0,5.671e-06,0.0001012,0.0001012,0.0001543,0.024,0.024,0.01032,0.04333,0.04333,0.05886,2.07e-10,2.07e-10,1.003e-09,2.987e-06,2.987e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20085000,0.9824,-0.006802,-0.01036,0.1862,-0.0058,-0.003101,0.02364,0.004819,-0.0006927,0.003667,-1.5e-05,-5.949e-05,2.576e-06,-1.274e-05,0.0001033,-0.001309,0.2042,0.002,0.4335,0,0,0,0,0,5.629e-06,0.000102,0.0001019,0.0001532,0.02617,0.02617,0.01039,0.0486,0.0486,0.0591,2.071e-10,2.071e-10,9.828e-10,2.986e-06,2.987e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20185000,0.9824,-0.006805,-0.01047,0.1863,-0.004765,-0.001349,0.02447,0.005881,-0.0004994,0.003338,-1.501e-05,-5.942e-05,2.35e-06,-1.16e-05,0.0001034,-0.001308,0.2042,0.002,0.4335,0,0,0,0,0,5.59e-06,9.98e-05,9.977e-05,0.0001522,0.024,0.024,0.01027,0.04317,0.04317,0.05873,1.91e-10,1.91e-10,9.632e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20285000,0.9824,-0.006797,-0.0105,0.1863,-0.007829,-0.0016,0.02482,0.005282,-0.0005718,0.004143,-1.501e-05,-5.942e-05,2.267e-06,-1.16e-05,0.0001034,-0.001308,0.2042,0.002,0.4335,0,0,0,0,0,5.547e-06,0.0001005,0.0001005,0.0001511,0.0275,0.02751,0.01034,0.04843,0.04843,0.05896,1.911e-10,1.911e-10,9.442e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20385000,0.9824,-0.006748,-0.0105,0.1863,-0.00847,-0.000675,0.02389,0.006252,-0.0004017,0.003753,-1.499e-05,-5.935e-05,2.41e-06,-1.16e-05,0.0001034,-0.001306,0.2042,0.002,0.4335,0,0,0,0,0,5.515e-06,9.678e-05,9.674e-05,0.0001501,0.02625,0.02625,0.01022,0.04306,0.04306,0.05857,1.759e-10,1.759e-10,9.256e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20485000,0.9824,-0.00676,-0.01047,0.1862,-0.01277,-0.001575,0.02455,0.005163,-0.0004913,0.003514,-1.499e-05,-5.935e-05,2.323e-06,-1.16e-05,0.0001034,-0.001305,0.2042,0.002,0.4335,0,0,0,0,0,5.508e-06,9.741e-05,9.737e-05,0.0001502,0.03075,0.03076,0.01037,0.04839,0.04839,0.05967,1.76e-10,1.76e-10,9.12e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20585000,0.9825,-0.006735,-0.01052,0.186,-0.01196,-0.002462,0.02423,0.006287,-0.0004112,0.002018,-1.496e-05,-5.925e-05,2.605e-06,-1.16e-05,0.0001034,-0.001303,0.2042,0.002,0.4335,0,0,0,0,0,5.468e-06,9.165e-05,9.162e-05,0.0001492,0.02962,0.02963,0.01025,0.04304,0.04304,0.05927,1.619e-10,1.619e-10,8.943e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20685000,0.9825,-0.00666,-0.01051,0.1861,-0.01395,-0.001399,0.02522,0.005034,-0.0005636,0.002516,-1.497e-05,-5.925e-05,2.366e-06,-1.16e-05,0.0001034,-0.001302,0.2042,0.002,0.4335,0,0,0,0,0,5.428e-06,9.221e-05,9.217e-05,0.0001482,0.03489,0.0349,0.01031,0.04851,0.04851,0.05948,1.62e-10,1.62e-10,8.77e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20785000,0.9825,-0.006202,-0.01049,0.186,-0.01519,0.000876,0.01292,0.00431,-0.0004354,0.001233,-1.495e-05,-5.919e-05,2.429e-06,-1.16e-05,0.0001034,-0.001301,0.2042,0.002,0.4335,0,0,0,0,0,5.387e-06,8.458e-05,8.455e-05,0.0001472,0.03339,0.0334,0.01019,0.04312,0.04312,0.05908,1.494e-10,1.494e-10,8.601e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20885000,0.9825,0.002655,-0.006804,0.1859,-0.02146,0.01273,-0.1005,0.00241,0.0002722,-0.00423,-1.495e-05,-5.919e-05,2.422e-06,-1.16e-05,0.0001034,-0.0013,0.2042,0.002,0.4335,0,0,0,0,0,5.346e-06,8.505e-05,8.501e-05,0.0001462,0.03987,0.03988,0.01025,0.0488,0.0488,0.05928,1.495e-10,1.495e-10,8.437e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
20985000,0.9825,0.006308,-0.003154,0.1859,-0.03055,0.02948,-0.2417,0.002082,0.0006503,-0.01755,-1.485e-05,-5.912e-05,2.384e-06,-1.16e-05,0.0001034,-0.001303,0.2042,0.002,0.4335,0,0,0,0,0,5.311e-06,7.587e-05,7.586e-05,0.0001453,0.03809,0.03811,0.01012,0.04334,0.04334,0.05887,1.387e-10,1.387e-10,8.277e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21085000,0.9825,0.004883,-0.0034,0.1863,-0.04387,0.04574,-0.3594,-0.001633,0.004465,-0.04679,-1.485e-05,-5.912e-05,2.324e-06,-1.16e-05,0.0001034,-0.001303,0.2042,0.002,0.4335,0,0,0,0,0,5.328e-06,7.626e-05,7.625e-05,0.0001453,0.045,0.04502,0.01027,0.04933,0.04933,0.05995,1.388e-10,1.388e-10,8.159e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21185000,0.9824,0.001838,-0.005174,0.1866,-0.04447,0.04707,-0.4845,-0.0003716,0.0027,-0.08045,-1.456e-05,-5.902e-05,2.418e-06,-1.16e-05,0.0001034,-0.001311,0.2042,0.002,0.4335,0,0,0,0,0,5.309e-06,6.623e-05,6.622e-05,0.0001443,0.04168,0.04169,0.01015,0.04368,0.04368,0.05953,1.299e-10,1.3e-10,8.006e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21285000,0.9824,-0.0003732,-0.006553,0.1868,-0.04421,0.05033,-0.6145,-0.004832,0.007586,-0.1364,-1.457e-05,-5.901e-05,2.234e-06,-1.16e-05,0.0001034,-0.001311,0.2042,0.002,0.4335,0,0,0,0,0,5.281e-06,6.655e-05,6.653e-05,0.0001433,0.04868,0.0487,0.01021,0.04997,0.04997,0.05971,1.3e-10,1.301e-10,7.856e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21385000,0.9823,-0.001934,-0.007352,0.187,-0.03752,0.04547,-0.7388,-0.00322,0.00985,-0.1979,-1.446e-05,-5.89e-05,2.194e-06,-1.16e-05,0.0001034,-0.001317,0.2042,0.002,0.4335,0,0,0,0,0,5.256e-06,5.656e-05,5.654e-05,0.0001424,0.0439,0.04392,0.01009,0.0441,0.0441,0.05929,1.232e-10,1.232e-10,7.71e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21485000,0.9823,-0.002777,-0.007796,0.1871,-0.03248,0.04235,-0.8741,-0.006794,0.01427,-0.2823,-1.446e-05,-5.891e-05,2.315e-06,-1.16e-05,0.0001034,-0.001315,0.2042,0.002,0.4335,0,0,0,0,0,5.231e-06,5.68e-05,5.679e-05,0.0001414,0.05068,0.0507,0.01015,0.05064,0.05064,0.05946,1.233e-10,1.233e-10,7.568e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21585000,0.9823,-0.00322,-0.007807,0.187,-0.02411,0.03764,-0.9974,-0.005879,0.01519,-0.3674,-1.439e-05,-5.887e-05,2.424e-06,-1.16e-05,0.0001034,-0.001323,0.2042,0.002,0.4335,0,0,0,0,0,5.199e-06,4.755e-05,4.754e-05,0.0001405,0.04475,0.04477,0.01003,0.04452,0.04453,0.05904,1.183e-10,1.183e-10,7.429e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21685000,0.9823,-0.003568,-0.007659,0.1871,-0.02104,0.03359,-1.131,-0.008133,0.01879,-0.4812,-1.439e-05,-5.888e-05,2.594e-06,-1.16e-05,0.0001034,-0.001321,0.2042,0.002,0.4335,0,0,0,0,0,5.172e-06,4.773e-05,4.772e-05,0.0001396,0.05106,0.05108,0.01009,0.05125,0.05125,0.05921,1.184e-10,1.184e-10,7.293e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21785000,0.9823,-0.003915,-0.007872,0.187,-0.01143,0.02832,-1.258,-0.0009683,0.01691,-0.5939,-1.427e-05,-5.878e-05,2.843e-06,-1.16e-05,0.0001034,-0.001327,0.2042,0.002,0.4335,0,0,0,0,0,5.172e-06,3.96e-05,3.959e-05,0.0001396,0.04444,0.04445,0.01006,0.04491,0.04491,0.05965,1.148e-10,1.148e-10,7.194e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21885000,0.9823,-0.004201,-0.007989,0.187,-0.007716,0.02408,-1.379,-0.001947,0.01957,-0.733,-1.428e-05,-5.878e-05,2.68e-06,-1.16e-05,0.0001034,-0.001325,0.2042,0.002,0.4335,0,0,0,0,0,5.136e-06,3.975e-05,3.974e-05,0.0001387,0.05015,0.05017,0.01012,0.05174,0.05174,0.05982,1.149e-10,1.149e-10,7.064e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
21985000,0.9823,-0.004814,-0.008197,0.1869,-0.006902,0.01962,-1.367,0.00166,0.01611,-0.8676,-1.419e-05,-5.876e-05,2.759e-06,-1.16e-05,0.0001034,-0.00133,0.2042,0.002,0.4335,0,0,0,0,0,5.099e-06,3.285e-05,3.285e-05,0.0001379,0.04261,0.04262,0.01,0.04522,0.04522,0.05938,1.124e-10,1.124e-10,6.937e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22085000,0.9823,-0.005552,-0.00899,0.1868,-0.003796,0.01591,-1.348,0.001062,0.01784,-1.009,-1.419e-05,-5.876e-05,2.93e-06,-1.16e-05,0.0001034,-0.001328,0.2042,0.002,0.4335,0,0,0,0,0,5.071e-06,3.297e-05,3.297e-05,0.000137,0.04707,0.04708,0.01007,0.05201,0.05201,0.05954,1.125e-10,1.125e-10,6.813e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22185000,0.9824,-0.005919,-0.009235,0.1867,0.002047,0.01157,-1.363,0.007459,0.01303,-1.149,-1.408e-05,-5.871e-05,3.056e-06,-1.16e-05,0.0001034,-0.001326,0.2042,0.002,0.4335,0,0,0,0,0,5.036e-06,2.738e-05,2.738e-05,0.0001361,0.0401,0.04011,0.00995,0.04542,0.04542,0.05909,1.108e-10,1.109e-10,6.692e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22285000,0.9823,-0.00664,-0.009476,0.1867,0.008027,0.006391,-1.36,0.007946,0.01396,-1.291,-1.408e-05,-5.871e-05,2.961e-06,-1.16e-05,0.0001034,-0.001324,0.2042,0.002,0.4335,0,0,0,0,0,5.003e-06,2.748e-05,2.748e-05,0.0001353,0.04412,0.04414,0.01001,0.05212,0.05212,0.05925,1.109e-10,1.109e-10,6.574e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22385000,0.9823,-0.007008,-0.009543,0.1868,0.009865,-0.003241,-1.362,0.01322,0.004074,-1.435,-1.396e-05,-5.869e-05,2.81e-06,-1.16e-05,0.0001034,-0.00132,0.2042,0.002,0.4335,0,0,0,0,0,5.003e-06,2.294e-05,2.294e-05,0.0001353,0.03758,0.0376,0.009985,0.04551,0.04551,0.05969,1.098e-10,1.098e-10,6.487e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22485000,0.9823,-0.007176,-0.009977,0.1869,0.01442,-0.00981,-1.367,0.01443,0.003402,-1.575,-1.396e-05,-5.868e-05,2.61e-06,-1.16e-05,0.0001034,-0.001319,0.2042,0.002,0.4335,0,0,0,0,0,4.972e-06,2.304e-05,2.303e-05,0.0001344,0.04118,0.04119,0.01005,0.05207,0.05208,0.05985,1.099e-10,1.099e-10,6.374e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22585000,0.9823,-0.007026,-0.01061,0.187,0.02309,-0.01682,-1.366,0.02604,-0.0048,-1.717,-1.385e-05,-5.862e-05,2.718e-06,-1.16e-05,0.0001034,-0.001316,0.2042,0.002,0.4335,0,0,0,0,0,4.947e-06,1.936e-05,1.936e-05,0.0001336,0.03515,0.03517,0.009936,0.0455,0.0455,0.05939,1.091e-10,1.092e-10,6.263e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22685000,0.9823,-0.006955,-0.01081,0.1871,0.0255,-0.02184,-1.37,0.02846,-0.006781,-1.86,-1.385e-05,-5.862e-05,2.673e-06,-1.16e-05,0.0001034,-0.001314,0.2042,0.002,0.4335,0,0,0,0,0,4.922e-06,1.945e-05,1.944e-05,0.0001327,0.03834,0.03836,0.01,0.05191,0.05191,0.05954,1.092e-10,1.093e-10,6.155e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22785000,0.9823,-0.006892,-0.01115,0.187,0.02937,-0.0286,-1.373,0.03706,-0.0161,-2.007,-1.375e-05,-5.857e-05,2.536e-06,-1.16e-05,0.0001034,-0.00131,0.2042,0.002,0.4335,0,0,0,0,0,4.88e-06,1.648e-05,1.647e-05,0.0001319,0.03284,0.03286,0.009888,0.04541,0.04541,0.05909,1.087e-10,1.088e-10,6.049e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22885000,0.9824,-0.007073,-0.01148,0.1865,0.03277,-0.03362,-1.375,0.04014,-0.01913,-2.15,-1.375e-05,-5.857e-05,2.685e-06,-1.16e-05,0.0001034,-0.001308,0.2042,0.002,0.4335,0,0,0,0,0,4.834e-06,1.657e-05,1.655e-05,0.0001312,0.03567,0.03569,0.009953,0.05164,0.05165,0.05924,1.088e-10,1.089e-10,5.946e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
22985000,0.9824,-0.006992,-0.01181,0.1861,0.0353,-0.03805,-1.379,0.04859,-0.02913,-2.302,-1.366e-05,-5.853e-05,2.823e-06,-1.16e-05,0.0001034,-0.001302,0.2042,0.002,0.4335,0,0,0,0,0,4.788e-06,1.415e-05,1.414e-05,0.0001304,0.03066,0.03068,0.009843,0.04524,0.04524,0.05879,1.085e-10,1.085e-10,5.845e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23085000,0.9825,-0.007001,-0.01213,0.1858,0.03951,-0.04334,-1.376,0.05232,-0.03323,-2.44,-1.366e-05,-5.853e-05,2.814e-06,-1.16e-05,0.0001034,-0.001302,0.2042,0.002,0.4335,0,0,0,0,0,4.77e-06,1.425e-05,1.423e-05,0.0001304,0.03318,0.0332,0.009993,0.0513,0.0513,0.05982,1.086e-10,1.086e-10,5.771e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23185000,0.9825,-0.00697,-0.01231,0.1856,0.04521,-0.04391,-1.379,0.06319,-0.04317,-2.586,-1.359e-05,-5.848e-05,2.683e-06,-1.16e-05,0.0001034,-0.001298,0.2042,0.002,0.4335,0,0,0,0,0,4.726e-06,1.228e-05,1.227e-05,0.0001296,0.02864,0.02866,0.009883,0.04502,0.04502,0.05936,1.084e-10,1.084e-10,5.674e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23285000,0.9826,-0.007439,-0.01244,0.1854,0.04959,-0.04903,-1.375,0.06787,-0.04786,-2.729,-1.359e-05,-5.848e-05,2.728e-06,-1.16e-05,0.0001034,-0.001297,0.2042,0.002,0.4335,0,0,0,0,0,4.689e-06,1.238e-05,1.236e-05,0.0001288,0.03089,0.03091,0.009949,0.05088,0.05089,0.05951,1.085e-10,1.085e-10,5.579e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23385000,0.9826,-0.007354,-0.01256,0.1853,0.05458,-0.0495,-1.376,0.07855,-0.05176,-2.869,-1.355e-05,-5.844e-05,2.523e-06,-1.16e-05,0.0001034,-0.001296,0.2042,0.002,0.4335,0,0,0,0,0,4.651e-06,1.078e-05,1.076e-05,0.0001281,0.02676,0.02679,0.009841,0.04474,0.04475,0.05905,1.084e-10,1.084e-10,5.486e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23485000,0.9826,-0.007439,-0.01283,0.1852,0.05866,-0.0515,-1.377,0.08418,-0.05684,-3.011,-1.355e-05,-5.845e-05,2.635e-06,-1.16e-05,0.0001034,-0.001294,0.2042,0.002,0.4335,0,0,0,0,0,4.622e-06,1.088e-05,1.086e-05,0.0001273,0.0288,0.02883,0.009907,0.05042,0.05043,0.05919,1.085e-10,1.085e-10,5.396e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23585000,0.9826,-0.007698,-0.01273,0.1851,0.06014,-0.05422,-1.377,0.0909,-0.06715,-3.156,-1.351e-05,-5.843e-05,2.674e-06,-1.16e-05,0.0001034,-0.001292,0.2042,0.002,0.4335,0,0,0,0,0,4.591e-06,9.575e-06,9.552e-06,0.0001266,0.02505,0.02508,0.0098,0.04443,0.04443,0.05874,1.084e-10,1.085e-10,5.307e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23685000,0.9826,-0.008324,-0.01322,0.185,0.05869,-0.05704,-1.28,0.09686,-0.07277,-3.292,-1.351e-05,-5.843e-05,2.74e-06,-1.16e-05,0.0001034,-0.001291,0.2042,0.002,0.4335,0,0,0,0,0,4.591e-06,9.686e-06,9.661e-06,0.0001265,0.02673,0.02676,0.00995,0.04992,0.04993,0.05977,1.085e-10,1.086e-10,5.242e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23785000,0.9826,-0.01005,-0.01591,0.185,0.05473,-0.05356,-0.9628,0.1066,-0.07682,-3.414,-1.349e-05,-5.841e-05,2.899e-06,-1.16e-05,0.0001034,-0.001287,0.2042,0.002,0.4335,0,0,0,0,0,4.566e-06,8.629e-06,8.597e-06,0.0001258,0.02288,0.02291,0.00984,0.04406,0.04407,0.05931,1.085e-10,1.086e-10,5.157e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23885000,0.9825,-0.01339,-0.02004,0.1848,0.05021,-0.05404,-0.5318,0.1119,-0.08215,-3.491,-1.349e-05,-5.841e-05,2.894e-06,-1.16e-05,0.0001034,-0.001286,0.2042,0.002,0.4335,0,0,0,0,0,4.534e-06,8.763e-06,8.721e-06,0.000125,0.02387,0.0239,0.009905,0.04928,0.04929,0.05945,1.086e-10,1.087e-10,5.073e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
23985000,0.9824,-0.01555,-0.02244,0.1847,0.05111,-0.05203,-0.1472,0.1202,-0.08409,-3.558,-1.349e-05,-5.84e-05,2.856e-06,-1.16e-05,0.0001034,-0.001264,0.2042,0.002,0.4335,0,0,0,0,0,4.5e-06,7.932e-06,7.883e-06,0.0001243,0.02052,0.02056,0.009798,0.0436,0.04361,0.059,1.086e-10,1.087e-10,4.992e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24085000,0.9825,-0.01519,-0.02151,0.1846,0.05737,-0.06051,0.09753,0.1255,-0.08969,-3.56,-1.349e-05,-5.84e-05,2.745e-06,-1.16e-05,0.0001034,-0.001263,0.2042,0.002,0.4335,0,0,0,0,0,4.466e-06,8.051e-06,8.005e-06,0.0001236,0.02166,0.0217,0.009867,0.04855,0.04856,0.05914,1.087e-10,1.088e-10,4.912e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24185000,0.9826,-0.01232,-0.01777,0.1846,0.06771,-0.06483,0.09026,0.1332,-0.09398,-3.575,-1.35e-05,-5.84e-05,2.798e-06,-1.16e-05,0.0001034,-0.001245,0.2042,0.002,0.4335,0,0,0,0,0,4.441e-06,7.357e-06,7.317e-06,0.0001229,0.01925,0.01928,0.009765,0.04309,0.04309,0.05869,1.088e-10,1.088e-10,4.834e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24285000,0.9827,-0.009883,-0.01428,0.1846,0.07118,-0.06863,0.06544,0.1402,-0.1007,-3.569,-1.349e-05,-5.84e-05,2.809e-06,-1.16e-05,0.0001034,-0.001244,0.2042,0.002,0.4335,0,0,0,0,0,4.414e-06,7.478e-06,7.444e-06,0.0001222,0.02064,0.02068,0.009832,0.04787,0.04788,0.05883,1.089e-10,1.089e-10,4.757e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24385000,0.9827,-0.008908,-0.0132,0.1844,0.06507,-0.06308,0.08194,0.1473,-0.1013,-3.565,-1.35e-05,-5.84e-05,2.914e-06,-1.16e-05,0.0001034,-0.001244,0.2042,0.002,0.4335,0,0,0,0,0,4.41e-06,6.911e-06,6.876e-06,0.0001222,0.01839,0.01843,0.009808,0.04259,0.0426,0.05925,1.089e-10,1.09e-10,4.701e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24485000,0.9827,-0.009122,-0.01327,0.1843,0.05981,-0.05926,0.0804,0.1536,-0.1074,-3.556,-1.35e-05,-5.84e-05,3.113e-06,-1.16e-05,0.0001034,-0.001244,0.2042,0.002,0.4335,0,0,0,0,0,4.386e-06,7.054e-06,7.017e-06,0.0001215,0.01966,0.01972,0.009873,0.04723,0.04724,0.05939,1.09e-10,1.091e-10,4.628e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24585000,0.9827,-0.00975,-0.01336,0.1845,0.05656,-0.05468,0.07585,0.1578,-0.1043,-3.549,-1.352e-05,-5.839e-05,3.088e-06,-1.16e-05,0.0001034,-0.001243,0.2042,0.002,0.4335,0,0,0,0,0,4.369e-06,6.583e-06,6.545e-06,0.0001208,0.0176,0.01766,0.009767,0.04212,0.04214,0.05894,1.091e-10,1.091e-10,4.556e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24685000,0.9827,-0.01026,-0.0132,0.1846,0.0536,-0.05398,0.07528,0.1634,-0.1097,-3.541,-1.352e-05,-5.839e-05,3.06e-06,-1.16e-05,0.0001034,-0.001243,0.2042,0.002,0.4335,0,0,0,0,0,4.347e-06,6.735e-06,6.696e-06,0.0001201,0.01881,0.01888,0.009834,0.04663,0.04665,0.05909,1.092e-10,1.092e-10,4.485e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24785000,0.9827,-0.01034,-0.01255,0.1845,0.0506,-0.0511,0.0676,0.1661,-0.1057,-3.538,-1.355e-05,-5.839e-05,3.065e-06,-1.16e-05,0.0001034,-0.001242,0.2042,0.002,0.4335,0,0,0,0,0,4.319e-06,6.338e-06,6.298e-06,0.0001194,0.01691,0.01697,0.009729,0.04168,0.04169,0.05863,1.092e-10,1.092e-10,4.416e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24885000,0.9827,-0.01018,-0.01204,0.1846,0.04803,-0.05449,0.05754,0.171,-0.1109,-3.534,-1.355e-05,-5.839e-05,3.106e-06,-1.16e-05,0.0001034,-0.001242,0.2042,0.002,0.4335,0,0,0,0,0,4.299e-06,6.498e-06,6.456e-06,0.0001188,0.01806,0.01814,0.009797,0.04606,0.04608,0.05878,1.093e-10,1.093e-10,4.348e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
24985000,0.9827,-0.009893,-0.0118,0.1847,0.04,-0.04978,0.05006,0.1714,-0.1025,-3.531,-1.359e-05,-5.838e-05,3.085e-06,-1.16e-05,0.0001034,-0.001241,0.2042,0.002,0.4335,0,0,0,0,0,4.303e-06,6.167e-06,6.123e-06,0.0001187,0.01629,0.01637,0.009773,0.04126,0.04127,0.0592,1.093e-10,1.093e-10,4.299e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25085000,0.9827,-0.01022,-0.01185,0.1847,0.03608,-0.04921,0.0472,0.1751,-0.1075,-3.532,-1.359e-05,-5.838e-05,3.032e-06,-1.16e-05,0.0001034,-0.001239,0.2042,0.002,0.4335,0,0,0,0,0,4.277e-06,6.336e-06,6.29e-06,0.0001181,0.01739,0.01749,0.009842,0.04552,0.04555,0.05934,1.094e-10,1.094e-10,4.234e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25185000,0.9826,-0.01039,-0.01169,0.1849,0.03143,-0.04279,0.04732,0.1759,-0.09977,-3.529,-1.363e-05,-5.836e-05,2.917e-06,-1.16e-05,0.0001034,-0.001238,0.2042,0.002,0.4335,0,0,0,0,0,4.261e-06,6.057e-06,6.008e-06,0.0001174,0.01574,0.01583,0.009735,0.04085,0.04087,0.05889,1.094e-10,1.094e-10,4.17e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25285000,0.9826,-0.01053,-0.01105,0.1852,0.02567,-0.04419,0.04228,0.1787,-0.1041,-3.525,-1.363e-05,-5.835e-05,2.718e-06,-1.16e-05,0.0001034,-0.001238,0.2042,0.002,0.4335,0,0,0,0,0,4.243e-06,6.233e-06,6.184e-06,0.0001168,0.0168,0.01691,0.009804,0.04501,0.04504,0.05903,1.095e-10,1.095e-10,4.107e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25385000,0.9826,-0.0106,-0.01084,0.1852,0.01797,-0.03714,0.04056,0.1751,-0.09349,-3.526,-1.368e-05,-5.834e-05,2.683e-06,-1.16e-05,0.0001034,-0.001236,0.2042,0.002,0.4335,0,0,0,0,0,4.22e-06,5.997e-06,5.944e-06,0.0001161,0.01526,0.01537,0.009699,0.04046,0.04049,0.05858,1.094e-10,1.094e-10,4.046e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25485000,0.9826,-0.01063,-0.01054,0.1852,0.0119,-0.03643,0.03981,0.1766,-0.09715,-3.524,-1.369e-05,-5.834e-05,2.585e-06,-1.16e-05,0.0001034,-0.001235,0.2042,0.002,0.4335,0,0,0,0,0,4.197e-06,6.183e-06,6.128e-06,0.0001155,0.0163,0.01642,0.009767,0.04452,0.04456,0.05872,1.095e-10,1.095e-10,3.986e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25585000,0.9826,-0.0108,-0.01035,0.1853,0.007247,-0.03282,0.04164,0.1733,-0.08952,-3.522,-1.371e-05,-5.832e-05,2.465e-06,-1.16e-05,0.0001034,-0.001234,0.2042,0.002,0.4335,0,0,0,0,0,4.175e-06,5.98e-06,5.923e-06,0.0001149,0.01486,0.01498,0.009664,0.04009,0.04012,0.05828,1.094e-10,1.094e-10,3.927e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25685000,0.9826,-0.01027,-0.01004,0.1853,0.005911,-0.03251,0.0309,0.1739,-0.0928,-3.521,-1.371e-05,-5.832e-05,2.46e-06,-1.16e-05,0.0001034,-0.001233,0.2042,0.002,0.4335,0,0,0,0,0,4.174e-06,6.175e-06,6.115e-06,0.0001149,0.01588,0.01602,0.009817,0.04406,0.04411,0.05929,1.095e-10,1.095e-10,3.884e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25785000,0.9826,-0.01,-0.009323,0.1853,-0.004729,-0.02479,0.02974,0.1674,-0.08397,-3.524,-1.374e-05,-5.829e-05,2.414e-06,-1.16e-05,0.0001034,-0.001231,0.2042,0.002,0.4335,0,0,0,0,0,4.15e-06,6e-06,5.937e-06,0.0001142,0.01453,0.01467,0.00971,0.03974,0.03978,0.05883,1.093e-10,1.093e-10,3.828e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25885000,0.9826,-0.01006,-0.009367,0.1854,-0.01162,-0.02294,0.03226,0.1665,-0.08632,-3.522,-1.374e-05,-5.829e-05,2.161e-06,-1.16e-05,0.0001034,-0.00123,0.2042,0.002,0.4335,0,0,0,0,0,4.127e-06,6.203e-06,6.136e-06,0.0001136,0.01552,0.01568,0.00978,0.04363,0.04369,0.05898,1.094e-10,1.094e-10,3.772e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
25985000,0.9826,-0.01012,-0.009507,0.1855,-0.01971,-0.01685,0.02543,0.1561,-0.07773,-3.522,-1.377e-05,-5.829e-05,2.069e-06,-1.16e-05,0.0001034,-0.001229,0.2042,0.002,0.4335,0,0,0,0,0,4.104e-06,6.051e-06,5.981e-06,0.000113,0.01426,0.01442,0.009676,0.0394,0.03945,0.05852,1.091e-10,1.092e-10,3.718e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26085000,0.9826,-0.009812,-0.009459,0.1854,-0.02505,-0.01648,0.02388,0.1538,-0.07938,-3.522,-1.377e-05,-5.829e-05,2.128e-06,-1.16e-05,0.0001034,-0.001228,0.2042,0.002,0.4335,0,0,0,0,0,4.08e-06,6.261e-06,6.187e-06,0.0001124,0.01525,0.01543,0.009747,0.04323,0.04329,0.05867,1.092e-10,1.093e-10,3.664e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26185000,0.9826,-0.00973,-0.009956,0.1854,-0.03173,-0.01095,0.01964,0.1442,-0.07329,-3.524,-1.375e-05,-5.826e-05,2.148e-06,-1.16e-05,0.0001034,-0.001226,0.2042,0.002,0.4335,0,0,0,0,0,4.062e-06,6.126e-06,6.048e-06,0.0001118,0.01405,0.01423,0.009644,0.03909,0.03915,0.05822,1.089e-10,1.089e-10,3.612e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26285000,0.9826,-0.009788,-0.01027,0.1854,-0.03349,-0.00992,0.01379,0.1409,-0.07435,-3.525,-1.375e-05,-5.826e-05,2.02e-06,-1.16e-05,0.0001034,-0.001225,0.2042,0.002,0.4335,0,0,0,0,0,4.057e-06,6.344e-06,6.263e-06,0.0001118,0.01504,0.01524,0.009799,0.04286,0.04294,0.05923,1.09e-10,1.09e-10,3.574e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26385000,0.9826,-0.009225,-0.01022,0.1853,-0.03911,-0.003498,0.01687,0.1283,-0.06727,-3.525,-1.374e-05,-5.827e-05,1.918e-06,-1.16e-05,0.0001034,-0.001225,0.2042,0.002,0.4335,0,0,0,0,0,4.028e-06,6.219e-06,6.134e-06,0.0001112,0.0139,0.0141,0.009696,0.03881,0.03888,0.05878,1.085e-10,1.085e-10,3.523e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26485000,0.9826,-0.008972,-0.01011,0.1853,-0.04251,-0.0007792,0.02601,0.1242,-0.0675,-3.523,-1.375e-05,-5.827e-05,1.806e-06,-1.16e-05,0.0001034,-0.001225,0.2042,0.002,0.4335,0,0,0,0,0,4.005e-06,6.443e-06,6.354e-06,0.0001107,0.01488,0.0151,0.009769,0.04252,0.04261,0.05893,1.086e-10,1.086e-10,3.473e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26585000,0.9826,-0.008428,-0.01035,0.1854,-0.04404,0.006338,0.02661,0.1147,-0.06128,-3.523,-1.37e-05,-5.823e-05,1.673e-06,-1.16e-05,0.0001034,-0.001223,0.2042,0.002,0.4335,0,0,0,0,0,3.985e-06,6.326e-06,6.234e-06,0.0001101,0.0138,0.01401,0.009667,0.03855,0.03863,0.05847,1.08e-10,1.08e-10,3.425e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26685000,0.9826,-0.0083,-0.01006,0.1855,-0.0461,0.01095,0.02575,0.1101,-0.0604,-3.521,-1.37e-05,-5.823e-05,1.476e-06,-1.16e-05,0.0001034,-0.001222,0.2042,0.002,0.4335,0,0,0,0,0,3.962e-06,6.555e-06,6.459e-06,0.0001095,0.0148,0.01503,0.009741,0.04221,0.04232,0.05862,1.081e-10,1.081e-10,3.377e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26785000,0.9826,-0.008095,-0.009523,0.1854,-0.05215,0.01428,0.02462,0.09837,-0.05584,-3.523,-1.362e-05,-5.822e-05,1.37e-06,-1.16e-05,0.0001034,-0.00122,0.2042,0.002,0.4335,0,0,0,0,0,3.937e-06,6.44e-06,6.344e-06,0.000109,0.01375,0.01398,0.009639,0.03832,0.03841,0.05817,1.074e-10,1.074e-10,3.33e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26885000,0.9826,-0.007484,-0.009611,0.1853,-0.05811,0.0168,0.0202,0.09278,-0.05428,-3.522,-1.362e-05,-5.822e-05,1.421e-06,-1.16e-05,0.0001034,-0.001219,0.2042,0.002,0.4335,0,0,0,0,0,3.916e-06,6.675e-06,6.574e-06,0.0001084,0.01476,0.01502,0.009713,0.04195,0.04207,0.05833,1.075e-10,1.075e-10,3.284e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
26985000,0.9826,-0.006957,-0.01007,0.1854,-0.06468,0.0223,0.01847,0.08082,-0.04886,-3.526,-1.355e-05,-5.819e-05,1.321e-06,-1.16e-05,0.0001034,-0.001216,0.2042,0.002,0.4335,0,0,0,0,0,3.915e-06,6.563e-06,6.46e-06,0.0001084,0.01376,0.014,0.009692,0.03811,0.03821,0.05873,1.066e-10,1.066e-10,3.251e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27085000,0.9826,-0.006773,-0.01039,0.1854,-0.06733,0.02944,0.02225,0.07402,-0.04621,-3.529,-1.355e-05,-5.818e-05,1.24e-06,-1.16e-05,0.0001034,-0.001214,0.2042,0.002,0.4335,0,0,0,0,0,3.894e-06,6.804e-06,6.696e-06,0.0001078,0.01477,0.01505,0.009767,0.04172,0.04186,0.05889,1.067e-10,1.067e-10,3.206e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27185000,0.9826,-0.006806,-0.01029,0.1854,-0.07291,0.03417,0.02366,0.06392,-0.04087,-3.531,-1.346e-05,-5.815e-05,1.163e-06,-1.16e-05,0.0001034,-0.001212,0.2042,0.002,0.4335,0,0,0,0,0,3.873e-06,6.685e-06,6.579e-06,0.0001073,0.01379,0.01405,0.009665,0.03794,0.03805,0.05843,1.057e-10,1.057e-10,3.163e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27285000,0.9826,-0.00696,-0.0112,0.1854,-0.07977,0.03973,0.1264,0.05623,-0.03715,-3.529,-1.346e-05,-5.814e-05,1.113e-06,-1.16e-05,0.0001034,-0.001211,0.2042,0.002,0.4335,0,0,0,0,0,3.85e-06,6.932e-06,6.82e-06,0.0001067,0.01473,0.01502,0.00974,0.04152,0.04168,0.05859,1.058e-10,1.058e-10,3.12e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27385000,0.9825,-0.008267,-0.01365,0.1854,-0.08396,0.04494,0.4427,0.04738,-0.03058,-3.51,-1.336e-05,-5.802e-05,1.06e-06,-1.16e-05,0.0001034,-0.001205,0.2042,0.002,0.4335,0,0,0,0,0,3.83e-06,6.817e-06,6.701e-06,0.0001062,0.0135,0.01377,0.009638,0.03778,0.03791,0.05814,1.046e-10,1.046e-10,3.078e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27485000,0.9825,-0.009693,-0.01562,0.1854,-0.08691,0.04952,0.7617,0.03869,-0.02581,-3.452,-1.336e-05,-5.802e-05,8.889e-07,-1.16e-05,0.0001034,-0.001203,0.2042,0.002,0.4335,0,0,0,0,0,3.811e-06,7.072e-06,6.948e-06,0.0001057,0.01424,0.01453,0.009714,0.04131,0.04148,0.0583,1.047e-10,1.047e-10,3.037e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27585000,0.9825,-0.009622,-0.01453,0.1854,-0.08212,0.05215,0.8669,0.03038,-0.0219,-3.39,-1.321e-05,-5.793e-05,8.391e-07,-1.16e-05,0.0001034,-0.001187,0.2042,0.002,0.4335,0,0,0,0,0,3.808e-06,6.954e-06,6.837e-06,0.0001057,0.01327,0.01354,0.009699,0.03761,0.03775,0.05871,1.034e-10,1.035e-10,3.007e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27685000,0.9826,-0.008469,-0.01164,0.1854,-0.07927,0.04869,0.7738,0.02222,-0.01676,-3.311,-1.321e-05,-5.793e-05,8.207e-07,-1.16e-05,0.0001034,-0.001185,0.2042,0.002,0.4335,0,0,0,0,0,3.788e-06,7.198e-06,7.084e-06,0.0001051,0.01439,0.01469,0.009779,0.04111,0.04129,0.05887,1.035e-10,1.036e-10,2.967e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27785000,0.9826,-0.007135,-0.01006,0.1854,-0.07749,0.04523,0.7613,0.01709,-0.01481,-3.237,-1.303e-05,-5.784e-05,8.222e-07,-1.16e-05,0.0001034,-0.001184,0.2042,0.002,0.4335,0,0,0,0,0,3.771e-06,7.069e-06,6.958e-06,0.0001046,0.01354,0.01382,0.009681,0.03747,0.03762,0.05842,1.021e-10,1.021e-10,2.928e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27885000,0.9826,-0.006737,-0.01014,0.1855,-0.0845,0.05114,0.8027,0.008881,-0.01,-3.162,-1.303e-05,-5.783e-05,7.788e-07,-1.16e-05,0.0001034,-0.001183,0.2042,0.002,0.4335,0,0,0,0,0,3.754e-06,7.324e-06,7.209e-06,0.0001041,0.01456,0.01487,0.009756,0.04098,0.04118,0.05859,1.022e-10,1.022e-10,2.89e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
27985000,0.9826,-0.007167,-0.0105,0.1855,-0.08497,0.05271,0.7904,0.004267,-0.008561,-3.091,-1.282e-05,-5.771e-05,7.354e-07,-1.16e-05,0.0001034,-0.001176,0.2042,0.002,0.4335,0,0,0,0,0,3.735e-06,7.186e-06,7.074e-06,0.0001036,0.01371,0.014,0.009657,0.03737,0.03753,0.05814,1.006e-10,1.006e-10,2.852e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28085000,0.9826,-0.007493,-0.01051,0.1854,-0.08891,0.05302,0.7963,-0.004443,-0.003224,-3.013,-1.282e-05,-5.771e-05,8.174e-07,-1.16e-05,0.0001034,-0.001175,0.2042,0.002,0.4335,0,0,0,0,0,3.717e-06,7.443e-06,7.328e-06,0.0001031,0.01478,0.01511,0.009734,0.04089,0.0411,0.05831,1.007e-10,1.007e-10,2.816e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28185000,0.9826,-0.006977,-0.0108,0.1854,-0.08844,0.04894,0.8023,-0.01015,-0.003064,-2.938,-1.261e-05,-5.761e-05,7.726e-07,-1.16e-05,0.0001034,-0.001171,0.2042,0.002,0.4335,0,0,0,0,0,3.699e-06,7.289e-06,7.176e-06,0.0001026,0.01391,0.01421,0.009636,0.03731,0.03749,0.05787,9.897e-11,9.898e-11,2.779e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28285000,0.9826,-0.006456,-0.01109,0.1854,-0.09405,0.05186,0.8026,-0.01935,0.00206,-2.862,-1.261e-05,-5.761e-05,8.327e-07,-1.16e-05,0.0001034,-0.001169,0.2042,0.002,0.4335,0,0,0,0,0,3.698e-06,7.55e-06,7.433e-06,0.0001026,0.01501,0.01535,0.009794,0.04085,0.04107,0.05889,9.907e-11,9.908e-11,2.753e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28385000,0.9826,-0.006475,-0.01172,0.1854,-0.09388,0.05439,0.8038,-0.02311,0.004844,-2.788,-1.241e-05,-5.743e-05,8.924e-07,-1.16e-05,0.0001034,-0.001164,0.2042,0.002,0.4335,0,0,0,0,0,3.685e-06,7.38e-06,7.266e-06,0.0001021,0.01413,0.01443,0.009694,0.03729,0.03747,0.05844,9.715e-11,9.716e-11,2.718e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28485000,0.9826,-0.006787,-0.01222,0.1854,-0.09584,0.05721,0.8046,-0.03275,0.01047,-2.714,-1.241e-05,-5.743e-05,8.455e-07,-1.16e-05,0.0001034,-0.001162,0.2042,0.002,0.4335,0,0,0,0,0,3.667e-06,7.64e-06,7.523e-06,0.0001016,0.01525,0.0156,0.009772,0.04085,0.04108,0.05862,9.725e-11,9.725e-11,2.683e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28585000,0.9826,-0.006876,-0.0122,0.1853,-0.08869,0.05217,0.8021,-0.03504,0.007962,-2.637,-1.21e-05,-5.729e-05,8.807e-07,-1.16e-05,0.0001034,-0.001158,0.2042,0.002,0.4335,0,0,0,0,0,3.646e-06,7.451e-06,7.339e-06,0.0001011,0.01435,0.01466,0.009675,0.03729,0.03749,0.05818,9.518e-11,9.517e-11,2.649e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28685000,0.9826,-0.006666,-0.01158,0.1854,-0.08899,0.05257,0.8025,-0.04409,0.01329,-2.563,-1.21e-05,-5.728e-05,8.239e-07,-1.16e-05,0.0001034,-0.001156,0.2042,0.002,0.4335,0,0,0,0,0,3.631e-06,7.709e-06,7.595e-06,0.0001006,0.0155,0.01585,0.009753,0.04088,0.04113,0.05835,9.528e-11,9.527e-11,2.616e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28785000,0.9826,-0.006029,-0.01139,0.1854,-0.08415,0.05226,0.8012,-0.04557,0.01504,-2.49,-1.189e-05,-5.709e-05,8.901e-07,-1.16e-05,0.0001034,-0.00115,0.2042,0.002,0.4335,0,0,0,0,0,3.615e-06,7.501e-06,7.393e-06,0.0001001,0.01457,0.01488,0.009655,0.03733,0.03753,0.05791,9.306e-11,9.305e-11,2.583e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28885000,0.9826,-0.005845,-0.01113,0.1853,-0.08853,0.05358,0.8001,-0.05431,0.02037,-2.414,-1.189e-05,-5.708e-05,9.332e-07,-1.16e-05,0.0001034,-0.001148,0.2042,0.002,0.4335,0,0,0,0,0,3.613e-06,7.76e-06,7.65e-06,0.0001001,0.01574,0.01609,0.009814,0.04095,0.0412,0.05895,9.316e-11,9.315e-11,2.559e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
28985000,0.9826,-0.00562,-0.01136,0.1854,-0.08351,0.04976,0.7994,-0.05273,0.01944,-2.342,-1.161e-05,-5.687e-05,9.29e-07,-1.16e-05,0.0001034,-0.001142,0.2042,0.002,0.4335,0,0,0,0,0,3.6e-06,7.535e-06,7.43e-06,9.966e-05,0.01478,0.01509,0.009715,0.03739,0.0376,0.0585,9.082e-11,9.08e-11,2.528e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29085000,0.9826,-0.005502,-0.0114,0.1854,-0.08678,0.05153,0.7985,-0.06143,0.02452,-2.265,-1.161e-05,-5.687e-05,9.075e-07,-1.16e-05,0.0001034,-0.00114,0.2042,0.002,0.4335,0,0,0,0,0,3.585e-06,7.793e-06,7.685e-06,9.919e-05,0.01596,0.01631,0.009792,0.04104,0.0413,0.05868,9.092e-11,9.09e-11,2.497e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29185000,0.9826,-0.005446,-0.01163,0.1853,-0.08176,0.04921,0.793,-0.0581,0.02388,-2.196,-1.133e-05,-5.661e-05,9.771e-07,-1.16e-05,0.0001034,-0.001133,0.2042,0.002,0.4335,0,0,0,0,0,3.566e-06,7.551e-06,7.448e-06,9.873e-05,0.01497,0.01528,0.009692,0.03746,0.03768,0.05824,8.848e-11,8.845e-11,2.466e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29285000,0.9826,-0.005687,-0.01167,0.1854,-0.08367,0.05467,0.7947,-0.06643,0.02915,-2.12,-1.133e-05,-5.661e-05,9.948e-07,-1.16e-05,0.0001034,-0.001132,0.2042,0.002,0.4335,0,0,0,0,0,3.555e-06,7.806e-06,7.701e-06,9.826e-05,0.01617,0.01652,0.009769,0.04115,0.04142,0.05842,8.857e-11,8.854e-11,2.436e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29385000,0.9826,-0.00614,-0.01118,0.1854,-0.0781,0.05303,0.7969,-0.06348,0.0301,-2.044,-1.11e-05,-5.64e-05,1.034e-06,-1.16e-05,0.0001034,-0.001127,0.2042,0.002,0.4335,0,0,0,0,0,3.54e-06,7.546e-06,7.45e-06,9.781e-05,0.01514,0.01545,0.00967,0.03755,0.03777,0.05798,8.605e-11,8.601e-11,2.407e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29485000,0.9826,-0.006186,-0.01105,0.1854,-0.08057,0.05337,0.7975,-0.0715,0.03548,-1.968,-1.11e-05,-5.64e-05,1.148e-06,-1.16e-05,0.0001034,-0.001126,0.2042,0.002,0.4335,0,0,0,0,0,3.527e-06,7.799e-06,7.7e-06,9.736e-05,0.01635,0.01669,0.009747,0.04127,0.04155,0.05816,8.615e-11,8.61e-11,2.378e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29585000,0.9826,-0.006106,-0.01107,0.1853,-0.07456,0.05049,0.7994,-0.06757,0.03462,-1.889,-1.084e-05,-5.619e-05,1.216e-06,-1.16e-05,0.0001034,-0.001123,0.2042,0.002,0.4335,0,0,0,0,0,3.527e-06,7.526e-06,7.435e-06,9.735e-05,0.01529,0.01559,0.009728,0.03766,0.03787,0.05858,8.356e-11,8.35e-11,2.356e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29685000,0.9826,-0.006169,-0.01087,0.1852,-0.07912,0.04916,0.7945,-0.07542,0.0397,-1.815,-1.083e-05,-5.619e-05,1.308e-06,-1.16e-05,0.0001034,-0.001121,0.2042,0.002,0.4335,0,0,0,0,0,3.51e-06,7.775e-06,7.682e-06,9.69e-05,0.01651,0.01685,0.009805,0.0414,0.04168,0.05876,8.366e-11,8.36e-11,2.328e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29785000,0.9826,-0.006025,-0.01139,0.1852,-0.07367,0.04128,0.7907,-0.06952,0.03722,-1.743,-1.057e-05,-5.595e-05,1.412e-06,-1.16e-05,0.0001034,-0.001115,0.2042,0.002,0.4335,0,0,0,0,0,3.496e-06,7.491e-06,7.401e-06,9.646e-05,0.01542,0.01572,0.009705,0.03776,0.03798,0.05832,8.103e-11,8.096e-11,2.301e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29885000,0.9826,-0.005517,-0.01178,0.1852,-0.07414,0.04149,0.7863,-0.07707,0.04142,-1.671,-1.056e-05,-5.595e-05,1.495e-06,-1.16e-05,0.0001034,-0.001112,0.2042,0.002,0.4335,0,0,0,0,0,3.484e-06,7.738e-06,7.644e-06,9.602e-05,0.01665,0.01698,0.009782,0.04154,0.04182,0.05851,8.112e-11,8.105e-11,2.273e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
29985000,0.9826,-0.005622,-0.01184,0.1852,-0.06806,0.03639,0.7831,-0.07162,0.03701,-1.601,-1.028e-05,-5.576e-05,1.506e-06,-1.16e-05,0.0001034,-0.001106,0.2042,0.002,0.4335,0,0,0,0,0,3.47e-06,7.441e-06,7.353e-06,9.558e-05,0.01553,0.01582,0.009681,0.03787,0.03809,0.05807,7.848e-11,7.839e-11,2.247e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30085000,0.9826,-0.005774,-0.01198,0.1852,-0.06822,0.03664,0.7804,-0.0786,0.04076,-1.529,-1.027e-05,-5.575e-05,1.373e-06,-1.16e-05,0.0001034,-0.001104,0.2042,0.002,0.4335,0,0,0,0,0,3.452e-06,7.683e-06,7.592e-06,9.516e-05,0.01676,0.01708,0.009758,0.04168,0.04195,0.05825,7.858e-11,7.849e-11,2.221e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30185000,0.9826,-0.005758,-0.01199,0.1854,-0.06076,0.03324,0.7801,-0.07095,0.03956,-1.456,-1.01e-05,-5.551e-05,1.265e-06,-1.16e-05,0.0001034,-0.001099,0.2042,0.002,0.4335,0,0,0,0,0,3.454e-06,7.378e-06,7.293e-06,9.515e-05,0.01561,0.01589,0.009739,0.03798,0.03819,0.05867,7.593e-11,7.583e-11,2.201e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30285000,0.9826,-0.005788,-0.01199,0.1855,-0.06009,0.03277,0.7796,-0.07717,0.04296,-1.385,-1.01e-05,-5.55e-05,1.27e-06,-1.16e-05,0.0001034,-0.001096,0.2042,0.002,0.4335,0,0,0,0,0,3.443e-06,7.616e-06,7.528e-06,9.472e-05,0.01683,0.01714,0.009817,0.04181,0.04208,0.05886,7.603e-11,7.592e-11,2.176e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30385000,0.9825,-0.005762,-0.0119,0.1856,-0.05142,0.0271,0.777,-0.06804,0.04051,-1.317,-9.891e-06,-5.525e-05,1.403e-06,-1.16e-05,0.0001034,-0.00109,0.2042,0.002,0.4335,0,0,0,0,0,3.435e-06,7.303e-06,7.22e-06,9.429e-05,0.01565,0.01593,0.009715,0.03808,0.03829,0.05841,7.34e-11,7.328e-11,2.151e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30485000,0.9826,-0.005778,-0.01204,0.1854,-0.05418,0.0267,0.7771,-0.07351,0.04334,-1.246,-9.883e-06,-5.525e-05,1.489e-06,-1.16e-05,0.0001034,-0.001087,0.2042,0.002,0.4335,0,0,0,0,0,3.418e-06,7.536e-06,7.451e-06,9.388e-05,0.01688,0.01718,0.009791,0.04193,0.0422,0.0586,7.35e-11,7.338e-11,2.126e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30585000,0.9826,-0.00608,-0.01232,0.1853,-0.04822,0.02384,0.7765,-0.06553,0.04,-1.175,-9.689e-06,-5.505e-05,1.589e-06,-1.16e-05,0.0001034,-0.001082,0.2042,0.002,0.4335,0,0,0,0,0,3.403e-06,7.219e-06,7.137e-06,9.346e-05,0.01568,0.01595,0.009688,0.03818,0.03838,0.05816,7.092e-11,7.077e-11,2.102e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30685000,0.9826,-0.006452,-0.01256,0.1852,-0.04666,0.02196,0.7745,-0.07059,0.04243,-1.105,-9.682e-06,-5.504e-05,1.598e-06,-1.16e-05,0.0001034,-0.001079,0.2042,0.002,0.4335,0,0,0,0,0,3.385e-06,7.448e-06,7.363e-06,9.306e-05,0.01689,0.01719,0.009765,0.04204,0.0423,0.05834,7.101e-11,7.087e-11,2.078e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30785000,0.9826,-0.006167,-0.01227,0.1851,-0.0385,0.01704,0.7725,-0.06279,0.04224,-1.036,-9.617e-06,-5.485e-05,1.582e-06,-1.16e-05,0.0001034,-0.001074,0.2042,0.002,0.4335,0,0,0,0,0,3.367e-06,7.127e-06,7.046e-06,9.266e-05,0.01568,0.01594,0.009664,0.03826,0.03846,0.05791,6.848e-11,6.832e-11,2.055e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30885000,0.9826,-0.005535,-0.01213,0.1852,-0.03818,0.01328,0.7694,-0.06673,0.04388,-0.9641,-9.614e-06,-5.484e-05,1.542e-06,-1.16e-05,0.0001034,-0.001072,0.2042,0.002,0.4335,0,0,0,0,0,3.37e-06,7.351e-06,7.267e-06,9.265e-05,0.01689,0.01718,0.009823,0.04214,0.0424,0.05895,6.858e-11,6.841e-11,2.038e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
30985000,0.9826,-0.005694,-0.01207,0.1853,-0.03014,0.008236,0.7705,-0.05615,0.03767,-0.8953,-9.416e-06,-5.465e-05,1.529e-06,-1.16e-05,0.0001034,-0.001067,0.2042,0.002,0.4335,0,0,0,0,0,3.356e-06,7.03e-06,6.948e-06,9.225e-05,0.01565,0.01591,0.009719,0.03834,0.03853,0.0585,6.611e-11,6.592e-11,2.015e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31085000,0.9826,-0.00584,-0.01219,0.1855,-0.02834,0.005707,0.7686,-0.05916,0.03836,-0.8226,-9.414e-06,-5.465e-05,1.474e-06,-1.16e-05,0.0001034,-0.001065,0.2042,0.002,0.4335,0,0,0,0,0,3.348e-06,7.249e-06,7.164e-06,9.184e-05,0.01686,0.01715,0.009797,0.04223,0.04247,0.05869,6.62e-11,6.602e-11,1.992e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31185000,0.9826,-0.005981,-0.01232,0.1854,-0.02333,0.002215,0.7696,-0.05035,0.03452,-0.7534,-9.305e-06,-5.449e-05,1.605e-06,-1.16e-05,0.0001034,-0.001061,0.2042,0.002,0.4335,0,0,0,0,0,3.336e-06,6.928e-06,6.845e-06,9.144e-05,0.01561,0.01587,0.009692,0.0384,0.03859,0.05825,6.381e-11,6.36e-11,1.97e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31285000,0.9826,-0.006244,-0.01241,0.1853,-0.02029,-0.0007386,0.7726,-0.05272,0.03473,-0.6832,-9.299e-06,-5.449e-05,1.676e-06,-1.16e-05,0.0001034,-0.001059,0.2042,0.002,0.4335,0,0,0,0,0,3.321e-06,7.142e-06,7.056e-06,9.105e-05,0.0168,0.01709,0.009769,0.0423,0.04253,0.05843,6.39e-11,6.37e-11,1.949e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31385000,0.9826,-0.006028,-0.0122,0.1853,-0.01397,-0.006596,0.7713,-0.04375,0.03035,-0.6113,-9.217e-06,-5.437e-05,1.599e-06,-1.16e-05,0.0001034,-0.001055,0.2042,0.002,0.4335,0,0,0,0,0,3.305e-06,6.822e-06,6.738e-06,9.067e-05,0.01555,0.0158,0.009666,0.03845,0.03864,0.05799,6.159e-11,6.137e-11,1.927e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31485000,0.9826,-0.005777,-0.01252,0.1854,-0.01362,-0.01064,0.7674,-0.04528,0.02948,-0.5373,-9.215e-06,-5.437e-05,1.577e-06,-1.16e-05,0.0001034,-0.001054,0.2042,0.002,0.4335,0,0,0,0,0,3.307e-06,7.033e-06,6.945e-06,9.066e-05,0.01673,0.01702,0.009825,0.04235,0.04258,0.05903,6.169e-11,6.147e-11,1.912e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31585000,0.9826,-0.005598,-0.01298,0.1853,-0.008818,-0.0115,0.7704,-0.03416,0.02671,-0.4667,-9.165e-06,-5.42e-05,1.653e-06,-1.16e-05,0.0001034,-0.00105,0.2042,0.002,0.4335,0,0,0,0,0,3.292e-06,6.717e-06,6.629e-06,9.028e-05,0.01547,0.01573,0.009718,0.03849,0.03867,0.05859,5.946e-11,5.922e-11,1.891e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31685000,0.9826,-0.005589,-0.01345,0.1852,-0.01073,-0.01327,0.766,-0.03546,0.02551,-0.3986,-9.157e-06,-5.42e-05,1.751e-06,-1.16e-05,0.0001034,-0.001046,0.2042,0.002,0.4335,0,0,0,0,0,3.276e-06,6.923e-06,6.83e-06,8.99e-05,0.01664,0.01693,0.009793,0.04238,0.04261,0.05877,5.956e-11,5.932e-11,1.871e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31785000,0.9826,-0.005782,-0.01409,0.185,-0.001411,-0.01475,0.7652,-0.02385,0.02575,-0.3282,-9.183e-06,-5.401e-05,1.828e-06,-1.16e-05,0.0001034,-0.001043,0.2042,0.002,0.4335,0,0,0,0,0,3.261e-06,6.612e-06,6.518e-06,8.952e-05,0.01538,0.01565,0.009689,0.03851,0.03869,0.05832,5.742e-11,5.716e-11,1.851e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31885000,0.9826,-0.005552,-0.0139,0.185,0.002453,-0.01769,0.7631,-0.02406,0.02418,-0.2604,-9.177e-06,-5.4e-05,1.879e-06,-1.16e-05,0.0001034,-0.001039,0.2042,0.002,0.4335,0,0,0,0,0,3.25e-06,6.811e-06,6.714e-06,8.915e-05,0.01654,0.01683,0.009766,0.0424,0.04263,0.0585,5.752e-11,5.726e-11,1.831e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
31985000,0.9826,-0.005756,-0.01345,0.1851,0.01034,-0.01702,0.7591,-0.01242,0.02297,-0.195,-9.184e-06,-5.385e-05,1.832e-06,-1.16e-05,0.0001034,-0.001034,0.2042,0.002,0.4335,0,0,0,0,0,3.238e-06,6.502e-06,6.407e-06,8.878e-05,0.01528,0.01555,0.009661,0.03853,0.0387,0.05806,5.547e-11,5.519e-11,1.812e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32085000,0.9826,-0.006136,-0.01308,0.1851,0.01074,-0.0211,0.7608,-0.01157,0.02121,-0.1256,-9.18e-06,-5.385e-05,1.831e-06,-1.16e-05,0.0001034,-0.001032,0.2042,0.002,0.4335,0,0,0,0,0,3.223e-06,6.696e-06,6.598e-06,8.841e-05,0.01642,0.01672,0.009737,0.04241,0.04263,0.05824,5.557e-11,5.529e-11,1.792e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32185000,0.9826,-0.006337,-0.01334,0.1851,0.01529,-0.02259,0.7601,-0.0008521,0.02192,-0.05755,-9.256e-06,-5.372e-05,1.809e-06,-1.16e-05,0.0001034,-0.001027,0.2042,0.002,0.4335,0,0,0,0,0,3.224e-06,6.396e-06,6.299e-06,8.841e-05,0.01517,0.01544,0.009712,0.03853,0.0387,0.05865,5.362e-11,5.332e-11,1.778e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32285000,0.9826,-0.006254,-0.0136,0.185,0.01723,-0.02652,0.7579,0.0005004,0.01954,0.009997,-9.25e-06,-5.372e-05,1.864e-06,-1.16e-05,0.0001034,-0.001024,0.2042,0.002,0.4335,0,0,0,0,0,3.21e-06,6.587e-06,6.484e-06,8.804e-05,0.01629,0.0166,0.00979,0.0424,0.04262,0.05883,5.372e-11,5.342e-11,1.76e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32385000,0.9826,-0.006297,-0.0137,0.1852,0.02383,-0.02604,0.7558,0.01128,0.01884,0.08132,-9.308e-06,-5.363e-05,1.825e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.2e-06,6.292e-06,6.189e-06,8.768e-05,0.01505,0.01533,0.009683,0.03852,0.03869,0.05838,5.186e-11,5.155e-11,1.742e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32485000,0.9826,-0.009207,-0.01165,0.1851,0.04946,-0.08944,-0.1178,0.01519,0.01144,0.08829,-9.306e-06,-5.362e-05,1.777e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.183e-06,6.473e-06,6.375e-06,8.733e-05,0.01706,0.0174,0.009584,0.04244,0.04266,0.05855,5.196e-11,5.164e-11,1.724e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32585000,0.9826,-0.009216,-0.01161,0.1851,0.04918,-0.08941,-0.1203,0.02651,0.01013,0.06836,-9.487e-06,-5.352e-05,1.857e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.172e-06,6.163e-06,6.066e-06,8.697e-05,0.0157,0.01601,0.009209,0.03856,0.03874,0.05806,5.01e-11,4.977e-11,1.706e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32685000,0.9826,-0.009205,-0.01149,0.1851,0.04612,-0.09585,-0.1227,0.03118,0.0009145,0.05202,-9.486e-06,-5.352e-05,1.844e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.159e-06,6.344e-06,6.242e-06,8.662e-05,0.01683,0.01718,0.009022,0.0425,0.04272,0.05815,5.02e-11,4.987e-11,1.688e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32785000,0.9826,-0.009105,-0.01157,0.1851,0.04446,-0.09338,-0.1244,0.04023,0.00104,0.03515,-9.697e-06,-5.343e-05,1.922e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.161e-06,6.045e-06,5.945e-06,8.661e-05,0.01549,0.01581,0.008754,0.0386,0.03878,0.05846,4.844e-11,4.81e-11,1.676e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32885000,0.9826,-0.009082,-0.01165,0.185,0.04553,-0.1011,-0.1263,0.04468,-0.00867,0.01993,-9.695e-06,-5.343e-05,1.961e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.146e-06,6.223e-06,6.117e-06,8.626e-05,0.0166,0.01695,0.008586,0.04252,0.04275,0.05849,4.854e-11,4.82e-11,1.659e-10,2.981e-06,2.981e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
32985000,0.9826,-0.009038,-0.01163,0.1849,0.04349,-0.09933,-0.1262,0.0519,-0.01064,0.005261,-9.873e-06,-5.337e-05,2.063e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.135e-06,5.933e-06,5.83e-06,8.592e-05,0.01527,0.0156,0.00828,0.03861,0.03879,0.0579,4.689e-11,4.653e-11,1.642e-10,2.981e-06,2.981e-06,5.001e-08,0,0,0,0,0,0,0,0
|
||||
33085000,0.9826,-0.009014,-0.01167,0.1849,0.04141,-0.1048,-0.1245,0.05627,-0.02085,-0.004796,-9.873e-06,-5.337e-05,2.063e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.123e-06,6.106e-06,5.998e-06,8.557e-05,0.01636,0.01673,0.008144,0.04251,0.04274,0.05787,4.699e-11,4.663e-11,1.625e-10,2.981e-06,2.981e-06,5.002e-08,0,0,0,0,0,0,0,0
|
||||
33185000,0.9826,-0.008939,-0.01161,0.1849,0.03855,-0.104,-0.1239,0.06198,-0.02203,-0.01302,-1.006e-05,-5.332e-05,2.044e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.109e-06,5.827e-06,5.721e-06,8.523e-05,0.01506,0.01539,0.007887,0.03859,0.03878,0.05726,4.543e-11,4.506e-11,1.609e-10,2.981e-06,2.981e-06,5.003e-08,0,0,0,0,0,0,0,0
|
||||
33285000,0.9827,-0.00902,-0.01164,0.1848,0.03727,-0.108,-0.1242,0.06579,-0.03268,-0.02305,-1.006e-05,-5.332e-05,2.161e-06,-1.16e-05,0.0001034,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.097e-06,5.996e-06,5.886e-06,8.49e-05,0.01613,0.0165,0.007787,0.04247,0.04271,0.05718,4.553e-11,4.516e-11,1.593e-10,2.981e-06,2.981e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33385000,0.9827,-0.008935,-0.01171,0.1847,0.03353,-0.1012,-0.1228,0.06828,-0.02797,-0.03374,-1.034e-05,-5.327e-05,2.217e-06,-1.173e-05,0.0001019,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.084e-06,5.728e-06,5.621e-06,8.456e-05,0.01512,0.01546,0.007575,0.03856,0.03875,0.05656,4.406e-11,4.368e-11,1.577e-10,2.981e-06,2.981e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33485000,0.9827,-0.008928,-0.01168,0.1847,0.03054,-0.1057,-0.1231,0.07144,-0.03828,-0.04597,-1.034e-05,-5.327e-05,2.237e-06,-1.173e-05,0.0001019,-0.001021,0.2042,0.002,0.4335,0,0,0,0,0,3.084e-06,5.894e-06,5.783e-06,8.456e-05,0.01703,0.01741,0.007571,0.04241,0.04266,0.05725,4.416e-11,4.378e-11,1.566e-10,2.981e-06,2.981e-06,5.005e-08,0,0,0,0,0,0,0,0
|
||||
33585000,0.9827,-0.008784,-0.01166,0.1846,0.02739,-0.1019,-0.1202,0.07317,-0.03456,-0.05386,-1.057e-05,-5.322e-05,2.348e-06,-1.427e-05,7.647e-05,-0.001022,0.2042,0.002,0.4335,0,0,0,0,0,3.071e-06,5.637e-06,5.53e-06,8.423e-05,0.017,0.01734,0.007398,0.03852,0.03872,0.05661,4.279e-11,4.239e-11,1.55e-10,2.966e-06,2.967e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33685000,0.9827,-0.008787,-0.01167,0.1845,0.02468,-0.1066,-0.1222,0.0759,-0.04507,-0.06372,-1.057e-05,-5.322e-05,2.399e-06,-1.425e-05,7.646e-05,-0.001022,0.2042,0.002,0.4335,0,0,0,0,0,3.059e-06,5.8e-06,5.688e-06,8.39e-05,0.01999,0.02037,0.007365,0.04242,0.04267,0.05646,4.289e-11,4.249e-11,1.535e-10,2.966e-06,2.967e-06,5.005e-08,0,0,0,0,0,0,0,0
|
||||
33785000,0.9827,-0.008707,-0.01167,0.1844,0.02028,-0.1006,-0.1171,0.07839,-0.0401,-0.07153,-1.08e-05,-5.315e-05,2.402e-06,-2.223e-05,2.852e-05,-0.001023,0.2042,0.002,0.4335,0,0,0,0,0,3.045e-06,5.56e-06,5.453e-06,8.358e-05,0.02049,0.02082,0.007228,0.03856,0.03876,0.05584,4.162e-11,4.121e-11,1.52e-10,2.915e-06,2.916e-06,5.003e-08,0,0,0,0,0,0,0,0
|
||||
33885000,0.9828,-0.008756,-0.01164,0.1844,0.01802,-0.1022,-0.117,0.08037,-0.05034,-0.0801,-1.08e-05,-5.315e-05,2.503e-06,-2.219e-05,2.848e-05,-0.001023,0.2042,0.002,0.4335,0,0,0,0,0,3.034e-06,5.72e-06,5.608e-06,8.326e-05,0.0244,0.02477,0.007224,0.0426,0.04286,0.05567,4.172e-11,4.131e-11,1.506e-10,2.915e-06,2.916e-06,5.004e-08,0,0,0,0,0,0,0,0
|
||||
33985000,0.9827,-0.008634,-0.01176,0.1844,0.01543,-0.09079,-0.114,0.08145,-0.0423,-0.08504,-1.105e-05,-5.307e-05,2.494e-06,-4.554e-05,-4.533e-05,-0.001024,0.2042,0.002,0.4335,0,0,0,0,0,3.023e-06,5.509e-06,5.402e-06,8.294e-05,0.02486,0.02517,0.007121,0.03874,0.03895,0.05506,4.06e-11,4.018e-11,1.491e-10,2.814e-06,2.815e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34085000,0.9828,-0.008581,-0.01179,0.1843,0.01315,-0.09535,-0.1134,0.08306,-0.05169,-0.0932,-1.105e-05,-5.308e-05,2.517e-06,-4.541e-05,-4.545e-05,-0.001024,0.2042,0.002,0.4335,0,0,0,0,0,3.022e-06,5.667e-06,5.556e-06,8.294e-05,0.02951,0.02983,0.007198,0.04305,0.04331,0.05566,4.069e-11,4.028e-11,1.481e-10,2.814e-06,2.815e-06,5.001e-08,0,0,0,0,0,0,0,0
|
||||
34185000,0.9828,-0.008529,-0.01181,0.1843,0.008765,-0.08217,-0.1117,0.08427,-0.04354,-0.09655,-1.125e-05,-5.301e-05,2.578e-06,-6.685e-05,-0.0001261,-0.001026,0.2042,0.002,0.4335,0,0,0,0,0,3.012e-06,5.497e-06,5.39e-06,8.262e-05,0.02936,0.02962,0.007121,0.03914,0.03934,0.05507,3.974e-11,3.932e-11,1.467e-10,2.661e-06,2.662e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34285000,0.9828,-0.00843,-0.01189,0.1843,0.009834,-0.08509,-0.1109,0.08533,-0.05198,-0.105,-1.125e-05,-5.301e-05,2.648e-06,-6.67e-05,-0.0001262,-0.001026,0.2042,0.002,0.4335,0,0,0,0,0,3.002e-06,5.653e-06,5.541e-06,8.23e-05,0.03447,0.03475,0.007169,0.04381,0.04405,0.0549,3.984e-11,3.941e-11,1.453e-10,2.661e-06,2.662e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34385000,0.9828,-0.00834,-0.01188,0.1842,0.005988,-0.06916,-0.1064,0.08458,-0.04279,-0.1097,-1.143e-05,-5.297e-05,2.69e-06,-8.893e-05,-0.0002099,-0.001027,0.2042,0.002,0.4335,0,0,0,0,0,2.987e-06,5.534e-06,5.425e-06,8.199e-05,0.03329,0.03349,0.007118,0.03974,0.03992,0.05434,3.908e-11,3.865e-11,1.439e-10,2.466e-06,2.467e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34485000,0.9828,-0.008436,-0.01184,0.1841,0.004259,-0.07176,-0.1052,0.08532,-0.05,-0.1144,-1.143e-05,-5.297e-05,2.766e-06,-8.844e-05,-0.0002104,-0.001028,0.2042,0.002,0.4335,0,0,0,0,0,2.977e-06,5.689e-06,5.576e-06,8.169e-05,0.0386,0.03882,0.007189,0.0448,0.04503,0.05418,3.918e-11,3.875e-11,1.426e-10,2.466e-06,2.467e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34585000,0.9828,-0.008354,-0.01164,0.1841,0.00342,-0.05632,0.6404,0.08452,-0.04155,-0.0905,-1.155e-05,-5.294e-05,2.795e-06,-0.0001089,-0.0002793,-0.00103,0.2042,0.002,0.4335,0,0,0,0,0,2.966e-06,5.624e-06,5.513e-06,8.138e-05,0.03586,0.036,0.00716,0.04047,0.04064,0.05366,3.861e-11,3.817e-11,1.412e-10,2.245e-06,2.246e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34685000,0.9828,-0.008348,-0.01136,0.1841,0.003093,-0.05317,1.631,0.08478,-0.04699,0.02128,-1.155e-05,-5.294e-05,2.821e-06,-0.0001092,-0.0002791,-0.00103,0.2042,0.002,0.4335,0,0,0,0,0,2.955e-06,5.779e-06,5.664e-06,8.108e-05,0.04073,0.04086,0.00725,0.04583,0.04603,0.05353,3.871e-11,3.827e-11,1.399e-10,2.245e-06,2.246e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34785000,0.9828,-0.008231,-0.011,0.184,-0.002693,-0.03587,2.598,0.07995,-0.03694,0.1835,-1.165e-05,-5.294e-05,2.836e-06,-0.0001246,-0.0003368,-0.001004,0.2042,0.002,0.4335,0,0,0,0,0,2.954e-06,5.782e-06,5.667e-06,8.108e-05,0.03721,0.03728,0.00729,0.04121,0.04135,0.05376,3.836e-11,3.792e-11,1.39e-10,2.011e-06,2.012e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
34885000,0.9828,-0.008213,-0.01071,0.184,-0.003516,-0.03193,3.583,0.07896,-0.04004,0.4726,-1.164e-05,-5.293e-05,2.858e-06,-0.0001273,-0.0003345,-0.001002,0.2042,0.002,0.4335,0,0,0,0,0,2.943e-06,5.938e-06,5.82e-06,8.078e-05,0.04207,0.04213,0.007397,0.04678,0.04695,0.05365,3.845e-11,3.802e-11,1.377e-10,2.011e-06,2.012e-06,5e-08,0,0,0,0,0,0,0,0
|
||||
|
||||
|
@@ -115,12 +115,12 @@ TEST_F(EkfFusionLogicTest, doGpsFusion)
|
||||
EXPECT_TRUE(_ekf->local_position_is_valid());
|
||||
EXPECT_TRUE(_ekf->global_position_is_valid());
|
||||
|
||||
// // WHEN: clients decides to stop GPS fusion
|
||||
// _ekf_wrapper.disableGpsFusion();
|
||||
// // THEN: EKF should stop to intend to fuse GPS immediately
|
||||
// _sensor_simulator.runMicroseconds(1000);
|
||||
// EXPECT_FALSE(_ekf_wrapper.isIntendingGpsFusion());
|
||||
// THIS is not happening at the moment
|
||||
// WHEN: clients decides to stop GPS fusion
|
||||
_ekf_wrapper.disableGpsFusion();
|
||||
|
||||
// THEN: EKF should stop to intend to fuse GPS immediately
|
||||
_sensor_simulator.runSeconds(0.01);
|
||||
EXPECT_FALSE(_ekf_wrapper.isIntendingGpsFusion());
|
||||
}
|
||||
|
||||
TEST_F(EkfFusionLogicTest, rejectGpsSignalJump)
|
||||
@@ -138,11 +138,11 @@ TEST_F(EkfFusionLogicTest, rejectGpsSignalJump)
|
||||
const Vector3f pos_old = _ekf->getPosition();
|
||||
const Vector3f vel_old = _ekf->getVelocity();
|
||||
const Vector3f accel_bias_old = _ekf->getAccelBias();
|
||||
_sensor_simulator._gps.stepHorizontalPositionByMeters(Vector2f{20.0f, 0.0f});
|
||||
const Vector3f pos_step{20.0f, 0.0f, 0.f};
|
||||
_sensor_simulator._gps.stepHorizontalPositionByMeters(Vector2f(pos_step));
|
||||
_sensor_simulator.runSeconds(2);
|
||||
|
||||
// THEN: The estimate should not change much in the short run
|
||||
// and GPS fusion should be stopped after a while.
|
||||
Vector3f pos_new = _ekf->getPosition();
|
||||
Vector3f vel_new = _ekf->getVelocity();
|
||||
Vector3f accel_bias_new = _ekf->getAccelBias();
|
||||
@@ -150,14 +150,54 @@ TEST_F(EkfFusionLogicTest, rejectGpsSignalJump)
|
||||
EXPECT_TRUE(matrix::isEqual(vel_new, vel_old, 0.01f));
|
||||
EXPECT_TRUE(matrix::isEqual(accel_bias_new, accel_bias_old, 0.01f));
|
||||
|
||||
_sensor_simulator.runSeconds(10);
|
||||
// BUT THEN: GPS fusion should reset after a while
|
||||
// (it takes some time beacuse vel fusion is still good)
|
||||
_sensor_simulator.runSeconds(14);
|
||||
pos_new = _ekf->getPosition();
|
||||
vel_new = _ekf->getVelocity();
|
||||
accel_bias_new = _ekf->getAccelBias();
|
||||
EXPECT_TRUE(matrix::isEqual(pos_new, pos_old, 0.01f));
|
||||
EXPECT_TRUE(matrix::isEqual(pos_new, pos_old + pos_step, 0.01f));
|
||||
EXPECT_TRUE(matrix::isEqual(vel_new, vel_old, 0.01f));
|
||||
EXPECT_TRUE(matrix::isEqual(accel_bias_new, accel_bias_old, 0.01f));
|
||||
// EXPECT_TRUE(_ekf_wrapper.isIntendingGpsFusion()); // What do we expect here?
|
||||
EXPECT_TRUE(_ekf_wrapper.isIntendingGpsFusion());
|
||||
}
|
||||
|
||||
TEST_F(EkfFusionLogicTest, fallbackFromGpsToFlow)
|
||||
{
|
||||
// GIVEN: GPS and flow setup up and with valid data
|
||||
_ekf_wrapper.enableGpsFusion();
|
||||
_sensor_simulator.startGps();
|
||||
|
||||
const float max_flow_rate = 5.f;
|
||||
const float min_ground_distance = 0.f;
|
||||
const float max_ground_distance = 50.f;
|
||||
_ekf->set_optical_flow_limits(max_flow_rate, min_ground_distance, max_ground_distance);
|
||||
_sensor_simulator.startFlow();
|
||||
_sensor_simulator.startFlow();
|
||||
_ekf_wrapper.enableFlowFusion();
|
||||
|
||||
_ekf->set_in_air_status(true);
|
||||
_sensor_simulator.runSeconds(15);
|
||||
|
||||
// THEN: both should be fused
|
||||
EXPECT_TRUE(_ekf_wrapper.isIntendingGpsFusion());
|
||||
EXPECT_TRUE(_ekf_wrapper.isIntendingFlowFusion());
|
||||
|
||||
// WHEN: GPS data stops
|
||||
_sensor_simulator.stopGps();
|
||||
_sensor_simulator.runSeconds(2);
|
||||
|
||||
// THEN: immediately switch to flow only
|
||||
EXPECT_FALSE(_ekf_wrapper.isIntendingGpsFusion());
|
||||
EXPECT_TRUE(_ekf_wrapper.isIntendingFlowFusion());
|
||||
|
||||
// BUT WHEN: GPS starts again
|
||||
_sensor_simulator.startGps();
|
||||
_sensor_simulator.runSeconds(1);
|
||||
|
||||
// THEN: use it again
|
||||
EXPECT_TRUE(_ekf_wrapper.isIntendingGpsFusion());
|
||||
EXPECT_TRUE(_ekf_wrapper.isIntendingFlowFusion());
|
||||
}
|
||||
|
||||
TEST_F(EkfFusionLogicTest, doFlowFusion)
|
||||
|
||||
@@ -36,6 +36,7 @@ px4_add_module(
|
||||
MAIN logger
|
||||
PRIORITY "SCHED_PRIORITY_MAX-30"
|
||||
COMPILE_FLAGS
|
||||
${MAX_CUSTOM_OPT_LEVEL}
|
||||
-Wno-cast-align # TODO: fix and enable
|
||||
SRCS
|
||||
logged_topics.cpp
|
||||
|
||||
Reference in New Issue
Block a user